.recipes-index-wrap {
    padding-top: clamp(1.5rem, 3vw, 3rem);
    padding-bottom: clamp(2rem, 4vw, 4rem);
}

.recipes-index-head {
    max-width: 820px;
    margin-bottom: 1.5rem;
}

.recipes-index-head h1 {
    color: var(--yump-cream);
    font-size: clamp(2rem, 4vw, 3.6rem);
    line-height: 1.05;
    margin: 0.25rem 0 0.75rem;
}

.recipes-index-head p {
    color: var(--yump-muted);
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

.recipes-region-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin: 0 0 2rem;
}

.recipes-region-nav a {
    border: 1px solid rgba(230, 179, 95, 0.35);
    border-radius: 999px;
    color: var(--yump-cream);
    padding: 0.45rem 0.8rem;
    text-decoration: none;
    transition: background-color 0.15s ease, border-color 0.15s ease;
}

.recipes-region-nav a:hover,
.recipes-region-nav a.is-active {
    background: rgba(230, 179, 95, 0.14);
    border-color: rgba(230, 179, 95, 0.75);
    color: var(--yump-gold);
}

.recipes-index-section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

.recipes-index-section-head h2 {
    color: var(--yump-cream);
    font-size: 1.45rem;
    margin: 0;
}

.recipes-index-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1rem;
}

.recipes-index-card {
    border: 1px solid rgba(230, 179, 95, 0.18);
    border-radius: 8px;
    background: rgba(19, 11, 8, 0.62);
    overflow: hidden;
}

.recipes-index-card-image {
    display: block;
    aspect-ratio: 3 / 2;
    background: rgba(255, 255, 255, 0.04);
}

.recipes-index-card-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.recipes-index-card-copy {
    padding: 0.95rem;
}

.recipes-index-card-copy span {
    color: var(--yump-gold);
    display: block;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    margin-bottom: 0.35rem;
    text-transform: uppercase;
}

.recipes-index-card-copy h3 {
    font-size: 1.2rem;
    line-height: 1.25;
    margin: 0 0 0.5rem;
}

.recipes-index-card-copy h3 a,
.recipes-index-card-link {
    color: var(--yump-cream);
    text-decoration: none;
}

.recipes-index-card-copy h3 a:hover,
.recipes-index-card-link:hover {
    color: var(--yump-gold);
}

.recipes-index-card-copy p {
    color: var(--yump-muted);
    font-size: 0.92rem;
    line-height: 1.55;
    margin: 0 0 0.8rem;
}

.recipes-index-card-link {
    color: var(--yump-gold);
    font-size: 0.88rem;
    font-weight: 700;
}

.recipes-empty {
    padding: 1.25rem;
}

@media (max-width: 640px) {
    .recipes-index-grid {
        grid-template-columns: 1fr;
    }

    .recipes-region-nav a {
        flex: 1 1 auto;
        text-align: center;
    }
}
