/* =========================================================
   BLOG PAGE
========================================================= */

.blog-page {
    background:
        linear-gradient(
            180deg,
            #fffaf1 0%,
            #f8f1ff 52%,
            #fffaf1 100%
        );
    color: #24142f;
}



/* =========================================================
   CONTAINER
========================================================= */

.blog-container {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
}



/* =========================================================
   HERO
========================================================= */

.blog-hero {
    padding: 155px 0 92px;
    text-align: center;
    position: relative;
    overflow: hidden;
}


.blog-hero::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    top: -180px;
    left: -120px;
    background:
        radial-gradient(
            circle,
            rgba(108, 63, 152, 0.12) 0%,
            rgba(108, 63, 152, 0) 72%
        );
    pointer-events: none;
}


.blog-hero::after {
    content: "";
    position: absolute;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    right: -100px;
    bottom: -170px;
    background:
        radial-gradient(
            circle,
            rgba(212, 169, 69, 0.13) 0%,
            rgba(212, 169, 69, 0) 72%
        );
    pointer-events: none;
}


.blog-hero .blog-container {
    max-width: 900px;
    position: relative;
    z-index: 1;
}


.blog-hero h1 {
    margin: 16px auto 24px;
    max-width: 820px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(46px, 6vw, 74px);
    line-height: 1.03;
    font-weight: 500;
    color: #3c1955;
}


.blog-hero-text {
    max-width: 720px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.8;
    color: #67596d;
}



/* =========================================================
   SECTION HEADINGS
========================================================= */

.blog-section-heading {
    max-width: 760px;
    margin: 0 auto 52px;
    text-align: center;
}


.blog-section-heading h2 {
    margin: 12px 0 16px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(34px, 4vw, 50px);
    line-height: 1.1;
    font-weight: 500;
    color: #3c1955;
}


.blog-section-heading > p:not(.section-eyebrow) {
    margin: 0 auto;
    max-width: 660px;
    font-size: 17px;
    line-height: 1.75;
    color: #6d6172;
}



/* =========================================================
   CATEGORIES
========================================================= */

.blog-categories-section {
    padding: 82px 0 110px;
}


.blog-categories {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}


.blog-category-card {
    appearance: none;
    width: 100%;
    min-height: 260px;
    padding: 34px 26px 30px;
    border: 1px solid rgba(124, 83, 157, 0.18);
    border-radius: 28px;
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.92),
            rgba(249, 242, 255, 0.82)
        );
    box-shadow:
        0 18px 45px rgba(74, 39, 97, 0.07);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    cursor: default;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}


.blog-category-card:hover {
    transform: translateY(-5px);
    border-color: rgba(196, 151, 54, 0.45);
    box-shadow:
        0 24px 55px rgba(74, 39, 97, 0.11);
}


.blog-category-icon {
    width: 68px;
    height: 68px;
    margin-bottom: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(
            circle at 35% 30%,
            #fff7cf 0%,
            #ecd486 42%,
            #b8892a 100%
        );
    box-shadow:
        0 8px 24px rgba(171, 125, 31, 0.20);
    color: #4d255f;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 30px;
    font-weight: 600;
}


.blog-category-name {
    display: block;
    margin-bottom: 12px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 25px;
    line-height: 1.2;
    color: #46205d;
}


.blog-category-description {
    display: block;
    font-size: 15px;
    line-height: 1.7;
    color: #75677a;
}



/* =========================================================
   FEATURED
========================================================= */

.blog-featured-section {
    padding: 100px 0;
    background:
        linear-gradient(
            135deg,
            #36134d 0%,
            #57236f 52%,
            #351348 100%
        );
}


.blog-featured-section .section-eyebrow {
    color: #e7c56d;
}


.blog-featured-section .blog-section-heading h2 {
    color: #fff9ef;
}


.blog-featured-empty {
    max-width: 900px;
    margin: 0 auto;
    padding: 52px 60px;
    border: 1px solid rgba(233, 199, 108, 0.30);
    border-radius: 30px;
    background:
        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.08),
            rgba(255, 255, 255, 0.03)
        );
    box-shadow:
        0 28px 70px rgba(17, 4, 25, 0.22);
    display: flex;
    align-items: center;
    gap: 38px;
}


.blog-featured-symbol {
    flex: 0 0 104px;
    width: 104px;
    height: 104px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(
            circle at 35% 30%,
            #fff6c7 0%,
            #e7ca73 45%,
            #ad7f29 100%
        );
    color: #432055;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 52px;
    box-shadow:
        0 12px 34px rgba(0, 0, 0, 0.20);
}


.blog-featured-content h3 {
    margin: 0 0 14px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 31px;
    line-height: 1.2;
    font-weight: 500;
    color: #fff9ee;
}


.blog-featured-content p {
    margin: 0;
    font-size: 17px;
    line-height: 1.75;
    color: rgba(255, 249, 238, 0.78);
}



/* =========================================================
   LATEST ARTICLES
========================================================= */

.blog-latest-section {
    padding: 110px 0;
}


.blog-empty-state {
    max-width: 750px;
    margin: 0 auto;
    padding: 58px 48px;
    border: 1px solid rgba(126, 84, 158, 0.18);
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.74);
    box-shadow:
        0 20px 55px rgba(74, 39, 97, 0.07);
    text-align: center;
}


.blog-empty-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        linear-gradient(
            145deg,
            #4b1d65,
            #7a3a92
        );
    color: #f1d37d;
    font-size: 30px;
    box-shadow:
        0 10px 30px rgba(74, 29, 101, 0.17);
}


.blog-empty-state h3 {
    margin: 0 0 15px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 31px;
    font-weight: 500;
    color: #432058;
}


.blog-empty-state p {
    max-width: 600px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.8;
    color: #746779;
}



/* =========================================================
   CTA
========================================================= */

.blog-cta-section {
    padding: 110px 24px 120px;
}


.blog-cta-container {
    width: min(1030px, 100%);
    margin: 0 auto;
    padding: 72px 60px;
    border-radius: 38px;
    background:
        radial-gradient(
            circle at 20% 20%,
            rgba(237, 204, 112, 0.22),
            transparent 32%
        ),
        linear-gradient(
            135deg,
            #411957 0%,
            #65297d 55%,
            #3d1752 100%
        );
    box-shadow:
        0 30px 80px rgba(67, 29, 87, 0.16);
    text-align: center;
}


.blog-cta-container .section-eyebrow {
    color: #e9ca76;
}


.blog-cta-container h2 {
    max-width: 760px;
    margin: 14px auto 18px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(34px, 4vw, 50px);
    line-height: 1.12;
    font-weight: 500;
    color: #fff9ef;
}


.blog-cta-container p {
    max-width: 680px;
    margin: 0 auto 32px;
    font-size: 17px;
    line-height: 1.75;
    color: rgba(255, 249, 239, 0.80);
}


.blog-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 30px;
    border-radius: 999px;
    background:
        linear-gradient(
            135deg,
            #efd781,
            #c89a39
        );
    color: #3b174f;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    box-shadow:
        0 12px 28px rgba(13, 4, 18, 0.20);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}


.blog-cta-button:hover {
    transform: translateY(-2px);
    box-shadow:
        0 16px 34px rgba(13, 4, 18, 0.26);
}



/* =========================================================
   TABLET
========================================================= */

@media (max-width: 980px) {

    .blog-categories {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }


    .blog-featured-empty {
        max-width: 760px;
    }

}



/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .blog-container {
        width: calc(100% - 32px);
    }


    .blog-hero {
        padding: 118px 0 66px;
    }


    .blog-hero h1 {
        margin-top: 12px;
        font-size: 43px;
        line-height: 1.05;
    }


    .blog-hero-text {
        font-size: 16px;
        line-height: 1.72;
    }


    .blog-categories-section {
        padding: 58px 0 76px;
    }


    .blog-section-heading {
        margin-bottom: 36px;
    }


    .blog-section-heading h2 {
        font-size: 34px;
    }


    .blog-section-heading > p:not(.section-eyebrow) {
        font-size: 16px;
    }


    .blog-categories {
        grid-template-columns: 1fr;
        gap: 16px;
    }


    .blog-category-card {
        min-height: 0;
        padding: 30px 24px;
    }


    .blog-category-icon {
        width: 62px;
        height: 62px;
        font-size: 27px;
    }


    .blog-category-name {
        font-size: 24px;
    }


    .blog-featured-section {
        padding: 72px 0;
    }


    .blog-featured-empty {
        padding: 38px 26px;
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }


    .blog-featured-symbol {
        flex-basis: 88px;
        width: 88px;
        height: 88px;
        font-size: 44px;
    }


    .blog-featured-content h3 {
        font-size: 27px;
    }


    .blog-featured-content p {
        font-size: 16px;
    }


    .blog-latest-section {
        padding: 76px 0;
    }


    .blog-empty-state {
        padding: 42px 24px;
    }


    .blog-empty-state h3 {
        font-size: 27px;
    }


    .blog-cta-section {
        padding: 72px 16px 86px;
    }


    .blog-cta-container {
        padding: 54px 24px;
        border-radius: 30px;
    }


    .blog-cta-container h2 {
        font-size: 34px;
    }


    .blog-cta-container p {
        font-size: 16px;
    }


    .blog-cta-button {
        width: 100%;
        max-width: 320px;
    }

}