.blog-page {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem 5rem;
}

.blog-hero {
    text-align: center;
    padding: 2rem 0 3rem;
    border-bottom: 1px solid var(--home-line, #e2d7ca);
    margin-bottom: 3rem;
}

.blog-kicker {
    font-size: .74rem;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--home-accent, #b98f68);
    margin-bottom: .75rem;
}

.blog-hero h1 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 300;
    letter-spacing: .04em;
    color: var(--home-text, #2f2a27);
    margin: 0 0 1rem;
}

.blog-hero p {
    font-size: 1rem;
    color: var(--home-muted, #6e625a);
    max-width: 520px;
    margin: 0 auto;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.blog-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    transition: opacity .2s ease;
}

.blog-card:hover { opacity: .8; }

.blog-card__img-wrap {
    aspect-ratio: 3 / 4;
    overflow: hidden;
    margin-bottom: 1.25rem;
}

.blog-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    display: block;
}

.blog-card__text {
    border-bottom: 1px solid var(--home-line, #e2d7ca);
    padding-bottom: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-card__category {
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--home-accent, #b98f68);
    margin-bottom: .6rem;
}

.blog-card__title {
    font-family: 'Cormorant Infant', Georgia, serif;
    font-size: clamp(1.15rem, 1.8vw, 1.4rem);
    font-weight: 400;
    line-height: 1.25;
    color: var(--home-text, #2f2a27);
    margin: 0 0 .75rem;
}

.blog-card__excerpt {
    font-size: .88rem;
    line-height: 1.6;
    color: var(--home-muted, #6e625a);
    margin: 0 0 1rem;
    flex: 1;
}

.blog-card__meta {
    font-size: .72rem;
    color: var(--home-muted, #6e625a);
    letter-spacing: .04em;
    display: flex;
    gap: .75rem;
}

.blog-card__meta span::before {
    content: '·';
    margin-right: .75rem;
}

.blog-card__meta span:first-child::before { content: ''; margin: 0; }

@media (max-width: 768px) {
    .blog-grid { grid-template-columns: 1fr; gap: 0; }
    .blog-card { padding: 1.5rem 0; }
}

/* ─── Article page ───────────────────────────────────────── */

.blog-article {
    max-width: 960px;
    margin: 0 auto;
    padding: 3rem 1.5rem 5rem;
}

/* Text content stays at comfortable reading width, centered */
.blog-article__back,
.blog-article__category,
.blog-article h1,
.blog-article__meta,
.blog-article__body > h2,
.blog-article__body > p,
.blog-article__body > ul {
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

.blog-article__back {
    display: block;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--home-accent, #b98f68);
    text-decoration: none;
    margin-bottom: 2.5rem;
}

.blog-article__back::before { content: '← '; }

.blog-article__category {
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--home-accent, #b98f68);
    margin-bottom: .75rem;
}

.blog-article h1 {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 300;
    line-height: 1.15;
    letter-spacing: .02em;
    color: var(--home-text, #2f2a27);
    margin: 0 0 1rem;
}

.blog-article__meta {
    font-size: .78rem;
    color: var(--home-muted, #6e625a);
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--home-line, #e2d7ca);
    display: flex;
    gap: 1rem;
}

.blog-article__body h2 {
    font-family: 'Cormorant Infant', Georgia, serif;
    font-size: clamp(1.3rem, 2.5vw, 1.7rem);
    font-weight: 400;
    color: var(--home-text, #2f2a27);
    margin: 2.5rem auto .75rem;
}

.blog-article__body p {
    font-size: 1rem;
    line-height: 1.75;
    color: #3b3530;
    margin: 0 auto 1.25rem;
}

.blog-article__body ul {
    margin: 0 auto 1.25rem;
    padding: 0 0 0 1.2rem;
}

.blog-article__body li {
    font-size: 1rem;
    line-height: 1.75;
    color: #3b3530;
    margin-bottom: .4rem;
}

.blog-article__cta {
    max-width: 680px;
    margin: 3rem auto 0;
    padding: 2rem;
    background: var(--home-soft, #eee5da);
    text-align: center;
}

.blog-article__cta p {
    font-size: 1rem;
    color: var(--home-text, #2f2a27);
    margin-bottom: 1rem;
}

.blog-article__cta a {
    display: inline-block;
    background: var(--home-accent, #b98f68);
    color: #fff;
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    text-decoration: none;
    padding: .85rem 1.75rem;
}

/* ─── Images: full 960px width, break out of text column ─── */

.blog-article__hero {
    aspect-ratio: 3 / 2;
    overflow: hidden;
    margin: 0 0 3rem;
}

.blog-article__hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    display: block;
}

.blog-pair {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin: 3rem 0;
}

.blog-pair__img {
    aspect-ratio: 2 / 3;
    overflow: hidden;
}

.blog-pair__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    display: block;
}

.blog-single {
    aspect-ratio: 3 / 2;
    overflow: hidden;
    margin: 3rem 0;
}

.blog-single img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    display: block;
}

@media (max-width: 640px) {
    .blog-pair { grid-template-columns: 1fr; gap: 0.75rem; }
    .blog-pair__img { aspect-ratio: 4 / 5; }
}
