
/* === FOOD MAGAZINE THEME === */
.food-mag-wrap {
    background: #faf7f2;
    padding: 30px;
    border-radius: 16px;
    font-family: Georgia, "Times New Roman", serif;
}
.food-mag-header {
    text-align: center;
    padding: 10px 0 30px;
    border-bottom: 3px double #c8a96e;
    margin-bottom: 30px;
}
.food-mag-header h2 {
    font-size: 2.8em;
    font-weight: 400;
    color: #2c1810;
    margin: 0;
    letter-spacing: 3px;
    text-transform: uppercase;
}
.food-mag-header .subtitle {
    font-style: italic;
    color: #8b7355;
    font-size: 1.1em;
    margin-top: 8px;
}
.recipe-card {
    background: #ffffff;
    border-radius: 14px;
    overflow: hidden;
    margin: 28px 0;
    box-shadow: 0 4px 20px rgba(139, 115, 85, 0.1);
    transition: box-shadow 0.3s ease;
    border: 1px solid rgba(200, 169, 110, 0.15);
}
.recipe-card:hover {
    box-shadow: 0 8px 35px rgba(139, 115, 85, 0.18);
}
.recipe-top-band {
    height: 6px;
    background: linear-gradient(90deg, #c8a96e, #e8d5a8, #c8a96e);
}
.recipe-header {
    padding: 28px 32px 12px;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 12px;
}
.recipe-title {
    font-size: 1.9em;
    color: #2c1810;
    margin: 0;
    font-weight: 400;
    flex: 1;
}
.recipe-cuisine-tag {
    display: inline-block;
    background: linear-gradient(135deg, #c8a96e, #a8884e);
    color: #fff;
    padding: 5px 16px;
    border-radius: 20px;
    font-family: system-ui, sans-serif;
    font-size: 0.75em;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.recipe-info-bar {
    display: flex;
    gap: 0;
    padding: 0 32px;
    margin: 12px 0 0;
}
.recipe-info-item {
    flex: 1;
    text-align: center;
    padding: 14px 10px;
    border-right: 1px solid #f0e8da;
    font-family: system-ui, sans-serif;
}
.recipe-info-item:last-child { border-right: none; }
.recipe-info-item .info-icon {
    font-size: 1.4em;
    display: block;
    margin-bottom: 4px;
}
.recipe-info-item .info-label {
    display: block;
    font-size: 0.7em;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #8b7355;
    margin-bottom: 2px;
}
.recipe-info-item .info-value {
    display: block;
    font-size: 0.95em;
    font-weight: 600;
    color: #2c1810;
}
.recipe-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, #c8a96e, transparent);
    margin: 0 32px;
}
.recipe-columns {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 0;
    padding: 0;
}
.recipe-zutaten {
    padding: 24px 28px;
    background: #fdf9f1;
    border-right: 1px solid #f0e8da;
}
.recipe-zubereitung {
    padding: 24px 28px;
}
.recipe-section-title {
    font-size: 0.8em;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #c8a96e;
    font-family: system-ui, sans-serif;
    font-weight: 700;
    margin: 0 0 14px 0;
    padding-bottom: 8px;
    border-bottom: 1px solid #f0e8da;
}
.recipe-zutaten-content {
    font-size: 0.95em;
    line-height: 2;
    color: #4a3728;
}
.recipe-zubereitung-content {
    font-size: 0.95em;
    line-height: 1.8;
    color: #4a3728;
}
@media (max-width: 600px) {
    .recipe-columns { grid-template-columns: 1fr; }
    .recipe-zutaten { border-right: none; border-bottom: 1px solid #f0e8da; }
}
