/*
  world-tastes.css
  Wiederherstellung der Sektion „Geschmäcker der Welt entdecken“
  Stand: 14.08.2026

  Bewusst nur für .world-tastes-* Klassen.
  Keine Karussell-/Recipe-Card-Regeln.
*/

.world-tastes-section {
    position: relative;
    padding: 78px 7% 88px;
    background: #f4eee4;
    color: #2a2118;
}

.world-tastes-header {
    max-width: 820px;
    margin: 0 auto 46px;
    text-align: center;
}

.world-tastes-header .section-kicker {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 15px;
    color: #b88616;
    font-family: Arial, Helvetica, sans-serif;
    font-size: .74rem;
    font-weight: 700;
    letter-spacing: .18em;
}

.world-tastes-header .section-kicker span {
    width: 34px;
    height: 1px;
    background: #b88616;
}

.world-tastes-header h2 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.35rem, 4vw, 3.9rem);
    font-weight: 400;
    line-height: 1.05;
}

.world-tastes-header h2 em {
    color: #b88616;
    font-style: italic;
}

.world-tastes-header .ornament {
    margin: 15px 0 18px;
    color: #b88616;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1rem;
}

.world-tastes-intro {
    max-width: 700px;
    margin: 0 auto;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1rem;
    line-height: 1.55;
}

.world-tastes-intro p {
    max-width: none;
    margin: 0 0 10px;
}

.world-tastes-intro .world-tastes-lead {
    margin-bottom: 12px;
    color: #3b2b1d;
    font-size: 1.18rem;
    line-height: 1.4;
}

/* Drei Karten nebeneinander */
.world-tastes-grid {
    width: min(1120px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
}

.world-taste-card {
    overflow: hidden;
    background: #fffaf2;
    border: 1px solid rgba(42, 33, 24, .08);
    box-shadow: 0 10px 25px rgba(42, 33, 24, .07);
}

.world-taste-image {
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.world-taste-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.world-taste-card-body {
    padding: 18px 22px 22px;
}

.world-taste-country {
    margin-bottom: 7px;
    color: #b88616;
    font-family: Arial, Helvetica, sans-serif;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .17em;
}

.world-taste-card h3 {
    margin: 0 0 9px;
    color: #2a2118;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.45rem, 1.8vw, 1.85rem);
    font-weight: 400;
    line-height: 1.1;
}

.world-taste-card p {
    max-width: none;
    margin: 0;
    color: #59483a;
    font-family: Georgia, "Times New Roman", serif;
    font-size: .96rem;
    line-height: 1.5;
}

@media (max-width: 900px) {
    .world-tastes-grid {
        grid-template-columns: 1fr;
        max-width: 620px;
    }
}

@media (max-width: 600px) {
    .world-tastes-section {
        padding: 65px 6% 75px;
    }

    .world-tastes-header {
        margin-bottom: 38px;
    }

    .world-tastes-intro {
        font-size: .98rem;
    }

    .world-tastes-intro .world-tastes-lead {
        font-size: 1.1rem;
    }
}
