/* =========================================================
   BLOG - ARCHIVIO + ARTICOLO
   ========================================================= */

.blog-page,
.blog-single {
    background: #F7F5F0;
    color: #151515;
}

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

.blog-eyebrow {
    margin-bottom: 18px;
    color: #C99A3D;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
}

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

.blog-hero {
    padding: 104px 0 96px;
    color: #F7F5F0;
    background:
        radial-gradient(circle at 82% 45%, rgba(201,154,61,.10), transparent 32%),
        #090A09;
    border-bottom: 1px solid rgba(201,154,61,.22);
}

.blog-hero__inner {
    max-width: 900px;
}

.blog-hero h1 {
    margin: 0;
    color: #F7F5F0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(54px, 6vw, 84px);
    font-weight: 400;
    line-height: .99;
    letter-spacing: -.035em;
}

.blog-hero h1 span {
    color: #C99A3D;
}

.blog-hero p {
    max-width: 650px;
    margin: 30px 0 0;
    color: rgba(247,245,240,.72);
    font-size: 18px;
    line-height: 1.65;
}

/* =========================================================
   ARCHIVE GRID
   ========================================================= */

.blog-archive {
    padding: 92px 0 110px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px 24px;
}

.blog-card {
    overflow: hidden;
    background: #FBFAF7;
    border: 1px solid #E5E0D6;
    transition: transform .2s ease, border-color .2s ease;
}

.blog-card:hover {
    transform: translateY(-3px);
    border-color: rgba(201,154,61,.65);
}

.blog-card__image {
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #151614;
    text-decoration: none;
}

.blog-card__image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
}

.blog-card:hover .blog-card__image img {
    transform: scale(1.025);
}

.blog-card__placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: #C99A3D;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 28px;
    letter-spacing: .02em;
}

.blog-card__content {
    padding: 26px 24px 28px;
}

.blog-card__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 16px;
    color: #8A877F;
    font-size: 11px;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.blog-card__category {
    color: #C99A3D;
    font-weight: 700;
}

.blog-card__title {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 30px;
    font-weight: 400;
    line-height: 1.08;
    letter-spacing: -.02em;
}

.blog-card__title a {
    color: #151515;
    text-decoration: none;
}

.blog-card__excerpt {
    margin-top: 16px;
    color: #686761;
    font-size: 14px;
    line-height: 1.68;
}

.blog-card__excerpt p {
    margin: 0;
}

.blog-card__link {
    display: inline-block;
    margin-top: 24px;
    color: #151515;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .10em;
    text-decoration: none;
    text-transform: uppercase;
}

.blog-card__link::after {
    margin-left: 8px;
    color: #C99A3D;
    content: "→";
}

.blog-empty {
    padding: 50px 0;
    color: #686761;
}

/* =========================================================
   PAGINATION
   ========================================================= */

.blog-pagination {
    margin-top: 58px;
}

.blog-pagination .nav-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}

.blog-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    padding: 0 13px;
    color: #151515;
    background: #FBFAF7;
    border: 1px solid #E5E0D6;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
}

.blog-pagination .page-numbers.current,
.blog-pagination .page-numbers:hover {
    color: #090A09;
    background: #C99A3D;
    border-color: #C99A3D;
}

/* =========================================================
   SINGLE - HEADER
   ========================================================= */

.blog-article__header {
    padding: 96px 0 62px;
    color: #F7F5F0;
    background: #090A09;
}

.blog-article__header-inner {
    max-width: 940px;
    margin: 0 auto;
}

.blog-article__meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    color: rgba(247,245,240,.48);
    font-size: 11px;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.blog-article__category {
    color: #C99A3D;
    font-weight: 700;
}

.blog-article__header h1 {
    margin: 0;
    color: #F7F5F0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(48px, 5.7vw, 76px);
    font-weight: 400;
    line-height: 1.01;
    letter-spacing: -.035em;
}

.blog-article__lead {
    max-width: 780px;
    margin: 28px 0 0;
    color: rgba(247,245,240,.72);
    font-size: 19px;
    line-height: 1.65;
}

/* =========================================================
   SINGLE - FEATURED IMAGE
   ========================================================= */

.blog-article__featured {
    padding: 0 0 72px;
    background: #090A09;
}

.blog-article__featured img {
    display: block;
    width: 100%;
    max-height: 720px;
    object-fit: cover;
    border: 1px solid rgba(201,154,61,.28);
}

/* =========================================================
   SINGLE - CONTENT
   ========================================================= */

.blog-article__body {
    padding: 82px 0 100px;
}

.blog-article__content {
    max-width: 760px;
    margin: 0 auto;
    color: #2A2A28;
    font-size: 18px;
    line-height: 1.82;
}

.blog-article__content > *:first-child {
    margin-top: 0;
}

.blog-article__content p {
    margin: 0 0 26px;
}

.blog-article__content h2 {
    margin: 58px 0 20px;
    color: #151515;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 38px;
    font-weight: 400;
    line-height: 1.08;
    letter-spacing: -.02em;
}

.blog-article__content h3 {
    margin: 42px 0 16px;
    color: #151515;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 28px;
    font-weight: 400;
    line-height: 1.12;
}

.blog-article__content strong {
    color: #151515;
}

.blog-article__content a {
    color: #8A681F;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

.blog-article__content ul,
.blog-article__content ol {
    margin: 0 0 28px;
    padding-left: 24px;
}

.blog-article__content li + li {
    margin-top: 8px;
}

.blog-article__content blockquote {
    margin: 42px 0;
    padding: 6px 0 6px 28px;
    color: #45443F;
    border-left: 3px solid #C99A3D;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 25px;
    line-height: 1.45;
}

.blog-article__content img {
    max-width: 100%;
    height: auto;
}


/* =========================================================
   SINGLE - RELATED ARTICLES
   ========================================================= */

.blog-related {
    padding: 86px 0 94px;
    background: #EFECE5;
    border-top: 1px solid #E5E0D6;
}

.blog-related__heading {
    margin-bottom: 38px;
}

.blog-related__heading h2 {
    margin: 0;
    color: #151515;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(36px, 3.8vw, 52px);
    font-weight: 400;
    line-height: 1.06;
    letter-spacing: -.025em;
}

.blog-related__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.blog-related-card {
    overflow: hidden;
    background: #FBFAF7;
    border: 1px solid #E5E0D6;
    transition: transform .2s ease, border-color .2s ease;
}

.blog-related-card:hover {
    transform: translateY(-3px);
    border-color: rgba(201,154,61,.65);
}

.blog-related-card__image {
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #151614;
    text-decoration: none;
}

.blog-related-card__image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
}

.blog-related-card:hover .blog-related-card__image img {
    transform: scale(1.025);
}

.blog-related-card__placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: #C99A3D;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 24px;
}

.blog-related-card__content {
    padding: 24px 22px 26px;
}

.blog-related-card__category {
    margin-bottom: 13px;
    color: #C99A3D;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .10em;
    text-transform: uppercase;
}

.blog-related-card__title {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 27px;
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -.02em;
}

.blog-related-card__title a {
    color: #151515;
    text-decoration: none;
}

.blog-related-card__link {
    display: inline-block;
    margin-top: 22px;
    color: #151515;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .10em;
    text-decoration: none;
    text-transform: uppercase;
}

.blog-related-card__link::after {
    margin-left: 8px;
    color: #C99A3D;
    content: "→";
}

/* =========================================================
   SINGLE - CTA
   ========================================================= */

.blog-article__footer {
    padding: 76px 0;
    color: #F7F5F0;
    background: #151614;
    border-top: 1px solid rgba(201,154,61,.22);
}

.blog-article__cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.blog-article__cta h2 {
    max-width: 690px;
    margin: 0;
    color: #F7F5F0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(34px, 3.3vw, 48px);
    font-weight: 400;
    line-height: 1.07;
    letter-spacing: -.02em;
}

.blog-article__cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 24px;
    color: #090A09;
    background: #C99A3D;
    border: 1px solid #C99A3D;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .11em;
    text-decoration: none;
    text-transform: uppercase;
    white-space: nowrap;
}

.blog-article__cta-button:hover {
    color: #C99A3D;
    background: transparent;
}

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

@media (max-width: 1000px) {

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

    .blog-article__header-inner,
    .blog-article__content {
        max-width: 820px;
    }

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

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

@media (max-width: 760px) {

    .blog-hero {
        padding: 70px 0 68px;
        background: #090A09;
    }

    .blog-hero h1 {
        font-size: clamp(42px, 12vw, 56px);
        line-height: 1;
    }

    .blog-hero p {
        margin-top: 24px;
        font-size: 16px;
    }

    .blog-archive {
        padding: 58px 0 72px;
    }

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

    .blog-card__content {
        padding: 24px 20px 26px;
    }

    .blog-card__title {
        font-size: 28px;
    }

    .blog-article__header {
        padding: 68px 0 44px;
    }

    .blog-article__header h1 {
        font-size: clamp(40px, 11vw, 54px);
    }

    .blog-article__lead {
        font-size: 17px;
    }

    .blog-article__featured {
        padding-bottom: 42px;
    }
	
	.blog-article__featured .container {
    width: 100%;
    max-width: 100%;
}

.blog-article__featured img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: cover;
}

    .blog-article__body {
        padding: 58px 0 70px;
    }

    .blog-article__content {
        font-size: 17px;
        line-height: 1.76;
    }

    .blog-article__content h2 {
        margin-top: 46px;
        font-size: 32px;
    }

    .blog-article__content h3 {
        font-size: 25px;
    }

    .blog-article__content blockquote {
        margin: 34px 0;
        padding-left: 20px;
        font-size: 22px;
    }

    .blog-related {
        padding: 62px 0 68px;
    }

    .blog-related__heading {
        margin-bottom: 28px;
    }

    .blog-related__heading h2 {
        font-size: 36px;
    }

    .blog-related__grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .blog-related-card__content {
        padding: 22px 20px 24px;
    }

    .blog-related-card__title {
        font-size: 26px;
    }

    .blog-article__footer {
        padding: 58px 0;
    }

    .blog-article__cta {
        align-items: flex-start;
        flex-direction: column;
        gap: 28px;
    }

    .blog-article__cta-button {
        width: 100%;
    }
}

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

@media (max-width: 420px) {

    .blog-hero h1 {
        font-size: 39px;
    }

    .blog-card__meta {
        align-items: flex-start;
        flex-direction: column;
        gap: 6px;
    }

    .blog-article__header h1 {
        font-size: 38px;
    }

    .blog-article__content h2 {
        font-size: 30px;
    }

    .blog-related__heading h2 {
        font-size: 32px;
    }
}