/* === Recipe related — single-recipe transitional beat ============
 *
 * 3-up horizontal-card grid sitting between post-content and the
 * recipe-reviews block on single-recipe pages. Image-left/text-right
 * cards (`.sb-related-card`) — visually distinct from the homepage
 * `.sb-recipe-card`. The card component itself lives in
 * assets/css/global.css; this file owns the wrapper, header, and
 * inner-grid layout.
 */
.sb-recipe-related {
    padding: var(--wp--preset--spacing--md) var(--wp--preset--spacing--lg) calc(var(--wp--preset--spacing--lg) + var(--wp--preset--spacing--xxs));
    max-width: 1180px;
    margin: 0 auto;
}
.sb-recipe-related__head {
    text-align: center;
    margin-bottom: var(--wp--preset--spacing--md-plus);
}
.sb-recipe-related__eyebrow {
    font-family: var(--wp--preset--font-family--manrope);
    font-size: var(--wp--preset--font-size--tiny);
    font-weight: 600;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: var(--wp--preset--color--saddle);
    margin: 0 0 var(--wp--preset--spacing--xs);
}
.sb-recipe-related__title {
    font-family: var(--wp--preset--font-family--cormorant);
    font-style: italic;
    font-weight: 500;
    font-size: var(--wp--preset--font-size--subhead);
    line-height: 1.25;
    margin: 0;
    color: var(--wp--preset--color--ink);
}
.sb-recipe-related__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--wp--preset--spacing--md-plus);
    margin: 0;
}

@media (max-width: 800px) {
    .sb-recipe-related { padding: var(--wp--preset--spacing--sm) var(--wp--preset--spacing--sm) calc(var(--wp--preset--spacing--md) + var(--wp--preset--spacing--xs)); }
    .sb-recipe-related__grid { grid-template-columns: 1fr; gap: var(--wp--preset--spacing--sm-plus); }
}
