/* Blog-specific Variables - inheriting from globals.css */
:root {
    /* Editorial-inspired spacing and dimensions */
    --blog-max-width: 98%;
    --blog-padding: 0;
    --blog-gap: 1em;
    --transition: all 0.2s ease-in-out;
    
    /* Editorial typography weights */
    --font-weight-light: 300;
    --font-weight-normal: 400;
    --font-weight-bold: 600;
    --font-weight-black: 900;
    
    /* Editorial specific */
    --editorial-border: solid 1px rgba(210, 215, 217, 0.75);
    --editorial-red: #f56a6a;
}

/* Font Face Declarations - Editorial Template Fonts */
@font-face {
    font-family: 'Open Sans';
    src: url('../fonts/Roboto-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Open Sans';
    src: url('../fonts/Roboto-Bold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto Slab';
    src: url('../fonts/Roboto-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

/* FontAwesome Icons */
@font-face {
    font-family: 'Font Awesome 5 Free';
    src: url('../fonts/fa-solid-900.woff2') format('woff2'),
         url('../fonts/fa-solid-900.woff') format('woff'),
         url('../fonts/fa-solid-900.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: 'Font Awesome 5 Free';
    src: url('../fonts/fa-regular-400.woff2') format('woff2'),
         url('../fonts/fa-regular-400.woff') format('woff'),
         url('../fonts/fa-regular-400.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Font Awesome 5 Brands';
    src: url('../fonts/fa-brands-400.woff2') format('woff2'),
         url('../fonts/fa-brands-400.woff') format('woff'),
         url('../fonts/fa-brands-400.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

/* Reset and Base Styles */
* {
    box-sizing: border-box;
}

/* Editorial Typography - Body Text */
body, input, select, textarea {
    color: #7f888f;
    font-family: "Open Sans", sans-serif;
    font-size: 13pt;
    font-weight: 400;
    line-height: 1.65;
}

@media screen and (max-width: 1680px) {
    body, input, select, textarea {
        font-size: 11pt;
    }
}

@media screen and (max-width: 1280px) {
    body, input, select, textarea {
        font-size: 10pt;
    }
}

@media screen and (max-width: 360px) {
    body, input, select, textarea {
        font-size: 9pt;
    }
}

/* Editorial Typography - Headings */
h1, h2, h3, h4, h5, h6 {
    color: #3d4449;
    font-family: "Roboto Slab", serif;
    font-weight: 700;
    line-height: 1.5;
    margin: 0 0 1em 0;
}

h1, h2, h3, h4, h5, h6 a {
    color: inherit;
    text-decoration: none;
    border-bottom: 0;
}

h1 {
    font-size: 4em;
    margin: 0 0 0.5em 0;
    line-height: 1.3;
}

h2 {
    font-size: 1.75em;
}

h3 {
    font-size: 1.25em;
}

h4 {
    font-size: 1.1em;
}

h5 {
    font-size: 0.9em;
}

h6 {
    font-size: 0.7em;
}

@media screen and (max-width: 1680px) {
    h1 {
        font-size: 3.5em;
    }
}

@media screen and (max-width: 980px) {
    h1 {
        font-size: 3.25em;
    }
}

@media screen and (max-width: 736px) {
    h1 {
        font-size: 2em;
        line-height: 1.4;
    }
    h2 {
        font-size: 1.5em;
    }
}

/* Editorial Typography - Links and Text */
a {
    -moz-transition: color 0.2s ease-in-out, border-bottom-color 0.2s ease-in-out;
    -webkit-transition: color 0.2s ease-in-out, border-bottom-color 0.2s ease-in-out;
    -ms-transition: color 0.2s ease-in-out, border-bottom-color 0.2s ease-in-out;
    transition: color 0.2s ease-in-out, border-bottom-color 0.2s ease-in-out;
    border-bottom: dotted 1px;
    color: var-(ditorial-red);
    text-decoration: none;
}

a:hover {
    border-bottom-color: #f56a6a;
    color: #f56a6a !important;
}

a:hover strong {
    color: inherit;
}

strong, b {
    color: #3d4449;
    font-weight: 600;
}

em, i {
    font-style: italic;
}

p {
    margin: 0 0 2em 0;
}

/* Main Blog Container */
.blog-container {
    max-width: var(--blog-max-width);
    margin: 0 auto;
    padding: 0; /*0 var(--blog-padding) 0.1em var(--blog-padding) */
}

/* Featured Post Banner */
.featured-post-banner {
    margin: 0 0 6em 0;
    padding: 6em 0 4em 0;
    border-top: solid 2px rgba(210, 215, 217, 0.75);
}

.featured-post-banner .inner {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 4em;
    max-width: var(--blog-max-width);
    margin: 0 auto;
}

.featured-post-content {
    flex: 1;
    min-width: 0;
}

.featured-post-content header {
    margin: 0;
    padding: 0;
}

.featured-post-content header h2 {
    font-family: "Roboto Slab", serif;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.3;
    color: #3d4449;
    margin: 0 0 1rem 0;
    padding: 0;
    text-align: left;
}

.featured-post-content header h2 a {
    color: inherit;
    text-decoration: none;
    border-bottom: 0;
}

.featured-post-content header h2 a:hover {
    color: var(--accent-primary);
}

.featured-post-meta {
    font-family: "Open Sans", sans-serif;
    font-size: 0.9em;
    font-weight: 400;
    letter-spacing: 0.075em;
    text-transform: uppercase;
    color: #7f888f;
    margin: 0 0 1.5em 0;
    padding: 0;
    line-height: 1.5;
    text-indent: 0;
    list-style: none;
}

.featured-post-meta span {
    display: block;
    margin: 0 0 0.25em 0;
    padding: 0;
    text-indent: 0;
    list-style: none;
}

.featured-post-meta span:last-child {
    margin-bottom: 0;
}

.featured-post-meta i {
    margin-right: 0.5em;
    margin-left: 0;
    padding: 0;
    display: inline-block;
    width: 1em;
    text-align: left;
}

.featured-post-content p {
    margin: 0 0 2em 0;
    font-size: 1rem;
    line-height: 1.75;
}

.featured-post-image {
    flex: 0 0 400px;
    position: relative;
}

.featured-post-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0;
    transition: var(--transition);
}

.featured-post-image:hover img {
    opacity: 0.875;
}

/* Buttons - Editorial Style - Only for blog pages */
.blog-container .button,
.featured-post-banner .button,
.posts-section .button,
.post-card .button {
    -moz-appearance: none;
    -webkit-appearance: none;
    -ms-appearance: none;
    appearance: none;
    background-color: transparent;
    border-radius: 0.375em;
    border: 0;
    box-shadow: inset 0 0 0 2px var(--accent-primary);
    color: var(--accent-primary) !important;
    cursor: pointer;
    display: inline-block;
    font-family: "Open Sans", sans-serif;
    font-size: 0.8em;
    font-weight: 700;
    height: 3.5em;
    letter-spacing: 0.075em;
    line-height: 3.5em;
    padding: 0 2.25em;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    white-space: nowrap;
    transition: var(--transition);
}

.blog-container .button:hover,
.featured-post-banner .button:hover,
.posts-section .button:hover,
.post-card .button:hover {
    background-color: rgba(229, 25, 83, 0.05);
    transform: none;
}

.blog-container .button.big,
.featured-post-banner .button.big,
.posts-section .button.big,
.post-card .button.big {
    font-size: 1em;
    height: 3.65em;
    line-height: 3.65em;
}

/* Secondary Button Style - Green - Only for blog pages */
.blog-container .button.secondary,
.featured-post-banner .button.secondary,
.posts-section .button.secondary,
.post-card .button.secondary {
    box-shadow: inset 0 0 0 2px var(--primary-color);
    color: var(--primary-color) !important;
}

.blog-container .button.secondary:hover,
.featured-post-banner .button.secondary:hover,
.posts-section .button.secondary:hover,
.post-card .button.secondary:hover {
    background-color: rgba(12, 58, 40, 0.05);
}

/* Posts Section */
.posts-section {
    margin: 0 0 4em 0;
}

.posts-section header.major {
    margin: 0 0 2em 0;
}

.posts-section header.major h2 {
    font-family: "Roboto Slab", serif;
    font-size: 2rem;
    font-weight: 700;
    color: #3d4449;
    margin: 0 0 0.8em 0;
    text-align: left;
    position: relative;
    display: inline-block;
    border-bottom: solid 3px #f56a6a;
    padding: 0 0.75em 0.5em 0;
}

/* Posts Grid - 3 Column Layout */
.posts {
    display: flex;
    flex-wrap: wrap;
    margin: 0 0 2em -6em;
    width: calc(100% + 6em);
}

.post-card {
    flex-grow: 0;
    flex-shrink: 1;
    margin: 0 0 6em 6em;
    position: relative;
    width: calc(33.33333% - 6em);
    transition: var(--transition);
}

/* Editorial Grid Lines */
.post-card:before {
    background: rgba(210, 215, 217, 0.75);
    content: '';
    display: block;
    height: calc(100% + 6em);
    left: -3em;
    position: absolute;
    top: 0;
    width: 1px;
}

.post-card:after {
    background: rgba(210, 215, 217, 0.75);
    bottom: -3em;
    content: '';
    display: block;
    height: 1px;
    position: absolute;
    right: 0;
    width: calc(100% + 6em);
}

/* Hide first column borders */
.post-card:nth-child(3n + 1):before {
    display: none;
}

.post-card:nth-child(3n + 1):after {
    width: 100%;
}

/* Hide last row borders */
.post-card:nth-last-child(1),
.post-card:nth-last-child(2),
.post-card:nth-last-child(3) {
    margin-bottom: 0;
}

.post-card:nth-last-child(1):before,
.post-card:nth-last-child(2):before,
.post-card:nth-last-child(3):before {
    height: 100%;
}

.post-card:nth-last-child(1):after,
.post-card:nth-last-child(2):after,
.post-card:nth-last-child(3):after {
    display: none;
}

.post-card .image {
    display: block;
    margin: 0 0 2em 0;
    position: relative;
}

.post-card .image img {
    display: block;
    width: 100%;
    height: auto;
    transition: var(--transition);
}

.post-card:hover .image img {
    opacity: 0.875;
}

.post-card .content {
    padding: 0;
}

.post-card .content header {
    margin: 0;
    padding: 0;
}

.post-card .content h3 {
    font-family: "Roboto Slab", serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #3d4449;
    margin: 0 0 1rem 0;
    padding: 0;
    line-height: 1.3;
}

.post-card .content h3 a {
    color: inherit;
    text-decoration: none;
    border-bottom: 0;
}

.post-card .content h3 a:hover {
    color: var(--accent-primary);
}

.post-card .content .post-meta {
    font-family: "Open Sans", sans-serif;
    font-size: 0.8em;
    font-weight: 400;
    letter-spacing: 0.075em;
    text-transform: uppercase;
    color: #7f888f;
    margin: 0 0 1.5em 0;
    padding: 0;
    line-height: 1.5;
    text-indent: 0;
    list-style: none;
}

.post-card .content .post-meta span {
    display: block;
    margin: 0 0 0.25em 0;
    padding: 0;
    text-indent: 0;
    list-style: none;
}

.post-card .content .post-meta span:last-child {
    margin-bottom: 0;
}

.post-card .content .post-meta i {
    margin-right: 0.5em;
    margin-left: 0;
    padding: 0;
    display: inline-block;
    width: 1em;
    text-align: left;
}

.post-card .content p {
    margin: 0 0 1.5em 0;
    padding: 0;
    line-height: 1.75;
}

.post-card .content .actions {
    margin: 0;
    padding: 0;
}

/* No Posts Message */
.no-posts {
    text-align: center;
    padding: 4em 0;
    color: var(--text-light);
}

.no-posts h2 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin: 0 0 1rem 0;
}

.no-posts p {
    font-size: 1rem;
    margin: 0;
}

/* Responsive Design */
@media screen and (max-width: 1680px) {
    :root {
        --blog-padding: 5em;
        --blog-gap: 5em;
    }
    
    .featured-post-banner {
        padding: 5em 0 3em 0;
    }
    
    .posts {
        margin: 0 0 2em 0;
        width: 100%;
    }
    
    .post-card {
        width: calc(50% - 6em);
        margin: 0 0 6em 6em;
    }
    
    .post-card:nth-child(2n + 1):before {
        display: none;
    }
    
    .post-card:nth-child(2n + 1):after {
        width: 100%;
    }
    
    .post-card:nth-last-child(1),
    .post-card:nth-last-child(2) {
        margin-bottom: 0;
    }
    
    .post-card:nth-last-child(1):before,
    .post-card:nth-last-child(2):before {
        height: 100%;
    }
    
    .post-card:nth-last-child(1):after,
    .post-card:nth-last-child(2):after {
        display: none;
    }
}

@media screen and (max-width: 1280px) {
    :root {
        --blog-padding: 4em;
        --blog-gap: 4em;
    }
    
    .featured-post-banner {
        padding: 4em 0 2em 0;
    }
}

@media screen and (max-width: 980px) {
    .featured-post-content header h2 {
        font-size: 2rem;
    }
    
    .posts-section header.major h2 {
        font-size: 1.75rem;
    }
}

@media screen and (max-width: 736px) {
    :root {
        --blog-padding: 2em;
        --blog-gap: 2em;
    }
    
    .featured-post-banner {
        padding: 3em 0 1em 0;
    }
    
    .featured-post-banner .inner {
        flex-direction: column;
        gap: 2em;
    }
    
    .featured-post-image {
        flex: none;
        width: 100%;
    }
    
    .featured-post-content header h2 {
        font-size: 1.75rem;
    }
    
    .posts-section header.major h2 {
        font-size: 1.5rem;
    }
    
    .posts {
        margin: 0 0 2em -4.5em;
        width: calc(100% + 4.5em);
    }
    
    .post-card {
        margin: 0 0 4.5em 4.5em;
        width: calc(50% - 4.5em);
    }
    
    .post-card:before {
        height: calc(100% + 4.5em);
        left: -2.25em;
    }
    
    .post-card:after {
        bottom: -2.25em;
        width: calc(100% + 4.5em);
    }
    
    .post-card .content {
        padding: 0;
    }
}

@media screen and (max-width: 480px) {
    .featured-post-content header h2 {
        font-size: 1.5rem;
    }
    
    .posts-section header.major h2 {
        font-size: 1.25rem;
    }
    
    .posts {
        margin: 0;
        width: 100%;
    }
    
    .post-card {
        margin: 0 0 4.5em 0;
        width: 100%;
    }
    
    .post-card:before {
        display: none;
    }
    
    .post-card:after {
        width: 100%;
    }
    
    .post-card:last-child {
        margin-bottom: 0;
    }
    
    .post-card:last-child:after {
        display: none;
    }
    
    .blog-container .button,
    .featured-post-banner .button,
    .posts-section .button,
    .post-card .button {
        font-size: 0.7em;
        height: 3em;
        line-height: 3em;
        padding: 0 1.5em;
    }
    
    .blog-container .button.big,
    .featured-post-banner .button.big,
    .posts-section .button.big,
    .post-card .button.big {
        font-size: 0.8em;
        height: 3.25em;
        line-height: 3.25em;
    }
}

/* Individual Blog Post Styles moved to blog-post.css */
/* This section intentionally left empty - post styles are now in blog-post.css */

/* Social Media Buttons moved to blog-post.css */
/* This section intentionally left empty - social media styles are now in blog-post.css */

/* ============================================================
   Blog Index – Magazine Grid (Hero + Band-of-3 Rhythm)
   ============================================================ */

.blog-index {
    max-width: 1380px;
    margin: 0 auto;
    padding: 0 2.5rem 5rem;
}

/* ── Page Header ── */
.blog-index__header {
    text-align: center;
    padding: 3.5rem 0 3rem;
    margin-bottom: 3rem;
    border-bottom: 1px solid rgba(210, 215, 217, 0.75);
}

.blog-index__title {
    font-family: "Roboto Slab", serif;
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 0 0.5rem;
    line-height: 1.2;
}

.blog-index__subtitle {
    color: #9aa0a7;
    font-size: 1rem;
    font-style: italic;
    margin: 0;
}

/* ── Grid ──
   3-column grid. Every 4th tile starting from the 1st (nth-child 4n+1)
   becomes a full-width hero that spans all columns.
   The remaining tiles form neat bands of 3 per row.             */
.blog-masonry {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: auto;
    gap: 1.75rem;
}

/* ── Base Tile ── */
.blog-tile {
    background: #ffffff;
    border: 1px solid rgba(210, 215, 217, 0.65);
    overflow: hidden;
    min-height: 300px;
    transition: box-shadow 0.22s ease, transform 0.22s ease;
}

/* Alternating backgrounds: every other tile gets a warm off-white */
.blog-tile:nth-child(even) {
    background: #f8f5f0;
}

.blog-tile:not(.blog-tile--teaser):hover {
    box-shadow: 0 10px 38px rgba(0, 0, 0, 0.09);
    transform: translateY(-3px);
}

/* ── Hero Tile (positions 1, 5, 9, …) ──
   Full-width horizontal card: image/panel left ~48%, body right. */
.blog-tile:nth-child(4n+1) {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: row;
    min-height: 340px;
}

/* Image link fills left side of hero */
.blog-tile:nth-child(4n+1) .blog-tile__img-link {
    flex: 0 0 48%;
    overflow: hidden;
    line-height: 0;
    border-bottom: 0;
}

.blog-tile:nth-child(4n+1) .blog-tile__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease, opacity 0.22s ease;
}

/* Color panel fills left side of hero (teasers) */
.blog-tile:nth-child(4n+1) .blog-tile__color-panel {
    flex: 0 0 48%;
    height: auto;
    min-height: 340px;
}

/* Hero body: right side, vertically centered */
.blog-tile:nth-child(4n+1) .blog-tile__body {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2.25rem 2.75rem;
    overflow: hidden;
}

.blog-tile:nth-child(4n+1) .blog-tile__title {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.blog-tile:nth-child(4n+1) .blog-tile__excerpt {
    -webkit-line-clamp: 5;
    font-size: 0.92rem;
}

/* ── Image (standard small tiles — image on top) ── */
.blog-tile__img-link {
    display: block;
    overflow: hidden;
    line-height: 0;
    border-bottom: 0;
}

/* Small tile image (not a hero) */
.blog-tile:not(:nth-child(4n+1)) .blog-tile__img {
    width: 100%;
    height: 195px;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease, opacity 0.22s ease;
}

.blog-tile:not(.blog-tile--teaser):hover .blog-tile__img {
    transform: scale(1.04);
    opacity: 0.88;
}

/* ── Color Panel (teaser image placeholder) ── */
.blog-tile__color-panel {
    height: 190px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}

/* "COMING SOON" watermark */
.blog-tile__color-panel::after {
    content: 'COMING SOON';
    font-family: "Open Sans", sans-serif;
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    color: rgba(255, 255, 255, 0.38);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.45em 1.25em;
    text-transform: uppercase;
    pointer-events: none;
}

/* ── Card Body (small tiles) ── */
.blog-tile__body {
    padding: 1.25rem 1.4rem 1.5rem;
    overflow: hidden;
}

/* ── Tags ── */
.blog-tile__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    margin-bottom: 0.65rem;
}

.blog-tile__tag {
    background: var(--primary-light, #e6f3f0);
    color: var(--primary-color, #0c3a28);
    font-size: 0.67rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.2em 0.6em;
    text-decoration: none;
    border: 0;
    transition: background 0.18s ease, color 0.18s ease;
}

.blog-tile__tag:not(.blog-tile__tag--plain):hover {
    background: var(--primary-color, #0c3a28);
    color: #fff !important;
    border: 0;
}

.blog-tile__tag--plain {
    cursor: default;
}

/* ── Title ── */
.blog-tile__title {
    font-family: "Roboto Slab", serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #3d4449;
    margin: 0 0 0.6rem;
    line-height: 1.35;
}

.blog-tile__title a {
    color: inherit;
    text-decoration: none;
    border-bottom: 0;
    transition: color 0.2s ease;
}

.blog-tile__title a:hover {
    color: var(--accent-primary, #e51953) !important;
    border-bottom: 0;
}

/* ── Excerpt ── */
.blog-tile__excerpt {
    color: #7f888f;
    font-size: 0.86rem;
    line-height: 1.65;
    margin: 0 0 0.85rem;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ── Meta Row ── */
.blog-tile__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    align-items: center;
    font-size: 0.7rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #b8bfc4;
    margin-bottom: 0.85rem;
}

.blog-tile__meta i {
    margin-right: 0.3em;
}

/* ── Read More ── */
.blog-tile__more {
    display: inline-block;
    font-size: 0.73rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent-primary, #e51953) !important;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s ease;
    padding-bottom: 1px;
}

.blog-tile__more:hover {
    border-bottom-color: var(--accent-primary, #e51953);
    color: var(--accent-primary, #e51953) !important;
}

/* ── Coming-Soon Badge ── */
.blog-tile__coming-badge {
    display: inline-block;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #a0a8ae;
    border: 1.5px solid rgba(160, 168, 174, 0.45);
    padding: 0.3em 0.85em;
    cursor: default;
    user-select: none;
}

/* ── Teaser tile ── */
.blog-tile--teaser {
    opacity: 0.84;
    cursor: default;
}

.blog-tile--teaser:hover {
    transform: none !important;
    box-shadow: none !important;
}

/* ── No-posts note ── */
.blog-empty-note {
    text-align: center;
    padding: 3rem 0 1rem;
    color: #9aa0a7;
    font-style: italic;
    font-size: 0.9rem;
}

/* ── Responsive ── */
@media screen and (max-width: 1280px) {
    .blog-index {
        padding: 0 2rem 4rem;
    }
}

/* Tablet: 2-column grid; heroes still span full width */
@media screen and (max-width: 980px) {
    .blog-masonry {
        grid-template-columns: repeat(2, 1fr);
    }

    .blog-index__title {
        font-size: 2.25rem;
    }

    .blog-tile:nth-child(4n+1) .blog-tile__title {
        font-size: 1.6rem;
    }
}

/* Mobile: single column, heroes go stacked (image on top, body below) */
@media screen and (max-width: 640px) {
    .blog-index {
        padding: 0 1rem 3rem;
    }

    .blog-index__header {
        padding: 2.5rem 0 2rem;
        margin-bottom: 2rem;
    }

    .blog-index__title {
        font-size: 1.9rem;
    }

    .blog-masonry {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .blog-tile:nth-child(4n+1) {
        display: block;
        min-height: unset;
    }

    .blog-tile:nth-child(4n+1) .blog-tile__img-link {
        flex: none;
        width: 100%;
    }

    .blog-tile:nth-child(4n+1) .blog-tile__img {
        height: 220px;
    }

    .blog-tile:nth-child(4n+1) .blog-tile__color-panel {
        flex: none;
        width: 100%;
        height: 190px;
        min-height: unset;
    }

    .blog-tile:nth-child(4n+1) .blog-tile__body {
        padding: 1.25rem 1.4rem 1.5rem;
    }

    .blog-tile:nth-child(4n+1) .blog-tile__title {
        font-size: 1.3rem;
    }

    .blog-tile:nth-child(4n+1) .blog-tile__excerpt {
        -webkit-line-clamp: 4;
        font-size: 0.86rem;
    }
}

