/* ── Extra Blocks – passt zum Glanzwerk Design-System ─── */

.eb-section {
    background-color: var(--primary-blue, #0a1628);
    color: var(--text-white, #ffffff);
}

.eb-section:nth-of-type(even) {
    background-color: var(--dark-navy, #060e1c);
}

/* Überschrift */
.eb-heading {
    text-align: center;
    margin-bottom: 40px;
    font-family: 'Playfair Display', serif;
}

/* ── Text + Bild ─────────────────────────────────────── */
.eb-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.eb-text-col h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    margin-bottom: 20px;
}

.eb-text-col p {
    line-height: 1.8;
    color: var(--text-gray, #b0b8c8);
    margin-bottom: 16px;
}

.eb-img-col img {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
    max-height: 420px;
}

/* ── 3 Karten ────────────────────────────────────────── */
.eb-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 20px;
}

.eb-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 36px 28px;
    text-align: center;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.eb-card:hover {
    transform: translateY(-6px);
    border-color: var(--secondary-orange, #F47C20);
}

.eb-card-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--secondary-orange, #F47C20), #e06010);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.4rem;
    color: #fff;
}

.eb-card h3 {
    font-size: 1.15rem;
    margin-bottom: 12px;
    color: #fff;
}

.eb-card p {
    color: var(--text-gray, #b0b8c8);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ── Voller Text ─────────────────────────────────────── */
.eb-voller-text .container {
    max-width: 800px;
}

.eb-voller-text p {
    line-height: 1.9;
    color: var(--text-gray, #b0b8c8);
    margin-bottom: 20px;
    font-size: 1.05rem;
}

/* ── Responsive ──────────────────────────────────────── */
@media (max-width: 768px) {
    .eb-two-col {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .eb-img-col { order: -1; }

    .eb-cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}
