/* Finished blog page — locked layout, fill text/images only */
body.fg-blog-page-body .main.site-blog-content,
body.fg-blog-page-body .hero.site-blog-content {
    max-width: none;
    padding: 0;
    width: 100%;
}

.fg-blog-page {
    color: #1c1c1c;
    background: #f4f1ea;
}

.fg-blog-hero {
    position: relative;
    min-height: min(78vh, 46rem);
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    color: #fff;
}

.fg-blog-band-media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.fg-blog-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(20, 24, 18, 0.15) 0%, rgba(20, 24, 18, 0.55) 100%);
    pointer-events: none;
}

.fg-blog-compose-link {
    margin: 0.85rem 0 0;
}

.fg-blog-compose-link .btn {
    display: inline-flex;
}

.fg-blog-compose-wrap {
    width: min(40rem, calc(100% - 2rem));
    margin: 0 auto 2rem;
}

.fg-blog-hero-inner {
    position: relative;
    z-index: 1;
    width: min(52rem, calc(100% - 2.5rem));
    margin: 0 auto 3.5rem;
    padding: 0 0.25rem;
}

.fg-blog-page-title {
    margin: 0 0 0.7rem;
    font-size: clamp(2.1rem, 5vw, 3.4rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.12;
}

.fg-blog-page-bio {
    margin: 0;
    max-width: 36rem;
    font-size: 1.08rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.92);
}

.fg-blog-band {
    width: min(72rem, calc(100% - 2rem));
    margin: 0 auto;
    padding: 2.25rem 0 2.75rem;
}

.fg-blog-photo-band {
    position: relative;
    height: min(42vh, 22rem);
    overflow: hidden;
}

.fg-blog-rows {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

.fg-blog-quad {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

.fg-blog-split {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

.fg-blog-split-side {
    display: grid;
    gap: 1.25rem;
}

.fg-blog-slot {
    background: #fff;
    border: 1px solid #e4dfd4;
    min-height: 100%;
    min-width: 0;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.fg-blog-slot-link {
    display: flex;
    flex-direction: column;
    flex: 1;
    color: inherit;
    text-decoration: none;
}

.fg-blog-slot-img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    background: #d9d3c6;
}

.fg-blog-slot.is-large .fg-blog-slot-img {
    aspect-ratio: 4 / 5;
}

.fg-blog-slot-body {
    padding: 0.85rem 1rem 1.1rem;
}

.fg-blog-slot-date {
    margin: 0 0 0.35rem;
    font-size: 0.78rem;
    color: #8a8478;
}

.fg-blog-slot-title {
    margin: 0 0 0.4rem;
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.28;
    letter-spacing: -0.02em;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    word-break: break-word;
    overflow-wrap: anywhere;
}

.fg-blog-slot-excerpt {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.45;
    color: #5c574e;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@media (min-width: 700px) {
    .fg-blog-rows {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .fg-blog-quad {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .fg-blog-split {
        grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
        align-items: stretch;
    }
}

@media (min-width: 980px) {
    .fg-blog-rows {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}
