body.blog .newsletter,
body.category .newsletter,
body.tag .newsletter,
body.single-post .newsletter {
    display: none;
}

.blog-page {
    padding: 18px 0 48px;
}

.blog-crumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    margin-bottom: 18px;
    color: #8a7b6c;
    font-size: 13px;
    font-weight: 600;
}

.blog-crumb svg {
    width: 14px;
    height: 14px;
    transform: scaleX(-1);
    opacity: .7;
    flex: none;
}

.blog-crumb strong {
    color: var(--ink);
}

.blog-hero {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 22px;
    padding: 28px 32px;
    background: #fff;
    border-radius: 28px;
    box-shadow: var(--shadow);
}

.blog-hero p {
    margin: 0 0 6px;
    color: var(--gold-dark);
    font-weight: 800;
}

.blog-hero h1 {
    margin: 0 0 8px;
    font-size: clamp(1.45rem, 3vw, 2.1rem);
    line-height: 1.35;
}

.blog-hero span {
    display: block;
    max-width: 42em;
    color: var(--muted);
    font-weight: 600;
    line-height: 1.8;
}

.blog-hero em {
    flex: none;
    display: grid;
    place-items: center;
    min-width: 86px;
    min-height: 86px;
    padding: 10px;
    border-radius: 24px;
    background: var(--gold-soft);
    color: var(--gold-dark);
    font-style: normal;
    font-weight: 800;
    text-align: center;
    line-height: 1.35;
}

.blog-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 22px;
    align-items: start;
}

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

.blog-card {
    display: grid;
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform .18s ease, box-shadow .18s ease;
}

.blog-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 36px rgba(80, 58, 32, 0.12);
}

.blog-card.is-featured {
    grid-column: 1 / -1;
    grid-template-columns: minmax(220px, .92fr) minmax(0, 1.08fr);
}

.blog-card-media {
    display: block;
    min-height: 210px;
    background: #f3ebe0;
}

.blog-card-media img,
.blog-entry-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.blog-card-media img {
    min-height: 210px;
    max-height: 260px;
}

.blog-card.is-featured .blog-card-media img {
    min-height: 100%;
    max-height: none;
    height: 100%;
}

.blog-card-body {
    display: grid;
    align-content: start;
    gap: 10px;
    padding: 18px 18px 20px;
}

.blog-card-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 12px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
}

.blog-card-meta span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.blog-card-meta svg {
    width: 14px;
    height: 14px;
}

.blog-tag {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    background: var(--gold-soft);
    color: var(--gold-dark);
    font-size: 12px;
    font-weight: 800;
}

.blog-card h2,
.blog-entry h1 {
    margin: 0;
    font-size: 1.15rem;
    line-height: 1.5;
}

.blog-card.is-featured h2 {
    font-size: clamp(1.25rem, 2vw, 1.7rem);
}

.blog-card p,
.blog-entry-content p {
    margin: 0;
    color: var(--muted);
    font-weight: 600;
    line-height: 1.8;
}

.blog-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 4px;
    color: var(--gold-dark);
    font-weight: 800;
}

.blog-more svg {
    width: 16px;
    height: 16px;
    transform: scaleX(-1);
}

.blog-side {
    display: grid;
    gap: 14px;
}

.blog-widget {
    padding: 18px;
    background: #fff;
    border-radius: 24px;
    box-shadow: var(--shadow);
}

.blog-widget-contact {
    position: sticky;
    top: 110px;
}

.admin-bar .blog-widget-contact {
    top: 142px;
}

.blog-widget h2 {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 14px;
    font-size: 16px;
}

.blog-widget h2 svg {
    width: 18px;
    height: 18px;
    color: var(--gold-dark);
}

.blog-widget ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 10px;
}

.blog-widget-icon {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border-radius: 14px;
    background: var(--gold-soft);
    color: var(--gold-dark);
    flex: none;
}

.blog-widget-icon svg {
    width: 18px;
    height: 18px;
}

.blog-widget-contact > ul a,
.blog-widget-contact > ul div,
.blog-facts li,
.blog-mini a,
.blog-cats a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: inherit;
}

.blog-widget strong,
.blog-mini strong {
    display: block;
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
}

.blog-widget b,
.blog-mini strong {
    color: var(--ink);
    font-size: 14px;
    font-weight: 800;
    line-height: 1.5;
}

.blog-widget-contact .btn-gold {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    margin-top: 14px;
    min-height: 46px;
}

.blog-widget-contact .btn-gold svg {
    width: 18px;
    height: 18px;
}

.blog-cats a {
    justify-content: space-between;
    padding: 10px 12px;
    border-radius: 14px;
    background: var(--cream-2);
    font-weight: 800;
}

.blog-cats em {
    color: var(--gold-dark);
    font-style: normal;
}

.blog-mini img {
    width: 64px;
    height: 64px;
    object-fit: cover;
    border-radius: 14px;
    flex: none;
}

.blog-mini time {
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
}

.blog-entry {
    padding: 28px;
    background: #fff;
    border-radius: 28px;
    box-shadow: var(--shadow);
}

.blog-entry h1 {
    margin: 12px 0 18px;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.blog-entry-media {
    margin: 0 0 22px;
    border-radius: 22px;
    overflow: hidden;
    max-height: 420px;
}

.blog-entry-content {
    display: grid;
    gap: 14px;
    font-size: 16.5px;
    line-height: 1.95;
}

.blog-page .navigation.pagination {
    margin-top: 22px;
}

.blog-page .nav-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
}

.blog-page .page-numbers {
    display: grid;
    place-items: center;
    min-width: 38px;
    height: 38px;
    padding: 0 10px;
    border-radius: 10px;
    background: #fff;
    box-shadow: var(--shadow);
    font-weight: 700;
}

.blog-page .page-numbers.current {
    background: var(--gold);
    color: #fff;
}

@media (max-width: 1100px) {
    .blog-layout {
        grid-template-columns: minmax(0, 1fr) 280px;
        gap: 16px;
    }

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

    .blog-card.is-featured {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 899px) {
    .blog-layout {
        grid-template-columns: 1fr;
    }

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

    .blog-widget-contact {
        position: static;
        top: auto;
    }

    .blog-hero {
        padding: 22px 18px;
        align-items: start;
    }

    .blog-hero em {
        min-width: 72px;
        min-height: 72px;
        border-radius: 18px;
        font-size: 13px;
    }

    .blog-entry {
        padding: 20px 16px 24px;
    }
}

@media (max-width: 820px) {
    body.blog,
    body.category,
    body.single-post {
        padding-bottom: calc(var(--tabbar-height) + var(--safe-bottom) + 12px);
    }

    .blog-side {
        display: grid;
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .blog-hero {
        flex-direction: column;
        border-radius: 22px;
    }

    .blog-hero em {
        align-self: stretch;
        min-height: 48px;
    }

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

    .blog-card,
    .blog-widget,
    .blog-entry {
        border-radius: 20px;
    }

    .blog-card-media,
    .blog-card-media img {
        min-height: 180px;
        max-height: 200px;
    }

    .blog-card-body {
        padding: 14px 14px 16px;
    }

    .blog-card h2 {
        font-size: 1.05rem;
    }

    .blog-mini img {
        width: 56px;
        height: 56px;
    }
}
