/*
Theme Name: Sky Map Gifts
Theme URI: https://www.skymapgifts.com/blog/
Author: Sky Map Gifts
Description: Custom WordPress blog theme for Sky Map Gifts.
Version: 1.0.0
*/


/* =========================================================
   DESIGN SYSTEM
========================================================= */

:root {
    --cream: #fffdf8;
    --white: #ffffff;

    --navy: #17253d;
    --navy-2: #243653;

    --gold: #d8b56a;
    --gold-light: #f6ead0;

    --text: #263142;
    --muted: #697386;

    --border: #eeeae1;
    --soft-blue: #f3f7fb;

    --shadow: 0 20px 60px rgba(23, 37, 61, .08);

    --radius: 18px;
}


/* =========================================================
   GLOBAL
========================================================= */

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;

    font-family: "DM Sans", sans-serif;

    color: var(--text);

    background: var(--cream);

    line-height: 1.75;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--navy);
}

a {
    color: var(--navy);

    text-decoration: none;
}

a:hover {
    color: var(--gold);
}

.serif {
    font-family: "Playfair Display", serif;
}


/* =========================================================
   NAVBAR
========================================================= */

.navbar {
    background: rgba(255, 253, 248, .95);

    backdrop-filter: blur(12px);

    border-bottom: 1px solid var(--border);
}

.navbar-brand {
    color: var(--navy);

    font-size: 1.35rem;

    font-weight: 700;

    letter-spacing: -.03em;
}

.navbar-brand:hover {
    color: var(--navy);
}

.brand-star {
    color: var(--gold);
}

.nav-link {
    color: var(--text);

    font-size: .95rem;

    font-weight: 500;
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold);
}

.navbar-actions {
    display: flex;

    align-items: center;

    gap: 14px;
}

.navbar-cart {
    position: relative;

    width: 42px;
    height: 42px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    border: 1px solid var(--border);

    border-radius: 50%;

    background: rgba(255, 255, 255, .65);

    color: var(--navy);

    transition: .25s ease;
}

.navbar-cart:hover {
    background: white;

    border-color: var(--gold);

    color: var(--navy);

    transform: translateY(-1px);
}


/* =========================================================
   BUTTONS
========================================================= */

.btn-primary-custom {
    padding: 13px 24px;

    border: 0;

    border-radius: 999px;

    background: var(--navy);

    color: white;

    font-weight: 600;

    transition: .25s ease;
}

.btn-primary-custom:hover {
    background: var(--navy-2);

    color: white;

    transform: translateY(-2px);

    box-shadow:
        0 10px 25px rgba(23, 37, 61, .18);
}

.btn-outline-custom {
    padding: 13px 24px;

    border: 1px solid var(--border);

    border-radius: 999px;

    background: white;

    color: var(--navy);

    font-weight: 600;
}

.btn-outline-custom:hover {
    border-color: var(--navy);

    color: var(--navy);
}


/* =========================================================
   FOOTER
========================================================= */

.site-footer {
    margin-top: 80px;

    padding: 60px 0 25px;

    background: var(--navy);

    color: rgba(255, 255, 255, .72);
}

.site-footer h5 {
    color: white;

    font-weight: 600;
}

.site-footer a {
    color: rgba(255, 255, 255, .72);
}

.site-footer a:hover {
    color: var(--gold);
}

.footer-brand {
    color: white;

    font-size: 1.3rem;

    font-weight: 700;
}

.footer-star {
    color: var(--gold);
}

.footer-bottom {
    margin-top: 30px;

    padding-top: 22px;

    border-top:
        1px solid rgba(255, 255, 255, .12);

    font-size: .88rem;
}


/* =========================================================
   WORDPRESS
========================================================= */

img {
    max-width: 100%;

    height: auto;
}

.aligncenter {
    display: block;

    margin-left: auto;

    margin-right: auto;
}

.alignleft {
    float: left;

    margin: 0 25px 20px 0;
}

.alignright {
    float: right;

    margin: 0 0 20px 25px;
}

.wp-caption {
    max-width: 100%;
}

.wp-caption-text {
    color: var(--muted);

    font-size: .85rem;

    text-align: center;
}


/* =========================================================
   BLOG HERO
========================================================= */

.blog-hero {
    position: relative;

    padding: 90px 0 80px;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 20% 20%,
            rgba(216, 181, 106, .14),
            transparent 30%
        ),
        radial-gradient(
            circle at 80% 30%,
            rgba(36, 54, 83, .08),
            transparent 30%
        ),
        var(--cream);
}

.blog-hero .eyebrow {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    margin-bottom: 18px;

    color: var(--gold);

    font-size: .8rem;

    font-weight: 700;

    letter-spacing: .12em;

    text-transform: uppercase;
}

.blog-hero h1 {
    max-width: 760px;

    margin: 0 auto 18px;

    font-family: "Playfair Display", serif;

    font-size: clamp(
        2.5rem,
        5vw,
        4.5rem
    );

    line-height: 1.08;

    letter-spacing: -.035em;
}

.blog-hero p {
    max-width: 680px;

    margin: 0 auto;

    color: var(--muted);

    font-size: 1.1rem;
}


/* =========================================================
   BLOG LISTING
========================================================= */

.blog-section {
    padding: 70px 0;
}

.blog-grid {
    display: flex;

    flex-direction: column;

    gap: 28px;
}


/* =========================================================
   BLOG CARD
========================================================= */

.blog-card {
    display: grid;

    grid-template-columns:
        380px
        minmax(0, 1fr);

    min-height: 280px;

    overflow: hidden;

    background: var(--white);

    border: 1px solid var(--border);

    border-radius: var(--radius);

    box-shadow: var(--shadow);

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

.blog-card:hover {
    transform: translateY(-3px);

    box-shadow:
        0 25px 70px rgba(23, 37, 61, .12);
}

.blog-card-image {
    display: block;

    width: 100%;
    height: 100%;

    min-height: 280px;

    overflow: hidden;

    background: var(--soft-blue);
}

.blog-card-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform .4s ease;
}

.blog-card:hover
.blog-card-image img {
    transform: scale(1.04);
}

.blog-card-placeholder {
    width: 100%;
    height: 100%;

    min-height: 280px;

    display: flex;

    align-items: center;
    justify-content: center;

    color: var(--gold);

    font-size: 3rem;
}

.blog-card-body {
    display: flex;

    flex-direction: column;

    justify-content: center;

    padding: 35px 40px;
}

.blog-meta {
    display: flex;

    flex-wrap: wrap;

    align-items: center;

    gap: 8px 14px;

    margin-bottom: 12px;

    color: var(--muted);

    font-size: .8rem;
}

.blog-category {
    color: var(--gold);

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: .07em;
}

.blog-card-title {
    margin-bottom: 12px;

    font-family: "Playfair Display", serif;

    font-size: 1.8rem;

    line-height: 1.3;

    letter-spacing: -.02em;
}

.blog-card-title a {
    color: var(--navy);
}

.blog-card-title a:hover {
    color: var(--gold);
}

.blog-excerpt {
    max-width: 680px;

    margin-bottom: 20px;

    color: var(--muted);

    font-size: .95rem;
}

.blog-readmore {
    display: inline-flex;

    align-items: center;

    gap: 7px;

    width: fit-content;

    font-size: .9rem;

    font-weight: 700;

    color: var(--navy);
}

.blog-readmore:hover {
    color: var(--gold);
}


/* =========================================================
   SINGLE ARTICLE HERO
========================================================= */

.article-hero {
    position: relative;

    padding: 78px 0 60px;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 15% 20%,
            rgba(216, 181, 106, .14),
            transparent 32%
        ),
        radial-gradient(
            circle at 85% 25%,
            rgba(36, 54, 83, .07),
            transparent 32%
        ),
        var(--cream);
}

.article-hero-inner {
    max-width: 900px;

    margin: 0 auto;

    text-align: center;
}

.article-category {
    display: inline-block;

    margin-bottom: 18px;

    color: var(--gold);

    font-size: .72rem;

    font-weight: 700;

    letter-spacing: .14em;

    text-transform: uppercase;
}

.article-category:hover {
    color: var(--gold);
}

.article-hero h1 {
    max-width: 900px;

    margin: 0 auto;

    color: var(--navy);

    font-family: "Playfair Display", serif;

    font-size: clamp(
        2.5rem,
        5vw,
        4.3rem
    );

    line-height: 1.08;

    letter-spacing: -.035em;
}

.article-excerpt {
    max-width: 700px;

    margin: 24px auto 0;

    color: var(--muted);

    font-size: 1.1rem;

    line-height: 1.7;
}

.article-meta {
    display: flex;

    justify-content: center;

    align-items: center;

    gap: 9px;

    margin-top: 24px;

    color: var(--muted);

    font-size: .78rem;
}

.article-meta-separator {
    opacity: .45;
}


/* =========================================================
   ARTICLE LAYOUT
========================================================= */

.article-section {
    padding-top: 60px;
}

.article-layout {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        300px;

    gap: 42px;

    align-items: start;
}

.article-card {
    min-width: 0;

    padding: 55px;

    background: var(--white);

    border: 1px solid var(--border);

    border-radius: var(--radius);

    box-shadow: var(--shadow);
}


/* =========================================================
   FEATURED IMAGE
========================================================= */

.article-featured-image {
    margin:
        -55px
        -55px
        45px;

    overflow: hidden;

    background: var(--soft-blue);
}

.article-featured-image img {
    display: block;

    width: 100%;

    height: auto;

    max-height: 560px;

    /* object-fit: cover; */
}


/* =========================================================
   ARTICLE CONTENT
========================================================= */

.article-content {
    max-width: 760px;

    margin: 0 auto;

    color: var(--text);

    font-size: 1.05rem;

    line-height: 1.85;
}

.article-content p {
    margin-bottom: 1.4rem;
}

.article-content h2 {
    margin-top: 2.8rem;

    margin-bottom: 1rem;

    color: var(--navy);

    font-family: "Playfair Display", serif;

    font-size: 2rem;

    line-height: 1.25;
}

.article-content h3 {
    margin-top: 2.2rem;

    margin-bottom: .8rem;

    color: var(--navy);

    font-family: "Playfair Display", serif;

    font-size: 1.45rem;

    line-height: 1.3;
}

.article-content ul,
.article-content ol {
    margin-bottom: 1.5rem;

    padding-left: 1.4rem;
}

.article-content li {
    margin-bottom: .45rem;
}

.article-content img {
    max-width: 100%;

    height: auto;

    border-radius: 12px;
}

.article-content a {
    color: var(--navy);

    text-decoration: underline;

    text-decoration-color: var(--gold);

    text-underline-offset: 3px;
}

.article-content blockquote {
    margin: 2.3rem 0;

    padding: 22px 27px;

    border-left: 4px solid var(--gold);

    border-radius:
        0
        10px
        10px
        0;

    background: var(--soft-blue);

    color: var(--navy);

    font-family: "Playfair Display", serif;

    font-size: 1.2rem;

    line-height: 1.65;
}


/* =========================================================
   ARTICLE CTA
========================================================= */

.article-cta {
    position: relative;

    max-width: 850px;

    margin: 75px auto 0;

    overflow: hidden;

    border-radius: 18px;

    background: var(--navy);

    text-align: center;
}

.article-cta-inner {
    position: relative;

    z-index: 2;

    padding: 55px 35px;
}

.article-cta-decoration {
    position: absolute;

    top: -45px;

    right: -35px;

    z-index: 1;

    color: rgba(216, 181, 106, .09);

    font-size: 190px;

    line-height: 1;
}

.article-cta-eyebrow {
    margin-bottom: 15px;

    color: var(--gold);

    font-size: .68rem;

    font-weight: 700;

    letter-spacing: .16em;

    text-transform: uppercase;
}

.article-cta h2 {
    max-width: 650px;

    margin: 0 auto;

    color: var(--white);

    font-family: "Playfair Display", serif;

    font-size: clamp(
        1.9rem,
        4vw,
        2.8rem
    );

    line-height: 1.18;
}

.article-cta p {
    max-width: 570px;

    margin: 18px auto 28px;

    color: rgba(255, 255, 255, .72);

    font-size: .96rem;

    line-height: 1.7;
}


/* =========================================================
   ARTICLE NAVIGATION
========================================================= */

.article-navigation {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        auto
        minmax(0, 1fr);

    gap: 25px;

    align-items: center;

    margin-top: 70px;

    padding-top: 30px;

    border-top:
        1px solid var(--border);
}

.article-navigation-item {
    min-width: 0;
}

.article-navigation-item a {
    display: flex;

    flex-direction: column;

    gap: 7px;

    text-decoration: none;
}

.article-navigation-label {
    color: var(--gold);

    font-size: .72rem;

    font-weight: 700;

    letter-spacing: .07em;

    text-transform: uppercase;
}

.article-navigation-title {
    display: block;

    overflow: hidden;

    color: var(--navy);

    font-family: "Playfair Display", serif;

    font-size: 1rem;

    line-height: 1.4;

    text-overflow: ellipsis;
}

.article-navigation-item a:hover
.article-navigation-title {
    color: var(--gold);
}

.article-navigation-prev {
    text-align: left;
}

.article-navigation-next {
    text-align: right;
}

.article-navigation-journal {
    text-align: center;
}

.article-navigation-journal a {
    display: inline-flex;

    align-items: center;

    gap: 7px;

    padding: 9px 17px;

    border: 1px solid var(--border);

    border-radius: 999px;

    background: var(--white);

    color: var(--navy);

    font-size: .82rem;

    font-weight: 600;

    text-decoration: none;

    white-space: nowrap;

    transition:
        border-color .2s ease,
        background .2s ease,
        color .2s ease;
}

.article-navigation-journal a:hover {
    border-color: var(--navy);

    background: var(--navy);

    color: var(--white);
}


/* =========================================================
   RELATED ARTICLES
========================================================= */

.related-posts {
    margin-top: 75px;

    padding-top: 55px;

    border-top:
        1px solid var(--border);
}

.related-posts-header {
    margin-bottom: 30px;
}

.related-posts-eyebrow {
    margin-bottom: 7px;

    color: var(--gold);

    font-size: .68rem;

    font-weight: 700;

    letter-spacing: .14em;

    text-transform: uppercase;
}

.related-posts-header h2 {
    margin: 0;

    color: var(--navy);

    font-family: "Playfair Display", serif;

    font-size: 2rem;

    line-height: 1.2;
}

.related-post-card {
    display: block;

    height: 100%;

    text-decoration: none;

    color: inherit;
}

.related-post-image {
    width: 100%;

    aspect-ratio: 16 / 10;

    overflow: hidden;

    margin-bottom: 16px;

    border-radius: 12px;

    background: var(--soft-blue);
}

.related-post-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform .4s ease;
}

.related-post-card:hover
.related-post-image img {
    transform: scale(1.045);
}

.related-post-image-placeholder {
    display: flex;

    align-items: center;

    justify-content: center;

    color: var(--gold);

    font-size: 2rem;
}

.related-post-category {
    margin-bottom: 6px;

    color: var(--gold);

    font-size: .67rem;

    font-weight: 700;

    letter-spacing: .1em;

    text-transform: uppercase;
}

.related-post-info h3 {
    margin: 0 0 7px;

    color: var(--navy);

    font-family: "Playfair Display", serif;

    font-size: 1.15rem;

    line-height: 1.35;

    transition: color .2s ease;
}

.related-post-card:hover
.related-post-info h3 {
    color: var(--gold);
}

.related-post-date {
    color: var(--muted);

    font-size: .72rem;
}


/* =========================================================
   SIDEBAR
========================================================= */

.blog-sidebar {
    position: sticky;

    top: 100px;
}

.blog-sidebar-card {
    margin-bottom: 20px;

    padding: 25px;

    background: var(--white);

    border: 1px solid var(--border);

    border-radius: var(--radius);

    box-shadow:
        0 8px 30px rgba(23, 37, 61, .04);
}

.blog-sidebar-card h3 {
    margin-bottom: 14px;

    color: var(--navy);

    font-family: "Playfair Display", serif;

    font-size: 1.3rem;
}

.blog-sidebar-card p {
    margin-bottom: 18px;

    color: var(--muted);

    font-size: .9rem;

    line-height: 1.65;
}


/* =========================================================
   SIDEBAR HEADING
========================================================= */

.sidebar-heading-row {
    display: flex;

    align-items: flex-start;

    justify-content: space-between;

    gap: 15px;

    margin-bottom: 15px;
}

.sidebar-heading-row h3 {
    margin-bottom: 0;
}

.sidebar-eyebrow {
    display: block;

    margin-bottom: 3px;

    color: var(--gold);

    font-size: .6rem;

    font-weight: 700;

    letter-spacing: .13em;

    text-transform: uppercase;
}

.sidebar-heading-icon {
    color: var(--gold);

    font-size: 1.1rem;

    opacity: .75;
}

.sidebar-empty {
    margin: 0 !important;

    font-size: .82rem !important;
}


/* =========================================================
   ARTICLE RANKING
========================================================= */

.article-ranking {
    display: flex;

    flex-direction: column;
}

.article-ranking-item {
    display: grid;

    grid-template-columns:
        34px
        minmax(0, 1fr)
        14px;

    gap: 9px;

    align-items: center;

    padding: 13px 0;

    border-bottom:
        1px solid var(--border);

    text-decoration: none;
}

.article-ranking-item:first-child {
    padding-top: 3px;
}

.article-ranking-item:last-child {
    padding-bottom: 0;

    border-bottom: 0;
}

.article-ranking-number {
    color: var(--gold);

    font-family: "Playfair Display", serif;

    font-size: 1rem;

    font-weight: 600;
}

.article-ranking-content {
    min-width: 0;
}

.article-ranking-content h4 {
    display: -webkit-box;

    overflow: hidden;

    margin: 0 0 3px;

    color: var(--navy);

    font-family: "Playfair Display", serif;

    font-size: .9rem;

    font-weight: 600;

    line-height: 1.35;

    -webkit-line-clamp: 2;

    -webkit-box-orient: vertical;

    transition: color .2s ease;
}

.article-ranking-content span {
    color: var(--muted);

    font-size: .65rem;
}

.article-ranking-arrow {
    color: var(--gold);

    font-size: .7rem;

    opacity: 0;

    transform: translateX(-4px);

    transition:
        opacity .2s ease,
        transform .2s ease;
}

.article-ranking-item:hover
.article-ranking-content h4 {
    color: var(--gold);
}

.article-ranking-item:hover
.article-ranking-arrow {
    opacity: .8;

    transform: translateX(0);
}


/* =========================================================
   SIDEBAR CTA
========================================================= */

.sidebar-cta {
    padding: 28px;
}

.sidebar-cta-icon {
    display: flex;

    align-items: center;

    justify-content: center;

    width: 42px;

    height: 42px;

    margin-bottom: 17px;

    border-radius: 50%;

    background:
        rgba(216, 181, 106, .12);

    color: var(--gold);

    font-size: 1.1rem;
}


/* =========================================================
   RECENT POSTS
========================================================= */

.recent-posts {
    display: flex;

    flex-direction: column;

    gap: 16px;
}

.recent-post {
    display: flex;

    gap: 12px;

    padding-bottom: 16px;

    border-bottom:
        1px solid var(--border);

    text-decoration: none;

    color: inherit;
}

.recent-post:last-child {
    padding-bottom: 0;

    border-bottom: 0;
}

.recent-post-image {
    width: 72px;
    height: 58px;

    flex: 0 0 72px;

    overflow: hidden;

    border-radius: 8px;

    background: var(--soft-blue);
}

.recent-post-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform .35s ease;
}

.recent-post:hover
.recent-post-image img {
    transform: scale(1.05);
}

.recent-post-content {
    min-width: 0;
}

.recent-post-category {
    display: block;

    margin-bottom: 3px;

    color: var(--gold);

    font-size: .62rem;

    font-weight: 700;

    letter-spacing: .07em;

    text-transform: uppercase;
}

.recent-post h4 {
    display: -webkit-box;

    overflow: hidden;

    margin: 0 0 4px;

    color: var(--navy);

    font-family: "Playfair Display", serif;

    font-size: .88rem;

    line-height: 1.35;

    -webkit-line-clamp: 2;

    -webkit-box-orient: vertical;
}

.recent-post:hover h4 {
    color: var(--gold);
}

.recent-post-date {
    display: block;

    color: var(--muted);

    font-size: .68rem;
}


/* =========================================================
   SIDEBAR CATEGORIES
========================================================= */

.sidebar-categories {
    margin: 0;

    padding: 0;

    list-style: none;
}

.sidebar-categories li {
    margin: 0;

    border-bottom:
        1px solid var(--border);
}

.sidebar-categories li:last-child {
    border-bottom: 0;
}

.sidebar-categories a {
    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 10px 0;

    color: var(--navy);

    font-size: .88rem;

    text-decoration: none;
}

.sidebar-categories a i {
    color: var(--gold);

    font-size: .75rem;

    opacity: .7;

    transition:
        transform .2s ease;
}

.sidebar-categories a:hover {
    color: var(--gold);
}

.sidebar-categories a:hover i {
    transform: translateX(3px);
}


/* =========================================================
   PAGINATION
========================================================= */

.blog-pagination {
    margin-top: 55px;
}

.blog-pagination .page-numbers {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-width: 42px;

    height: 42px;

    margin: 3px;

    padding: 0 12px;

    border: 1px solid var(--border);

    border-radius: 999px;

    background: var(--white);

    color: var(--navy);

    font-size: .9rem;

    font-weight: 600;
}

.blog-pagination .page-numbers.current,
.blog-pagination .page-numbers:hover {
    background: var(--navy);

    border-color: var(--navy);

    color: var(--white);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991.98px) {

    .navbar-actions {
        margin-top: 15px;

        padding-bottom: 10px;
    }


    .blog-card {
        grid-template-columns:
            300px
            minmax(0, 1fr);
    }


    .blog-card-body {
        padding: 30px;
    }


    .article-layout {
        grid-template-columns: 1fr;
    }


    .blog-sidebar {
        position: static;

        display: grid;

        grid-template-columns:
            repeat(3, minmax(0, 1fr));

        gap: 20px;

        align-items: start;
    }


    .blog-sidebar-card {
        margin-bottom: 0;
    }


    .article-card {
        padding: 40px;
    }


    .article-featured-image {
        margin:
            -40px
            -40px
            40px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767.98px) {

    .blog-hero {
        padding: 65px 0 55px;
    }


    .blog-section {
        padding: 50px 0;
    }


    .blog-card {
        grid-template-columns: 1fr;

        min-height: 0;
    }


    .blog-card-image {
        height: auto;

        min-height: 0;

        aspect-ratio: 16 / 9;
    }


    .blog-card-placeholder {
        min-height: 0;
    }


    .blog-card-body {
        padding: 25px;
    }


    .blog-card-title {
        font-size: 1.5rem;
    }


    /* Article hero */

    .article-hero {
        padding: 55px 18px 40px;
    }


    .article-hero h1 {
        font-size: 2.45rem;

        line-height: 1.08;
    }


    .article-excerpt {
        font-size: 1rem;
    }


    .article-meta {
        font-size: .74rem;
    }


    /* Article */

    .article-section {
        padding-top: 40px;
    }


    .article-card {
        padding: 25px;

        border-radius: var(--radius);
    }


    .article-featured-image {
        margin:
            -25px
            -25px
            30px;
    }


    .article-content {
        font-size: 1rem;

        line-height: 1.78;
    }


    .article-content h2 {
        margin-top: 2.5rem;

        font-size: 1.7rem;
    }


    .article-content h3 {
        font-size: 1.3rem;
    }


    /* CTA */

    .article-cta {
        margin-top: 55px;

        border-radius: 14px;
    }


    .article-cta-inner {
        padding: 43px 24px;
    }


    .article-cta h2 {
        font-size: 1.85rem;
    }


    .article-cta p {
        font-size: .9rem;
    }


    .article-cta-decoration {
        top: -20px;

        right: -30px;

        font-size: 130px;
    }


    /* Navigation */

    .article-navigation {
        grid-template-columns:
            minmax(0, 1fr)
            minmax(0, 1fr);

        gap: 20px;

        margin-top: 55px;
    }


    .article-navigation-journal {
        grid-column: 1 / -1;

        grid-row: 1;

        margin-bottom: 5px;
    }


    .article-navigation-prev {
        grid-column: 1;

        grid-row: 2;
    }


    .article-navigation-next {
        grid-column: 2;

        grid-row: 2;
    }


    .article-navigation-label {
        font-size: .66rem;
    }


    .article-navigation-title {
        font-size: .88rem;
    }


    /* Related */

    .related-posts {
        margin-top: 60px;

        padding-top: 40px;
    }


    .related-posts-header h2 {
        font-size: 1.7rem;
    }


    /* Sidebar */

    .blog-sidebar {
        display: flex;

        flex-direction: column;

        gap: 18px;
    }


    .blog-sidebar-card {
        width: 100%;
    }


    /* Navbar */

    .navbar-actions {
        flex-direction: column;

        align-items: stretch;
    }


    .navbar-actions .btn {
        text-align: center;
    }

}

/* =================================================
   FOOTER SOCIAL
================================================== */

.footer-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-top: 42px;
    padding-top: 26px;
    border-top: 1px solid rgba(255, 255, 255, .08);
}

.footer-social-label {
    color: rgba(255, 255, 255, .45);
    font-size: .72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .14em;
}

.footer-social-links {
    display: flex;
    align-items: center;
    gap: 10px;
}

    .footer-social-links a {
        width: 38px;
        height: 38px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border: 1px solid rgba(255, 255, 255, .12);
        border-radius: 50%;
        background: rgba(255, 255, 255, .025);
        color: rgba(255, 255, 255, .65);
        font-size: .95rem;
        text-decoration: none;
        transition: color .2s ease, background .2s ease, border-color .2s ease, transform .2s ease;
    }

        .footer-social-links a:hover {
            color: var(--gold);
            background: rgba(216, 181, 106, .08);
            border-color: rgba(216, 181, 106, .45);
            transform: translateY(-2px);
        }

        .footer-social-links a i {
            line-height: 1;
        }


/* Mobile */
@media (max-width: 575.98px) {

    .footer-social {
        flex-direction: column;
        gap: 12px;
        margin-top: 35px;
        padding-top: 24px;
    }

    .footer-social-links {
        gap: 12px;
    }

        .footer-social-links a {
            width: 40px;
            height: 40px;
        }
}

.cookie-settings-button {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 99998;
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    background: #17253d;
    color: #fff;
    box-shadow: 0 4px 16px rgba(0, 0, 0, .20);
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease;
}

    .cookie-settings-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(0, 0, 0, .25);
    }

    .cookie-settings-button i {
        font-size: 1.25rem;
    }

@media (max-width: 767.98px) {
    .cookie-settings-button

{
    right: 15px;
    bottom: 15px;
    width: 44px;
    height: 44px;
}

}