/* =============================================================================
   WAT Blog Single — Frontend Styles
   Location: hello-elementor-child/assets/css/blog-single.css
   Font: Sen (loaded via site)
   ============================================================================= */


/* ── Design tokens ───────────────────────────────────────────────────────────── */

.blog-single {
    --blog-bg:          #fbf9f5;
    --blog-navy:        #1e2d4d;
    --blog-teal:        #19353f;
    --blog-dark:        #1e2340;
    --blog-gold:        #BAA874;
    --blog-gold2:       #C7B299;
    --blog-list:        #BAA874;
    --blog-body:        #272346;
    --blog-white:       #ffffff;
    --blog-card-radius: 20px;
    --blog-max-width:   1635px;
    --blog-gutter:      20px;
    --blog-section-gap: 80px;
    --blog-font:        'Sen', sans-serif;
}


/* ── Base ────────────────────────────────────────────────────────────────────── */
.blog-single {
    background-color: var(--blog-bg);
    font-family: var(--blog-font);
    color: var(--blog-body);
    display: flex;
    flex-direction: column;
    gap: 100px;
    padding-bottom: 100px;
}

.blog-single a {
    transition: all ease-in-out 0.3s;
}

.blog-single *,
.blog-single *::before,
.blog-single *::after {
    box-sizing: border-box;
}

.blog-section__inner {
    max-width: var(--blog-max-width);
    margin: 0 auto;
    padding: 0 var(--blog-gutter);
}

.blog-section li,
.blog-hero li {
    position: relative;
    padding-left: 16px;
    margin-bottom: 6px;
    font-size: 16px;
    line-height: 140%;
    color: var(--blog-list);
}

.blog-section li::before,
.blog-hero li::before {
    content: '•';
    position: absolute;
    left: 0;
}

.blog-section ul,
.blog-hero ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.single-post .blog-section h2 {
    font-family: var(--blog-font);
    font-size: 32px;
    font-weight: 500;
    margin: 0 0 20px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--blog-gold);
    line-height: 1.2;
}

.blog-section .tcit__body {
    font-size: 16px;
    line-height: 140%;
}

.blog-section .nc__body {
    color: inherit;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════════════════════════ */

.blog-hero {
    background-color: var(--blog-bg);
    padding: 60px var(--blog-gutter) 0;
    max-width: var(--blog-max-width);
    margin: 0 auto;
}

.blog-hero__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Content side */
.blog-hero__content {
    padding-right: 40px;
}

.single-post h1.blog-hero__title {
    font-family: var(--blog-font);
    font-size: 40px;
    font-weight: 500;
    color: var(--blog-navy);
    line-height: 1.15;
    margin: 0 0 24px;
    padding-bottom: 24px;
    border-bottom: 2px solid var(--blog-gold);
}

/* Author row */
.blog-hero__author {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 28px;
}

.blog-hero__author-photo {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    object-position: top;
}

.blog-hero__author-meta {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.single-post .blog-hero__author-name {
    font-size: 24px;
    font-weight: 700;
    color: var(--blog-gold2);
    text-decoration: none;
}

.single-post .blog-hero__author-name:hover {
    text-decoration: none;
    color: var(--blog-navy);
}

.blog-hero__date {
    font-size: 16px;
    color: var(--blog-gold2);
    font-weight: 600;
    margin-top: 5px;
}

/* Intro */
.blog-hero__intro {
    font-size: 16px;
    line-height: 140%;
    color: var(--blog-body);
    margin-bottom: 24px;
}

.blog-hero__intro p {
    margin: 0 0 12px;
}

.blog-hero__intro p:last-child {
    margin-bottom: 0;
}

/* Anchor bullets */
.blog-hero__anchors {
    list-style: none;
    margin: 0;
    padding: 0;
}


.blog-hero__anchors li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--blog-gold);
}

.blog-single .blog-hero__anchors a {
    color: var(--blog-gold);
    text-decoration: none;
    transition: all ease-in-out 0.3s;
}

.blog-single .blog-hero__anchors a:hover {
    color: var(--blog-navy);
}

/* Image side */
.blog-hero__image {
    border-radius: 5px;
    overflow: hidden;
}

.blog-hero__image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}


/* ═══════════════════════════════════════════════════════════════════════════════
   FULL WIDTH CONTENT
   ═══════════════════════════════════════════════════════════════════════════════ */

.blog-section--full_width_content {
    background-color: var(--blog-bg);
}

.fwc {
    max-width: 860px;
}

.fwc__title {
    font-family: var(--blog-font);
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 700;
    color: var(--blog-navy);
    margin: 0 0 20px;
}

.fwc__content {
    font-size: 16px;
    line-height: 1.8;
    color: var(--blog-body);
}

.fwc__content p {
    margin: 0 0 16px;
}

.fwc__content p:last-child {
    margin-bottom: 0;
}

.fwc__content ul,
.fwc__content ol {
    padding-left: 20px;
    margin: 0 0 16px;
}

.fwc__content li {
    margin-bottom: 6px;
    color: var(--blog-gold);
}

.fwc__content li span,
.fwc__content li p {
    color: var(--blog-body);
}

.fwc__content strong {
    color: var(--blog-navy);
}

.fwc__content a {
    color: var(--blog-gold);
}


/* ═══════════════════════════════════════════════════════════════════════════════
   TWO COLUMN: IMAGE + TEXT
   ═══════════════════════════════════════════════════════════════════════════════ */

.blog-section--two_col_image_text {
    padding: 0;
}

.blog-section--two_col_image_text .blog-section__inner {
    max-width: 1595px;
}


.tcit {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    min-height: 500px;
    padding: 0;
    border-radius: 5px;
}

.tcit--image-left {
    direction: ltr;
}

.tcit--image-right {
    direction: rtl;
}

.tcit--image-right > * {
    direction: ltr;
}

.tcit__image {
    overflow: hidden;
}

.tcit__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.tcit__content {
    padding: 60px 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.tcit__body p {
    margin: 0 0 14px;
}

.tcit__body p:last-child {
    margin-bottom: 0;
}

.tcit__body strong {
    font-weight: 700;
}

.tcit--image-left img {
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}

.tcit--image-right img {
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}

.tcit--image-right .tcit__heading:before {
    content: url('../images/site-icon.svg');
    display: block;
    margin-bottom: 10px;
}


/* ═══════════════════════════════════════════════════════════════════════════════
   NUMBERED CARDS
   ═══════════════════════════════════════════════════════════════════════════════ */

.blog-section--numbered_cards {
    background-color: var(--blog-bg);
}

.nc__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.nc__card {
    background: var(--blog-white);
    border-radius: var(--blog-card-radius);
    padding: 36px 40px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.nc__heading_wrap {
    display: flex;
    margin: 0 0 20px;
    padding-bottom: 25px;
    border-bottom: 2px solid var(--blog-gold);
    gap: 15px;
    align-items: center;
}

.nc__number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background-color: var(--blog-gold2);
    color: var(--blog-white);
    font-family: var(--blog-font);
    font-size: 32px;
    font-weight: 500;
    flex-shrink: 0;
}

.nc__heading {
    font-family: var(--blog-font);
    font-size: clamp(20px, 2vw, 26px);
    font-weight: 500;
    color: var(--blog-navy);
    line-height: 1.25;
    margin: 0;
}

.nc__body p {
    margin: 0 0 14px;
}

.nc__body p:last-child {
    margin-bottom: 0;
}

.nc__body strong {
    color: var(--blog-navy);
    font-weight: 700;
}


/* ═══════════════════════════════════════════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════════════════════════════════════════ */

.blog-section--faq {
    background-color: var(--blog-bg);
}

.single-post .blog-section h2.faq__title {
    font-size: 40px;
    border: none;
    text-align: center;
    position: relative;
}

.single-post .blog-section h2.faq__title:before {
    content: url('../images/site-icon.svg');
    display: block;
    margin-bottom: 10px;
}

.single-post .blog-section h2.faq__title:after {
    width: 200px;
    height: 2px;
    background-color: var(--blog-gold);
    content: '';
    display: block;
    margin: 25px auto 0;

}

.faq {
    margin-left: auto;
    margin-right: auto;
}

.faq__list {
    margin: 0 auto;
    padding: 0;
    max-width: 1150px;
}

.faq__item {
    background: var(--blog-white);
    border-radius: 5px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.1);
}

.faq__item:last-child {
    margin-bottom: 0;
}

.faq__question {
    margin: 0;
}

.faq .faq__item .faq__toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 20px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--blog-font);
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--blog-navy);
    text-align: left;
    transition: background 0.2s;
    white-space: normal;
}

.faq__icon {
    width: 15px;
    display: block;
    flex-shrink: 0;
    margin-left: 20px;
    transition: transform 0.2s;
    transform: rotate(-45deg);
}

.faq__icon svg {
    fill: var(--blog-gold2);
}

.faq .faq__item .faq__toggle:hover {
    background-color: #C7B2992E;
}

.faq .faq__item .faq__toggle:hover .faq__icon {
    transform: none;
}

.faq .faq__item .faq__toggle[aria-expanded="true"] .faq__icon {
    transform: rotate(45deg);
}

.faq .faq__item .faq__toggle[aria-expanded="true"] {
    background-color: #fff;
}

.faq__answer {
    padding: 0 20px 30px;
    font-size: 16px;
    line-height: 140%;
    color: var(--blog-body);
    margin: 0;
     height: 0;
    overflow: hidden;
    transition: height 0.3s ease;
    display: block;
}

.faq__answer p {
    margin: 0 0 12px;
}

.faq__answer p:last-child {
    margin-bottom: 0;
}

.faq__answer_inner {
    padding-top: 20px;
    margin: 0 20px 20px 20px;
    width: 100%;
    max-width: 855px;
    border-top: 1px solid var(--blog-gold2);
}


.faq__answer {
    height: 0;
    overflow: hidden;
    transition: height 0.3s ease;
    display: block;
    padding: 0;
    margin: 0;
}

.faq__answer-inner {
    padding: 24px 28px;
    font-size: 15px;
    line-height: 1.8;
    color: var(--blog-body);
}

.faq__answer-inner p {
    margin: 0 0 12px;
}

.faq__answer-inner p:last-child {
    margin-bottom: 0;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   CTA BLOCK
   ═══════════════════════════════════════════════════════════════════════════════ */

.blog-section--cta_block {
    padding: 0;
}

.cta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 400px;
    padding: 0;
    background-color: var(--blog-dark);
}

.cta__content {
    padding: 60px 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cta__heading {
    font-family: var(--blog-font);
    font-size: clamp(24px, 2.5vw, 36px);
    font-weight: 700;
    color: var(--blog-white);
    margin: 0 0 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--blog-gold);
    line-height: 1.2;
}

.cta__body {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 20px;
}

.cta__bullets {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cta__bullets li {
    position: relative;
    padding-left: 16px;
    margin-bottom: 8px;
    font-size: 15px;
    color: var(--blog-gold);
}

.cta__bullets li::before {
    content: '•';
    position: absolute;
    left: 0;
}

.cta__image {
    overflow: hidden;
}

.cta__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


/* ═══════════════════════════════════════════════════════════════════════════════
   SPA MODEL SPLIT
   ═══════════════════════════════════════════════════════════════════════════════ */

.blog-section--spa_model_split {
    background-color: var(--blog-bg);
}

.sms {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    align-items: start;
}

/* Left — white card */
.sms__left {
    background: var(--blog-white);
    border-radius: var(--blog-card-radius);
    padding: 36px 40px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.sms__number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--blog-gold);
    color: var(--blog-white);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
}

.sms__heading {
    font-family: var(--blog-font);
    font-size: clamp(20px, 2vw, 28px);
    font-weight: 700;
    color: var(--blog-navy);
    margin: 0 0 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--blog-gold);
    line-height: 1.25;
}

.sms__body {
    font-size: 15px;
    line-height: 1.8;
    color: var(--blog-body);
    margin: 0 0 16px;
}

.sms__bullets {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sms__bullets li {
    position: relative;
    padding-left: 16px;
    margin-bottom: 6px;
    font-size: 15px;
    color: var(--blog-gold);
}

.sms__bullets li::before {
    content: '•';
    position: absolute;
    left: 0;
}

/* Right — dark panel */
.sms__right {
    background: var(--blog-dark);
    border-radius: var(--blog-card-radius);
    padding: 36px 40px;
    color: var(--blog-white);
}

.sms__right-heading {
    font-family: var(--blog-font);
    font-size: clamp(20px, 2vw, 26px);
    font-weight: 700;
    color: var(--blog-white);
    margin: 0 0 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--blog-gold);
}

.sms__group {
    margin-bottom: 24px;
}

.sms__group:last-child {
    margin-bottom: 0;
}

.sms__group-heading {
    font-family: var(--blog-font);
    font-size: 15px;
    font-weight: 700;
    color: var(--blog-white);
    margin: 0 0 10px;
}

.sms__group-bullets {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sms__group-bullets li {
    position: relative;
    padding-left: 16px;
    margin-bottom: 6px;
    font-size: 14px;
    color: var(--blog-gold);
}

.sms__group-bullets li::before {
    content: '•';
    position: absolute;
    left: 0;
}


/* ═══════════════════════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════════════════════ */

@media ( max-width: 1024px ) {
    .blog-single {
        gap: 60px;
        --blog-gutter: 15px;
    }

    .blog-hero {
        padding: 10px 0;
        margin-bottom: -50px;
    }

    .blog-hero__image {
        order: -1;
    }

    .blog-hero__inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .blog-hero__content {
        padding: 015px;
    }

    .single-post h1.blog-hero__title {
        font-size: 32px;
    }

    .tcit--image-left img,
    .tcit--image-right img {
        border-radius: 0 0 5px 5px;
    }

    .tcit,
    .cta {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .tcit--image-right {
        direction: ltr;
    }

    .tcit__image,
    .cta__image {
        height: 340px;
    }

    .tcit__content,
    .cta__content {
        padding: 48px 40px;
        order: -1;
    }

    .nc__grid {
        grid-template-columns: 1fr;
    }

    .sms {
        grid-template-columns: 1fr;
    }
}

@media ( max-width: 767px ) {
    .blog-single {
        padding-bottom: 70px;
    }

    .blog-hero__image img {
        height: 360px;
    }

    .blog-hero__inner {
        gap: 20px;
    }

    .single-post h1.blog-hero__title {
        font-size: 28px;
    }

    .single-post .blog-hero__author-name {
        font-size: 20px;
    }

    .nc__card,
    .sms__left,
    .sms__right {
        padding: 28px 24px;
    }

    .tcit__content,
    .cta__content {
        padding: 36px 15px;
    }

    .faq__toggle {
        padding: 18px 20px;
        font-size: 11px;
    }

    .blog-single .nc__heading {
        font-size: 24px;
    }

    .nc__heading_wrap {
        flex-direction: column;
        align-items: flex-start;
    }

    .nc__number {
        width: 43px;
        height: 43px;
        font-size: 24px;
    }

    .single-post .blog-section h2.faq__title {
        font-size: 32px;
    }

    .faq__answer_inner {
        width: 92%;
    }

}