/* ============ BLOG PAGE ============ */

/* HERO */
.blog-hero {
    padding: 140px 24px 50px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}
.blog-hero-kicker {
    font-family: 'Caveat', cursive;
    font-size: 1.6rem;
    color: #8c6239;
    opacity: 0;
    transform: translateY(-12px);
    animation: blog-fade-down 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.05s forwards;
}
.blog-hero-title {
    font-family: 'DM Sans', sans-serif;
    font-size: clamp(2.4rem, 5.4vw, 4.2rem);
    font-weight: 700;
    color: var(--brown, #8c6239);
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin: 8px 0 18px;
    opacity: 0;
    transform: translateY(-20px);
    animation: blog-fade-down 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.18s forwards;
}
.blog-hero-subtitle {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.1rem;
    color: #8c6239;
    font-weight: 500;
    max-width: 540px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(-12px);
    animation: blog-fade-down-soft 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.36s forwards;
}
@keyframes blog-fade-down {
    to { opacity: 1; transform: translateY(0); }
}
@keyframes blog-fade-down-soft {
    to { opacity: 0.85; transform: translateY(0); }
}

/* MAIN */
.blog-main { padding: 30px 24px 100px; }
.blog-container {
    max-width: 1100px;
    margin: 0 auto;
}

/* TAG */
.blog-tag {
    display: inline-block;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #8c6239;
    background: rgba(140, 98, 57, 0.10);
    padding: 6px 12px;
    border-radius: 999px;
}
.blog-tag-sm { font-size: 0.66rem; padding: 4px 10px; }

/* FEATURED */
.blog-featured {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 40px;
    align-items: center;
    background: #faf5ea;
    border: 1.5px solid rgba(140, 98, 57, 0.15);
    border-radius: 28px;
    padding: 44px;
    text-decoration: none;
    color: inherit;
    margin-bottom: 70px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s, border-color 0.4s;
    box-shadow: 0 6px 24px -10px rgba(140, 98, 57, 0.18);
}
.blog-featured.visible {
    opacity: 1;
    transform: translateY(0);
}
.blog-featured:hover {
    border-color: rgba(140, 98, 57, 0.4);
    box-shadow: 0 18px 48px -16px rgba(140, 98, 57, 0.4);
    transform: translateY(-4px);
}
.blog-featured-side { display: flex; flex-direction: column; gap: 16px; }
.blog-featured-title {
    font-family: 'DM Sans', sans-serif;
    font-size: clamp(1.5rem, 2.6vw, 2.1rem);
    font-weight: 700;
    color: var(--brown, #8c6239);
    line-height: 1.15;
    letter-spacing: -0.01em;
    margin: 4px 0 0;
}
.blog-featured-excerpt {
    font-size: 1.02rem;
    line-height: 1.6;
    color: #6b5847;
}
.blog-featured-cta {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    color: #8c6239;
    margin-top: 6px;
    letter-spacing: 0.02em;
}
.blog-featured-art {
    aspect-ratio: 1 / 1;
    border-radius: 22px;
    background: linear-gradient(135deg, #f0e3cb 0%, #e8d6b3 100%);
    overflow: hidden;
}
.blog-featured-art img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.blog-featured:hover .blog-featured-art img { transform: scale(1.04); }

/* SECTION HEADING */
.blog-section-heading {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--brown, #8c6239);
    margin: 0 0 24px 4px;
    letter-spacing: -0.01em;
}

/* GRID */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
    gap: 22px;
}

/* CARD */
.blog-card {
    background: #fff;
    border: 1.5px solid rgba(140, 98, 57, 0.13);
    border-radius: 22px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    min-height: 280px;
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.35s, box-shadow 0.35s;
    position: relative;
}
.blog-card-image {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #faf5ea;
}
.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.blog-card:hover .blog-card-image img { transform: scale(1.05); }
.blog-card > h3,
.blog-card > p,
.blog-card > .blog-card-bottom {
    padding-left: 24px;
    padding-right: 24px;
}
.blog-card > h3 { padding-top: 20px; padding-bottom: 4px; }
.blog-card > .blog-card-bottom { padding-bottom: 20px; padding-top: 14px; }
.blog-card.visible {
    opacity: 1;
    transform: translateY(0);
}
.blog-card:hover {
    border-color: rgba(140, 98, 57, 0.45);
    box-shadow: 0 16px 40px -16px rgba(140, 98, 57, 0.35);
    transform: translateY(-4px);
}
.blog-card-top { margin-bottom: 2px; }
.blog-card-title {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.18rem;
    font-weight: 700;
    color: var(--brown, #8c6239);
    line-height: 1.25;
    letter-spacing: -0.005em;
    margin: 0;
}
.blog-card-excerpt {
    font-size: 0.94rem;
    line-height: 1.55;
    color: #6b5847;
    flex-grow: 1;
    padding: 0 24px;
    margin: 8px 0 0;
}
.blog-card-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px dashed rgba(140, 98, 57, 0.18);
    padding-top: 14px;
    margin-top: auto;
}
.blog-card-meta {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.78rem;
    color: rgba(140, 98, 57, 0.75);
    font-weight: 500;
}
.blog-meta-dot { margin: 0 6px; opacity: 0.5; }
.blog-card-arrow {
    font-size: 1.3rem;
    color: #8c6239;
    transition: transform 0.3s ease;
}
.blog-card:hover .blog-card-arrow { transform: translateX(4px); }

/* ARTICLE */
.blog-article {
    padding: 130px 24px 80px;
    background: #fff;
}
.blog-article-inner {
    max-width: 760px;
    margin: 0 auto;
}
.blog-back-link {
    display: inline-block;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    color: rgba(140, 98, 57, 0.78);
    text-decoration: none;
    margin-bottom: 32px;
    transition: color 0.25s, transform 0.25s;
}
.blog-back-link:hover { color: #8c6239; transform: translateX(-3px); }
.blog-article-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.82rem;
    color: rgba(140, 98, 57, 0.78);
    font-weight: 500;
    margin-bottom: 18px;
}
.blog-article-title {
    font-family: 'DM Sans', sans-serif;
    font-size: clamp(2rem, 4.6vw, 3.2rem);
    font-weight: 700;
    color: var(--brown, #8c6239);
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin: 0 0 18px;
}
.blog-article-excerpt {
    font-size: 1.18rem;
    line-height: 1.55;
    color: #6b5847;
    font-weight: 500;
    margin: 0 0 28px;
}
.blog-article-hero {
    margin: 28px 0 36px;
    border-radius: 22px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: #faf5ea;
    box-shadow: 0 20px 50px -20px rgba(140, 98, 57, 0.35);
}
.blog-article-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.blog-article-divider {
    text-align: center;
    margin: 28px 0 36px;
}
.blog-article-divider svg {
    width: 60px;
    height: 12px;
    opacity: 0.6;
}
.blog-article-body {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.06rem;
    line-height: 1.78;
    color: #4a3525;
}
.blog-article-body p {
    margin: 0 0 22px;
}
.blog-article-body p:first-of-type::first-letter {
    font-family: 'DM Sans', sans-serif;
    font-size: 3.2rem;
    font-weight: 700;
    color: #8c6239;
    float: left;
    line-height: 0.95;
    margin: 4px 10px 0 0;
}
.blog-article-body h3 {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--brown, #8c6239);
    margin: 38px 0 14px;
    letter-spacing: -0.01em;
}
.blog-article-body em {
    color: #8c6239;
    font-style: italic;
}
.blog-article-body strong { color: #5e4322; }

/* Subtitle (sub titlu, deasupra divider-ului) */
.blog-article-subtitle {
    font-family: 'Caveat', cursive;
    font-size: 1.5rem;
    color: #8c6239;
    line-height: 1.3;
    margin: 0 0 8px;
    opacity: 0.9;
}

/* ===== REȚETĂ: secțiune separată după poveste ===== */
.blog-recipe {
    margin-top: 50px;
    padding-top: 40px;
    border-top: 2px dashed rgba(140, 98, 57, 0.18);
}
.blog-recipe-heading {
    font-family: 'DM Sans', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--brown, #8c6239);
    line-height: 1.2;
    letter-spacing: -0.01em;
    margin: 0 0 12px;
}
.blog-recipe-intro {
    font-size: 1.02rem;
    line-height: 1.65;
    color: #6b5847;
    margin: 0 0 28px;
    font-style: italic;
}
.blog-recipe-subheading {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--brown, #8c6239);
    margin: 38px 0 16px;
    letter-spacing: -0.005em;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(140, 98, 57, 0.15);
}

/* INGREDIENTE - listă curată, nu carduri */
.blog-ingr-group { margin-bottom: 22px; }
.blog-ingr-group-title {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    color: #8c6239;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin: 18px 0 10px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(140, 98, 57, 0.18);
}
.blog-ingredients {
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
}
.blog-ingredients li {
    position: relative;
    padding: 10px 0 10px 28px;
    font-size: 1rem;
    line-height: 1.6;
    color: #4a3525;
    border-bottom: 1px dashed rgba(140, 98, 57, 0.15);
}
.blog-ingredients li:last-child { border-bottom: none; }
.blog-ingredients li::before {
    content: '';
    position: absolute;
    left: 4px;
    top: 18px;
    width: 9px;
    height: 9px;
    background: radial-gradient(circle at 30% 30%, #c08c5a, #8c6239 70%);
    border-radius: 50%;
    box-shadow: 0 1px 2px rgba(94,67,34,0.35);
}

/* TIMP - card curat cu rânduri */
.blog-time-card {
    background: #fff;
    border: 1.5px solid rgba(140, 98, 57, 0.18);
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 16px;
    width: 100%;
    box-shadow: 0 4px 14px -8px rgba(140, 98, 57, 0.18);
}
.blog-time-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 22px;
    border-bottom: 1px solid rgba(140, 98, 57, 0.1);
}
.blog-time-row:last-child { border-bottom: none; }
.blog-time-row.is-total {
    background: linear-gradient(135deg, rgba(140, 98, 57, 0.08), rgba(140, 98, 57, 0.04));
    border-top: 1.5px solid rgba(140, 98, 57, 0.18);
}
.blog-time-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: #6b5847;
}
.blog-time-row.is-total .blog-time-label {
    font-weight: 700;
    color: #5e4322;
}
.blog-time-value {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.98rem;
    font-weight: 600;
    color: #8c6239;
    font-variant-numeric: tabular-nums;
}
.blog-time-row.is-total .blog-time-value {
    font-weight: 700;
    color: #6b4423;
}

/* NUTRIȚIE */
.blog-nutrition-wrap {
    overflow-x: auto;
    margin-bottom: 16px;
    border-radius: 14px;
    border: 1.5px solid rgba(140, 98, 57, 0.15);
}
.blog-nutrition-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    font-size: 0.92rem;
}
.blog-nutrition-table th,
.blog-nutrition-table td {
    padding: 11px 14px;
    text-align: left;
    border-bottom: 1px solid rgba(140, 98, 57, 0.1);
}
.blog-nutrition-table thead th {
    background: #8c6239;
    color: #fff;
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.blog-nutrition-table thead th:first-child { background: #6b4423; }
.blog-nutrition-table tbody th {
    font-weight: 600;
    color: #4a3525;
}
.blog-nutrition-table tbody tr:nth-child(even) { background: #faf5ea; }
.blog-nutrition-table tbody td {
    color: var(--brown, #8c6239);
    font-weight: 600;
    font-variant-numeric: tabular-nums;
}
.blog-nutrition-table tbody tr:last-child th,
.blog-nutrition-table tbody tr:last-child td { border-bottom: none; }

/* PAȘI */
.blog-steps {
    list-style: none;
    counter-reset: step-counter;
    padding: 0;
    margin: 0 0 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.blog-steps li {
    counter-increment: step-counter;
    position: relative;
    padding: 18px 20px 18px 64px;
    background: #fff;
    border: 1.5px solid rgba(140, 98, 57, 0.13);
    border-radius: 14px;
    font-size: 1rem;
    line-height: 1.65;
    color: #4a3525;
    transition: border-color 0.25s, box-shadow 0.25s;
}
.blog-steps li:hover {
    border-color: rgba(140, 98, 57, 0.32);
    box-shadow: 0 8px 22px -12px rgba(140, 98, 57, 0.3);
}
.blog-steps li::before {
    content: counter(step-counter);
    position: absolute;
    left: 14px;
    top: 14px;
    width: 36px;
    height: 36px;
    background: #8c6239;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: 0 4px 10px -3px rgba(140, 98, 57, 0.5);
}
.blog-steps li strong {
    display: block;
    color: #5e4322;
    font-weight: 700;
    margin-bottom: 4px;
}

/* CLOSING - text simplu, centrat, maro, bold */
.blog-closing {
    margin: 40px 0 0;
    padding: 0;
    background: none;
    border: none;
    border-radius: 0;
    font-family: 'DM Sans', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.5;
    color: #8c6239;
    font-style: normal;
    text-align: center;
}

@media (max-width: 780px) {
    .blog-recipe-subheading { font-size: 1.1rem; }
    .blog-ingredients li { padding: 11px 14px 11px 38px; font-size: 0.92rem; }
    .blog-steps li { padding: 16px 16px 16px 56px; font-size: 0.95rem; }
    .blog-steps li::before { width: 32px; height: 32px; left: 12px; top: 12px; }
    .blog-nutrition-table { font-size: 0.85rem; }
    .blog-nutrition-table th, .blog-nutrition-table td { padding: 9px 10px; }
}

/* CTA în articol */
.blog-article-cta {
    margin-top: 50px;
    padding: 36px 30px;
    background: #faf5ea;
    border: 1.5px dashed rgba(140, 98, 57, 0.3);
    border-radius: 22px;
    text-align: center;
}
.blog-cta-line {
    font-family: 'Caveat', cursive;
    font-size: 1.6rem;
    color: #8c6239;
    margin: 0 0 18px;
}
.blog-cta-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}
.blog-cta-buttons .btn-brown,
.blog-cta-buttons .btn-outline {
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 12px 26px;
    background: transparent;
    color: #8c6239;
    border: 1.5px solid #8c6239;
    border-radius: 999px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-decoration: none;
    transition: all 0.25s ease;
}
.btn-outline:hover {
    background: #8c6239;
    color: #fff;
    transform: translateY(-2px);
}

/* RELATED */
.blog-related { margin-top: 60px; }
.blog-related-title {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--brown, #8c6239);
    margin: 0 0 18px;
}
.blog-related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 14px;
}
.blog-related-card {
    background: #fff;
    border: 1.5px solid rgba(140, 98, 57, 0.13);
    border-radius: 16px;
    padding: 18px 20px;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: relative;
    transition: all 0.3s ease;
}
.blog-related-card:hover {
    border-color: rgba(140, 98, 57, 0.4);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px -14px rgba(140, 98, 57, 0.3);
}
.blog-related-card h4 {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.98rem;
    font-weight: 700;
    color: var(--brown, #8c6239);
    line-height: 1.3;
    margin: 0;
}
.blog-related-arrow {
    position: absolute;
    bottom: 14px;
    right: 18px;
    color: #8c6239;
    font-size: 1.1rem;
    opacity: 0.7;
    transition: transform 0.3s, opacity 0.3s;
}
.blog-related-card:hover .blog-related-arrow {
    transform: translateX(4px);
    opacity: 1;
}

/* RESPONSIVE */
@media (max-width: 780px) {
    /* HERO */
    .blog-hero { padding: 110px 18px 24px; }
    .blog-hero-title { font-size: clamp(1.8rem, 7vw, 2.6rem); }
    .blog-hero-title br { display: none; }

    /* MAIN */
    .blog-main { padding: 20px 16px 60px; }

    /* FEATURED -> stack vertical, imaginea sus */
    .blog-featured {
        grid-template-columns: 1fr;
        padding: 0;
        gap: 0;
        margin-bottom: 30px;
        border-radius: 20px;
    }
    .blog-featured-art {
        order: -1;
        aspect-ratio: 16 / 10;
        border-radius: 20px 20px 0 0;
        max-width: none;
        margin: 0;
    }
    .blog-featured-side {
        padding: 22px 22px 26px;
        gap: 12px;
    }
    .blog-featured-title { font-size: 1.35rem; line-height: 1.2; }
    .blog-featured-excerpt { font-size: 0.94rem; }

    /* SECTION HEADING */
    .blog-section-heading { font-size: 1.15rem; margin-bottom: 16px; }

    /* GRID */
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .blog-card { min-height: 0; }
    .blog-card-image { aspect-ratio: 16 / 10; }
    .blog-card > h3 { padding: 18px 20px 4px; font-size: 1.05rem; }
    .blog-card-excerpt { padding: 0 20px; font-size: 0.9rem; }
    .blog-card > .blog-card-bottom { padding: 12px 20px 18px; }

    /* ARTICOL */
    .blog-article { padding: 100px 16px 50px; }
    .blog-article-title { font-size: clamp(1.6rem, 6.5vw, 2.4rem); }
    .blog-article-subtitle { font-size: 1.2rem; }
    .blog-article-meta { font-size: 0.78rem; gap: 6px; }
    .blog-article-hero {
        margin: 22px 0 26px;
        border-radius: 16px;
        aspect-ratio: 4 / 3;
    }
    .blog-article-body { font-size: 1rem; line-height: 1.7; }
    .blog-article-body p:first-of-type::first-letter {
        font-size: 2.4rem;
        margin: 2px 8px 0 0;
    }

    /* REȚETĂ */
    .blog-recipe { margin-top: 36px; padding-top: 26px; }
    .blog-recipe-heading { font-size: 1.4rem; }
    .blog-recipe-subheading { font-size: 1.1rem; margin: 28px 0 12px; }
    .blog-recipe-intro { font-size: 0.95rem; margin-bottom: 20px; }

    /* INGREDIENTE */
    .blog-ingredients li {
        padding: 10px 0 10px 24px;
        font-size: 0.94rem;
        line-height: 1.5;
    }
    .blog-ingredients li::before {
        width: 8px; height: 8px; top: 16px; left: 2px;
    }
    .blog-ingr-group-title { font-size: 0.78rem; }

    /* TIMP */
    .blog-time-row { padding: 12px 16px; }
    .blog-time-label, .blog-time-value { font-size: 0.92rem; }

    /* PAȘI */
    .blog-steps li { padding: 16px 16px 16px 56px; font-size: 0.94rem; }
    .blog-steps li::before { width: 32px; height: 32px; left: 12px; top: 14px; font-size: 0.88rem; }

    /* CLOSING */
    .blog-closing { font-size: 1.08rem; margin-top: 32px; }

    /* CTA */
    .blog-article-cta { padding: 26px 18px; margin-top: 40px; border-radius: 18px; }
    .blog-cta-line { font-size: 1.3rem; margin-bottom: 14px; }
    .blog-cta-buttons { flex-direction: column; gap: 10px; }
    .blog-cta-buttons a { width: 100%; }

    /* RELATED */
    .blog-related { margin-top: 44px; }
    .blog-related-grid { grid-template-columns: 1fr; gap: 10px; }
    .blog-related-card { padding: 16px 18px; }
    .blog-related-card h4 { font-size: 0.95rem; padding-right: 24px; }
    .blog-related-arrow { bottom: 16px; right: 16px; }

    /* BACK LINK */
    .blog-back-link { margin-bottom: 22px; font-size: 0.85rem; }
}

@media (max-width: 480px) {
    .blog-hero-title { font-size: 1.6rem; }
    .blog-featured-side { padding: 20px 18px 22px; }
    .blog-card > h3 { padding: 16px 18px 4px; font-size: 1rem; }
    .blog-card-excerpt { padding: 0 18px; }
    .blog-card > .blog-card-bottom { padding: 10px 18px 16px; }
    .blog-article-title { font-size: 1.5rem; }
    .blog-article-subtitle { font-size: 1.1rem; }
    .blog-article-hero { aspect-ratio: 1 / 1; border-radius: 14px; }
    .blog-recipe-heading { font-size: 1.25rem; }
    .blog-steps li { padding: 14px 14px 14px 50px; }
    .blog-steps li::before { width: 28px; height: 28px; }
}
