.recipes-section {
    padding: clamp(3rem, 6vw, 5rem) 1rem;
}

.recipes-section .cs-container {
    max-width: 1100px;
    margin: 0 auto;
}

.recipes-header {
    text-align: center;
    margin-bottom: 3rem;
}

.recipes-header .cs-title,
.recipes-header .cs-text,
.recipes-empty .cs-text {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.recipes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.recipe-card {
    background: var(--background);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s, box-shadow 0.3s;
    text-decoration: none;
}

.recipe-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
    border-color: rgba(212, 175, 55, 0.5);
}

.recipe-card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: center;
    display: block;
}

.recipe-card-img-placeholder {
    width: 100%;
    height: 200px;
    background: rgba(212, 175, 55, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}

.recipe-card-body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.recipe-card-date {
    font-family: 'Lato', sans-serif;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.recipe-card-title {
    font-family: 'Cinzel', serif;
    font-size: 1.2rem;
    color: var(--headerColor);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.recipe-card-desc {
    font-family: 'Lato', sans-serif;
    font-size: 0.95rem;
    color: rgba(244, 238, 216, 0.65);
    line-height: 1.6;
    flex: 1;
    margin-bottom: 1.25rem;
}

.recipe-card-meta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    font-family: 'Lato', sans-serif;
    font-size: 0.8rem;
    color: rgba(244, 238, 216, 0.45);
    padding-top: 1rem;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.recipes-empty {
    text-align: center;
    padding: 4rem 1rem;
}

.recipe-content {
    color: rgba(244, 238, 216, 0.9);
    line-height: 1.75;
}

.recipe-content h2,
.recipe-content h3,
.recipe-content h4 {
    color: var(--headerColor);
    margin-top: 2rem;
}

.recipe-content ul,
.recipe-content ol {
    padding-left: 1.25rem;
}

.recipe-back {
    color: var(--primary);
    text-decoration: none;
    font-family: 'Lato', sans-serif;
}

.recipe-back:hover {
    text-decoration: underline;
}
