/* =====================================================================
 * artikel.css
 * -----------------------------------------------------------------
 * Nur auf der Artikel-Detailseite eingebunden.
 * Klassen mit "fcg_"-Prefix.
 * ===================================================================== */

/* --- Hero-Bild ganz oben (bild_1) --- */
.fcg_artikel-hero-bild {
    width: 100%;
    max-height: 420px;
    object-fit: cover;
    border-radius: 15px;
    display: block;
    margin-bottom: 20px;
}

/* --- Platz fuer die fixe Aktionsleiste unten, damit nichts verdeckt wird --- */
.fcg_hat-aktionsleiste {
    padding-bottom: 100px;
}

/* --- Details als aufgeraeumte Karte mit Label/Wert-Zeilen --- */
.fcg_details-karte {
    background: #5c3a52;
    border-radius: 15px;
    padding: 5px 15px;
    margin: 10px 0 20px;
}

.fcg_feld-zeile {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid #b090b0;
}

.fcg_feld-zeile:last-child {
    border-bottom: none;
}

.fcg_feld-label {
    flex: 0 0 auto;
    color: #e8e0e5;
}

.fcg_feld-wert {
    font-weight: 600;
    text-align: right;
    color: #e8e0e5;
}

/* --- Abschnitts-Ueberschriften ("Details", "Vorlieben") --- */
.fcg_abschnitt-titel {
    font-family: "Playfair Display", serif;
    font-weight: 700;
    color: #e8e0e5;
    margin: 20px 0;
}

/* --- Checkboxen als Tags --- */
.fcg_checkboxen {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 10px 0;
}

.fcg_checkbox-tag {
    background: #5c3a52;
    border-radius: 15px;
    padding: 5px 15px;
    color: #e8e0e5;
    font-size: 14px;
}

/* --- Besonderheiten (freier Fliesstext) --- */
.fcg_besonderheiten {
    color: #e8e0e5;
    white-space: pre-line;
    margin: 10px 0 20px;
}

/* --- Arbeitszeiten (hervorgehobene Box, wie im CMS als Textarea gepflegt) --- */
.fcg_arbeitszeiten {
    background: #5c3a52;
    color: #e8e0e5;
    white-space: pre-line;
    padding: 15px;
    border-radius: 15px;
    margin: 10px 0 20px;
}

/* --- Bilder-Grid (3 Spalten, dann untereinander) --- */
.fcg_bilder-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 15px;
    margin: 30px 0 0 0;
}

.fcg_bilder-grid-item {
    width: 100%;
    display: block;
    border-radius: 15px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    cursor: pointer;
}

/* --- Fixe Aktionsleiste (WhatsApp / Telegram / Anrufen) --- */
.fcg_aktionsleiste {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #3a1f2b;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    padding: 15px 0;
    z-index: 300;
}

.fcg_aktion-btn {
    width: 60px;
    height: 60px;
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    color: #fff;
    text-decoration: none;
    font-size: 26px;
}

.fcg_aktion-whatsapp { background: #25d366; }
.fcg_aktion-telegram { background: #0088cc; }
.fcg_aktion-anrufen  { background: #e91e8c; }

@media only screen and (max-width: 599px) {
    .fcg_bilder-grid {
        grid-template-columns: 1fr 1fr;
    }
}
