/* ============================================================
   AIROZOOM BLOG DETAIL PAGE
   Scoped under .blog-detail-page
   ============================================================ */
/* Override common.css main tag styles on blog detail pages */
body.single-post main {
    padding-bottom: 0;
    background-color: transparent;
}

body.single-post #main-content {
    background-color: #fff;
}

.blog-detail-page {
    font-family: "Inter Tight", system-ui, -apple-system, sans-serif;
}

/* -- BREADCRUMB -- */
.blog-detail-page .az-container {
    max-width: 1520px;
    margin: 0 auto;
    padding: 0 16px;
}

.blog-detail-page .breadcrumb {
    font-size: 12px;
    color: #6b7280;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 6px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-top: 16px;
    margin-bottom: 0;
    padding-bottom: 67px;
    font-family: "Inter Tight", system-ui, -apple-system, sans-serif;
}

.blog-detail-page .breadcrumb a {
    color: #4f4f4f;
    -webkit-transition: color 0.2s;
    transition: color 0.2s;
    text-decoration: none;
}

.blog-detail-page .breadcrumb a:hover {
    color: #000;
}

.blog-detail-page .breadcrumb span {
    color: #bbb;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.blog-detail-page .breadcrumb .current {
    color: black;
    font-weight: 500;
}

/* -- MAIN CONTENT -- */
.blog-detail-page .content-wrapper {
    max-width: 860px;
    margin: 0 auto;
}

/* Badge */
.blog-detail-page .badge {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: #0165af;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 11px;
    border-radius: 32px;
    margin-bottom: 20px;
    line-height: 18px;
    font-family: "Inter Tight", system-ui, -apple-system, sans-serif;
}

/* Title */
.blog-detail-page .blog-title {
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 500;
    line-height: 1.25;
    letter-spacing: -0.5px;
    color: #1e1e1e;
    margin-bottom: 40px;
    text-transform: none;
    font-family: "Inter Tight", system-ui, -apple-system, sans-serif;
}

/* Meta bar */
.blog-detail-page .meta-bar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
}

.blog-detail-page .meta-date {
    font-size: 16px;
    color: black;
    font-weight: 400;
}

.blog-detail-page .share-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
}

.blog-detail-page .share-label {
    font-size: 16px;
    color: #000;
    margin-right: 12px;
}

.blog-detail-page .share-btn {
    width: 32px;
    height: 32px;
    border-radius: 4px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: black;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    background: #ebebeb;
    text-decoration: none;
    position: relative;
    border: none;
    cursor: pointer;
}

.blog-detail-page .share-btn:hover {
    opacity: 0.8;
}

/* Copy tooltip */
.blog-detail-page .copy-tooltip {
    position: absolute;
    bottom: calc(100% + 8px);
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(4px);
    transform: translateX(-50%) translateY(4px);
    background: #1e1e1e;
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    padding: 4px 10px;
    border-radius: 4px;
    white-space: nowrap;
    pointer-events: none;
    opacity: 0;
    -webkit-transition: opacity 0.2s, -webkit-transform 0.2s;
    transition: opacity 0.2s, -webkit-transform 0.2s;
    transition: opacity 0.2s, transform 0.2s;
    transition: opacity 0.2s, transform 0.2s, -webkit-transform 0.2s;
    z-index: 10;
}

.blog-detail-page .copy-tooltip::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: #1e1e1e;
}

.blog-detail-page .copy-tooltip.show {
    opacity: 1;
    -webkit-transform: translateX(-50%) translateY(0);
    transform: translateX(-50%) translateY(0);
}

/* Hero image */
.blog-detail-page .hero-img-wrap {
    position: relative;
    overflow: hidden;
    margin-bottom: 28px;
    background: #e8eaec;
    line-height: 0;
}

.blog-detail-page .hero-img-wrap img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    display: block;
    -webkit-transition: -webkit-transform 0.5s ease;
    transition: -webkit-transform 0.5s ease;
    transition: transform 0.5s ease;
    transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}

.blog-detail-page .hero-img-wrap:hover img {
    -webkit-transform: scale(1.02);
    transform: scale(1.02);
}

.blog-detail-page .play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    cursor: pointer;
    -webkit-box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
    -webkit-transition: -webkit-transform 0.2s, -webkit-box-shadow 0.2s;
    transition: -webkit-transform 0.2s, -webkit-box-shadow 0.2s;
    transition: transform 0.2s, box-shadow 0.2s;
    transition: transform 0.2s, box-shadow 0.2s, -webkit-transform 0.2s, -webkit-box-shadow 0.2s;
    border: none;
}

.blog-detail-page .play-btn:hover {
    -webkit-transform: translate(-50%, -50%) scale(1.08);
    transform: translate(-50%, -50%) scale(1.08);
    -webkit-box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.blog-detail-page .play-btn svg {
    margin-left: 4px;
}

/* Body text */
.blog-detail-page .blog-body p {
    color: #3d3d3d;
    margin-bottom: 18px;
    font-size: 15px;
    line-height: 1.8;
}

/* Second image */
.blog-detail-page .content-img {
    border-radius: 10px;
    overflow: hidden;
    margin: 32px 0;
    background: #e8eaec;
    line-height: 0;
}

.blog-detail-page .content-img img {
    width: 100%;
    height: 380px;
    -o-object-fit: cover;
    object-fit: cover;
    display: block;
    -webkit-transition: -webkit-transform 0.5s ease;
    transition: -webkit-transform 0.5s ease;
    transition: transform 0.5s ease;
    transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}

.blog-detail-page .content-img:hover img {
    -webkit-transform: scale(1.02);
    transform: scale(1.02);
}

/* Subheading */
.blog-detail-page .subheading {
    font-size: clamp(20px, 3vw, 28px);
    font-weight: 600;
    color: #1e1e1e;
    margin: 32px 0 16px;
    font-family: "Inter Tight", sans-serif;
}

/* -- ADMIN CONTENT AREA (WordPress editor output styling) -- */
.blog-detail-page .admin-content-area {
    width: 100%;
    max-width: 860px;
    font-family: "Inter Tight", sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.8;
    color: #3d3d3d;
    word-break: break-word;
    -webkit-font-smoothing: antialiased;
}

.blog-detail-page .admin-content-area h1,
.blog-detail-page .admin-content-area h2,
.blog-detail-page .admin-content-area h3,
.blog-detail-page .admin-content-area h4,
.blog-detail-page .admin-content-area h5,
.blog-detail-page .admin-content-area h6 {
    font-family: "Inter Tight", sans-serif;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -0.02em;
    color: #111111;
    margin: 36px 0 20px;
}

.blog-detail-page .admin-content-area>h1:first-child,
.blog-detail-page .admin-content-area>h2:first-child,
.blog-detail-page .admin-content-area>h3:first-child {
    margin-top: 0;
}

.blog-detail-page .admin-content-area h1 {
    font-size: 32px;
    line-height: 1.2;
}

.blog-detail-page .admin-content-area h2 {
    font-size: 24px;
}

.blog-detail-page .admin-content-area h3 {
    font-size: 20px;
}

.blog-detail-page .admin-content-area h4 {
    font-size: 17px;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.blog-detail-page .admin-content-area h5 {
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0;
}

.blog-detail-page .admin-content-area h6 {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #888888;
}

.blog-detail-page .admin-content-area p {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(22, 22, 22, 0.8705882353);
    margin: 0 0 1.35rem;
}

.blog-detail-page .admin-content-area p:last-child {
    margin-bottom: 0;
}

.blog-detail-page .admin-content-area a {
    color: #1a56db;
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 1px;
    -webkit-transition: color 0.15s ease, opacity 0.15s ease;
    transition: color 0.15s ease, opacity 0.15s ease;
}

.blog-detail-page .admin-content-area a:hover {
    color: #1e40af;
    opacity: 0.85;
}

.blog-detail-page .admin-content-area img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 1.75rem 0;
    -o-object-fit: cover;
    object-fit: cover;
}

.blog-detail-page .admin-content-area img:first-child {
    margin-top: 0;
}

.blog-detail-page .admin-content-area figure {
    margin: 1.75rem 0;
}

.blog-detail-page .admin-content-area figure img {
    margin: 0;
    border-radius: 8px 8px 0 0;
}

.blog-detail-page .admin-content-area figcaption {
    font-size: 12px;
    color: #888888;
    text-align: center;
    padding: 8px 12px 0;
    line-height: 1.5;
    font-style: italic;
}

.blog-detail-page .admin-content-area blockquote {
    margin: 2rem 0;
    padding: 1rem 1.25rem;
    border-left: 3px solid #1a56db;
    background: #f5f7ff;
    border-radius: 0 6px 6px 0;
}

.blog-detail-page .admin-content-area blockquote p {
    font-size: 15px;
    line-height: 1.75;
    font-style: italic;
    color: #333333;
    margin: 0;
}

.blog-detail-page .admin-content-area blockquote cite {
    display: block;
    margin-top: 8px;
    font-size: 12px;
    font-style: normal;
    color: #888888;
}

.blog-detail-page .admin-content-area ul,
.blog-detail-page .admin-content-area ol {
    padding-left: 1.5rem;
    margin: 0 0 1.35rem;
    color: #555555;
}

.blog-detail-page .admin-content-area li {
    font-size: 15px;
    line-height: 1.75;
    margin-bottom: 6px;
    list-style: disc;
    color: rgba(22, 22, 22, 0.8705882353);
}

.blog-detail-page .admin-content-area li:last-child {
    margin-bottom: 0;
}

.blog-detail-page .admin-content-area ul li::marker {
    color: #1a56db;
}

.blog-detail-page .admin-content-area ol li::marker {
    font-weight: 700;
    color: #1a56db;
}

.blog-detail-page .admin-content-area ol li {
    list-style: decimal;
}

.blog-detail-page .admin-content-area hr {
    border: none;
    border-top: 1px solid #e5e7eb;
    margin: 2.5rem 0;
}

.blog-detail-page .admin-content-area table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    margin: 1.75rem 0;
    overflow: hidden;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

.blog-detail-page .admin-content-area thead tr {
    background: #f9fafb;
}

.blog-detail-page .admin-content-area th {
    text-align: left;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #6b7280;
    padding: 10px 14px;
    border-bottom: 1px solid #e5e7eb;
}

.blog-detail-page .admin-content-area td {
    padding: 10px 14px;
    border-bottom: 1px solid #f0f0f0;
    color: #555555;
    vertical-align: top;
    line-height: 1.6;
}

.blog-detail-page .admin-content-area tbody tr:last-child td {
    border-bottom: none;
}

.blog-detail-page .admin-content-area tbody tr:hover td {
    background: #fafafa;
}

.blog-detail-page .admin-content-area strong,
.blog-detail-page .admin-content-area b {
    font-weight: 700;
    color: #111111;
}

.blog-detail-page .admin-content-area em,
.blog-detail-page .admin-content-area i {
    font-style: italic;
}

.blog-detail-page .admin-content-area .video-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 8px;
    overflow: hidden;
    margin: 1.75rem 0;
    background: #000;
}

.blog-detail-page .admin-content-area .video-wrapper iframe,
.blog-detail-page .admin-content-area .video-wrapper video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* -- RELATED BLOGS -- */
.blog-detail-page .related-blogs {
    background: #f7f8fa;
    padding-block: 110px;
}

@media (max-width: 1199.98px) {
    .blog-detail-page .related-blogs {
        padding-block: 80px;
    }
}

@media (max-width: 991.98px) {
    .blog-detail-page .related-blogs {
        padding-block: 60px;
    }
}

.blog-detail-page .related-blogs .arrow-button {
    --az-btn-bg-color: transparent;
    --az-btn-min-width: 265px;
}

@media (max-width: 991.98px) {
    .blog-detail-page .related-blogs .arrow-button {
        --az-btn-min-width: 230px;
    }
}

@media (max-width: 575.98px) {
    .blog-detail-page .related-blogs .arrow-button {
        --az-btn-min-width: 70%;
        margin-inline: auto;
        margin-top: 40px;
    }
}

@media (hover: hover) {
    .blog-detail-page .related-blogs .arrow-button:hover {
        --az-btn-bg-color: #fff;
    }
}

.blog-detail-page .related__inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

.blog-detail-page .related__header_wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 39px;
    --az-font-size: 40px;
}

@media (max-width: 991.98px) {
    .blog-detail-page .related__header_wrap {
        --az-font-size: 32px;
        margin-bottom: 28px;
    }
}

.blog-detail-page .related__header_wrap .related__header {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    gap: 20px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media (max-width: 991.98px) {
    .blog-detail-page .related__header_wrap .related__header {
        gap: 8px;
    }
}

/* Card grid (related) */
.blog-detail-page .bp-cards-grid {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 18px 1fr 18px 1fr;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.blog-detail-page .bp-cards-grid .bp-card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    cursor: pointer;
}

.blog-detail-page .bp-cards-grid .bp-card .bp-card__img-wrap {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #f2f2f2;
    position: relative;
}

.blog-detail-page .bp-cards-grid .bp-card .bp-card__img-wrap::after {
    content: "";
    position: relative;
    width: 100%;
    display: block;
    padding-bottom: 64.1129032258%;
}

.blog-detail-page .bp-cards-grid .bp-card .bp-card__img-wrap>img,
.blog-detail-page .bp-cards-grid .bp-card .bp-card__img-wrap>picture,
.blog-detail-page .bp-cards-grid .bp-card .bp-card__img-wrap>video {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
}

.blog-detail-page .bp-cards-grid .bp-card .bp-card__img-wrap>img img,
.blog-detail-page .bp-cards-grid .bp-card .bp-card__img-wrap>picture img,
.blog-detail-page .bp-cards-grid .bp-card .bp-card__img-wrap>video img {
    width: 100%;
    height: 100%;
    -webkit-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
}

.blog-detail-page .bp-cards-grid .bp-card .bp-card__img-wrap img {
    will-change: transform;
    -webkit-transition: -webkit-transform 0.5s ease;
    transition: -webkit-transform 0.5s ease;
    transition: transform 0.5s ease;
    transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}

@media (hover: hover) {
    .blog-detail-page .bp-cards-grid .bp-card:hover .bp-card__img-wrap img {
        -webkit-transform: scale(1.05);
        transform: scale(1.05);
    }
}

.blog-detail-page .bp-card__body {
    padding-top: 15px;
}

.blog-detail-page .bp-card__title {
    font-size: 24px;
    line-height: 1.4;
    font-weight: 500;
    color: #000;
    margin: 0;
    margin-bottom: 5px;
    max-width: 378px;
    width: 100%;
}

@media (max-width: 1499.98px) {
    .blog-detail-page .bp-card__title {
        font-size: 22px;
    }
}

@media (max-width: 1199.98px) {
    .blog-detail-page .bp-card__title {
        font-size: 20px;
    }
}

@media (max-width: 991.98px) {
    .blog-detail-page .bp-card__title {
        font-size: 18px;
        max-width: 100%;
    }
}

@media (max-width: 575.98px) {
    .blog-detail-page .bp-card__title {
        font-size: 16px;
    }
}

.blog-detail-page .bp-card__title a {
    color: #000;
    text-transform: none;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-detail-page .bp-date {
    font-size: 16px;
    color: #000;
    font-weight: 400;
}

.blog-detail-page .bp-card__img-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.blog-detail-page .bp-card__img-wrap--dummy {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background: #eaeaea;
}

.blog-detail-page .bp-card__img-wrap--dummy::after {
    content: "No Image";
    font-size: 14px;
    color: #999;
}

/* -- CTA BANNER -- */
.blog-detail-page .cta {
    background: #111214;
    padding: 64px clamp(16px, 5vw, 80px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 28px;
}

.blog-detail-page .cta__sub {
    font-family: "Playfair Display", serif;
    font-style: italic;
    font-size: clamp(22px, 3vw, 32px);
    color: rgba(255, 255, 255, 0.8);
    display: block;
    margin-bottom: 4px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.blog-detail-page .cta__main {
    font-size: clamp(26px, 3.5vw, 40px);
    font-weight: 800;
    letter-spacing: -0.5px;
    color: #ffffff;
}

.blog-detail-page .cta__main span {
    color: #c9a84c;
}

.blog-detail-page .cta-btn {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border: 1.5px solid rgba(255, 255, 255, 0.45);
    border-radius: 10px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.2px;
    white-space: nowrap;
    -webkit-transition: all 0.25s;
    transition: all 0.25s;
    background: transparent;
    text-decoration: none;
}

.blog-detail-page .cta-btn:hover {
    background: #00bcd4;
    border-color: #00bcd4;
    -webkit-box-shadow: 0 6px 24px rgba(0, 188, 212, 0.3);
    box-shadow: 0 6px 24px rgba(0, 188, 212, 0.3);
    -webkit-transform: translateY(-2px);
    transform: translateY(-2px);
}

/* -- VIDEO MODAL -- */
.blog-detail-page .video-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.blog-detail-page .video-modal.open {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.blog-detail-page .video-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.82);
    -webkit-animation: azBackdropIn 0.25s ease forwards;
    animation: azBackdropIn 0.25s ease forwards;
}

@-webkit-keyframes azBackdropIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes azBackdropIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.blog-detail-page .video-modal__container {
    position: relative;
    z-index: 1;
    width: 90%;
    max-width: 860px;
    -webkit-animation: azModalIn 0.28s cubic-bezier(0.34, 1.2, 0.64, 1) forwards;
    animation: azModalIn 0.28s cubic-bezier(0.34, 1.2, 0.64, 1) forwards;
}

@-webkit-keyframes azModalIn {
    from {
        opacity: 0;
        -webkit-transform: scale(0.93) translateY(16px);
        transform: scale(0.93) translateY(16px);
    }

    to {
        opacity: 1;
        -webkit-transform: scale(1) translateY(0);
        transform: scale(1) translateY(0);
    }
}

@keyframes azModalIn {
    from {
        opacity: 0;
        -webkit-transform: scale(0.93) translateY(16px);
        transform: scale(0.93) translateY(16px);
    }

    to {
        opacity: 1;
        -webkit-transform: scale(1) translateY(0);
        transform: scale(1) translateY(0);
    }
}

.blog-detail-page .video-modal__close {
    position: absolute;
    top: -40px;
    right: 0;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    cursor: pointer;
    -webkit-transition: background 0.2s, -webkit-transform 0.2s;
    transition: background 0.2s, -webkit-transform 0.2s;
    transition: background 0.2s, transform 0.2s;
    transition: background 0.2s, transform 0.2s, -webkit-transform 0.2s;
}

.blog-detail-page .video-modal__close:hover {
    background: rgba(255, 255, 255, 0.25);
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
}

.blog-detail-page .video-modal__player {
    width: 100%;
    aspect-ratio: 16/9;
    background: #000;
    border-radius: 10px;
    overflow: hidden;
    -webkit-box-shadow: 0 32px 80px rgba(0, 0, 0, 0.6);
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.6);
}

.blog-detail-page .video-modal__player video,
.blog-detail-page .video-modal__player iframe {
    width: 100%;
    height: 100%;
    display: block;
    -o-object-fit: contain;
    object-fit: contain;
    border: none;
}

/* -- RESPONSIVE -- */
/* Mobile/Tablet switch */
@media (max-width: 767.98px) {
    .blog-detail-page .breadcrumb {
        padding-bottom: 32px;
    }

    .blog-detail-page .blog-title {
        font-size: 22px;
        margin-bottom: 24px;
    }

    .blog-detail-page .meta-bar {
        gap: 8px;
    }

    .blog-detail-page .share-label {
        font-size: 14px;
    }

    .blog-detail-page .hero-img-wrap img {
        height: 220px;
        -o-object-fit: cover;
        object-fit: cover;
    }

    .blog-detail-page .content-img img {
        height: 220px;
    }

    .blog-detail-page .related__inner {
        padding: 0 16px;
    }

    .blog-detail-page .view-all-btn {
        max-width: 220px;
        font-size: 15px;
        line-height: 28px;
        padding: 8px 16px;
    }

    .blog-detail-page .view-all-btn span {
        margin-left: 24px;
    }

    .blog-detail-page .bp-cards-grid {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .blog-detail-page .cta {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 20px;
        padding: 48px clamp(16px, 5vw, 40px);
    }
}

/* Small mobile */
@media (max-width: 480px) {
    .blog-detail-page .breadcrumb {
        padding-bottom: 24px;
        font-size: 11px;
    }

    .blog-detail-page .blog-title {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .blog-detail-page .meta-date {
        font-size: 14px;
    }

    .blog-detail-page .share-label {
        font-size: 13px;
        margin-right: 6px;
    }

    .blog-detail-page .share-btn {
        width: 28px;
        height: 28px;
    }

    .blog-detail-page .hero-img-wrap img {
        height: 190px;
    }

    .blog-detail-page .blog-body p {
        font-size: 14px;
    }

    .blog-detail-page .content-img img {
        height: 180px;
    }

    .blog-detail-page .view-all-btn {
        max-width: 160px;
        font-size: 14px;
    }

    .blog-detail-page .view-all-btn span {
        margin-left: auto;
    }

    .blog-detail-page .bp-date {
        font-size: 14px;
    }

    .blog-detail-page .cta {
        padding: 40px 16px;
    }

    .blog-detail-page .cta-btn {
        width: 100%;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .blog-detail-page .admin-content-area {
        font-size: 14px;
    }

    .blog-detail-page .admin-content-area h1 {
        font-size: 24px;
    }

    .blog-detail-page .admin-content-area h2 {
        font-size: 20px;
    }

    .blog-detail-page .admin-content-area h3 {
        font-size: 17px;
    }

    .blog-detail-page .admin-content-area h4 {
        font-size: 15px;
    }

    .blog-detail-page .admin-content-area pre {
        font-size: 12px;
        padding: 1rem;
    }

    .blog-detail-page .admin-content-area blockquote {
        padding: 0.75rem 1rem;
    }

    .blog-detail-page .admin-content-area table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .blog-detail-page .video-modal__container {
        width: 95%;
    }

    .blog-detail-page .video-modal__close {
        top: -38px;
        right: 0;
    }
}

.blog-detail-page {
    padding-top: 83px;
}

.blog-detail-page .blog-content-details {
    padding-bottom: 67px;
}

.elementor-widget-thegem-accordion .gem-tta-general.gem-tta-accordion .gem-tta-panels-container .gem-tta-panels .gem-tta-panel .gem-tta-panel-heading {
    border: none;
}

.elementor-widget-thegem-accordion .gem-tta-general.gem-tta-accordion .gem-tta-panels-container .gem-tta-panels .gem-tta-panel .gem-tta-panel-heading .gem-tta-panel-title a {
    display: block !important;
    font-family: "Inter Tight", sans-serif;
    font-weight: 500;
    font-size: 18px;
    padding-left: 0;
    padding-right: 30px;
    text-transform: none;
}

.elementor-widget-thegem-accordion .gem-tta-general.gem-tta-accordion .gem-tta-panels-container .gem-tta-panels .gem-tta-panel .gem-tta-panel-heading .gem-tta-panel-title a .gem-tta-title-text {
    line-height: 1.4;
}

@media (max-width: 991.98px) {
    .elementor-widget-thegem-accordion .gem-tta-general.gem-tta-accordion .gem-tta-panels-container .gem-tta-panels .gem-tta-panel .gem-tta-panel-heading .gem-tta-panel-title a {
        font-size: 16px;
    }
}

.elementor-widget-thegem-accordion .gem-tta-general.gem-tta-accordion .gem-tta-panels-container .gem-tta-panels .gem-tta-panel .gem-tta-panel-heading .gem-tta-panel-title a .gem-tta-controls-icon i {
    left: unset;
    right: 5px;
    font-style: normal;
}

.elementor-widget-thegem-accordion .gem-tta-general.gem-tta-accordion .gem-tta-panels-container .gem-tta-panels .gem-tta-panel .gem-tta-panel-body {
    border: none;
    padding: 0 0 20px;
}