/*
 * BCS Media · Shop Add-ons — bcs-shop-addons.css v1.0.0
 * CI-Tokens: BCS_CI_Shop.json
 * Fonts: Rajdhani (700), EB Garamond (italic 400/500), Open Sans (400/600)
 */

.bcs-sao {
    --indigo:       #004AAD;
    --indigo-deep:  #225A98;
    --gold:         #C9A96E;
    --cream:        #FBF9F7;
    --cream-warm:   #FBF9F7;
    --shop-red:     #D6453D;
    --shop-red-deep:#A73530;
    --white:        #FFFFFF;
    --soft:         #333333;
    --line:         #D8D3CA;
    --display:      'Rajdhani', sans-serif;
    --serif:        'EB Garamond', serif;
    --body:         'Open Sans', sans-serif;
    --radius-pill:  999px;
    padding: 0;
    font-family: var(--body);
}

/* SECTION HEAD */
.bcs-sao__head {
    text-align: center;
    margin-bottom: 48px;
}

.bcs-sao__label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 7px 15px;
    border-radius: var(--radius-pill);
    background: rgba(0,74,173,.08);
    border: 1px solid rgba(0,74,173,.18);
    font-family: var(--display);
    font-weight: 700;
    letter-spacing: .20em;
    text-transform: uppercase;
    color: var(--indigo);
    font-size: 11px;
    margin-bottom: 16px;
}

.bcs-sao__label--warm {
    background: rgba(214,69,61,.08);
    border-color: rgba(214,69,61,.20);
    color: var(--shop-red-deep);
}

.bcs-sao__h2 {
    font-family: var(--display);
    font-weight: 700;
    letter-spacing: -.018em;
    color: var(--indigo);
    font-size: clamp(28px, 4vw, 50px);
    line-height: .97;
    margin-bottom: 14px;
    text-align: center;
}

.bcs-sao__h2 em {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 400;
    color: var(--gold);
    font-size: .88em;
    white-space: nowrap;
    letter-spacing: .005em;
}

.bcs-sao__lead {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.45;
    color: var(--gold);
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
}

/* LIST */
.bcs-sao__list {
    border-top: 2px solid var(--indigo);
}

/* Jede Zeile: Zahl · (Bild) · Text · Preis */
.bcs-sao__item {
    display: grid;
    grid-template-columns: 56px 1fr auto;
    gap: 0 28px;
    align-items: start;
    padding: 30px 0;
    border-bottom: 1px solid var(--line);
    transition: background .15s;
}

/* Item mit Bild: 4 Spalten */
.bcs-sao__item--has-img {
    grid-template-columns: 56px 180px 1fr auto;
}

.bcs-sao__num {
    font-family: var(--display);
    font-size: 34px;
    font-weight: 700;
    color: rgba(201,169,110,.32);
    line-height: 1;
    padding-top: 3px;
    letter-spacing: -.02em;
}

/* INLINE-BILD */
.bcs-sao__img {
    align-self: stretch;
}

.bcs-sao__img-inner {
    width: 100%;
    height: 100%;
    min-height: 110px;
    border-radius: 14px;
    overflow: hidden;
    background: var(--cream-warm);
}

.bcs-sao__img-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* BODY */
.bcs-sao__body-top {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 7px;
    flex-wrap: wrap;
}

.bcs-sao__title {
    font-family: var(--display);
    font-size: 19px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--indigo);
    line-height: 1;
}

.bcs-sao__tag {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    padding: 2px 9px;
    border-radius: var(--radius-pill);
    font-family: var(--display);
    white-space: nowrap;
}

.bcs-sao__tag--blue {
    color: var(--indigo);
    border: 1px solid rgba(0,74,173,.28);
    background: rgba(0,74,173,.05);
}

.bcs-sao__tag--red {
    color: var(--shop-red);
    border: 1px solid rgba(214,69,61,.28);
    background: rgba(214,69,61,.04);
}

.bcs-sao__desc {
    font-size: 14px;
    line-height: 1.65;
    color: #666;
    max-width: 520px;
}

/* PREIS */
.bcs-sao__right {
    text-align: right;
    padding-top: 3px;
    min-width: 100px;
}

.bcs-sao__price {
    font-family: var(--display);
    font-size: 23px;
    font-weight: 700;
    color: var(--indigo);
    white-space: nowrap;
}

.bcs-sao__price small {
    display: block;
    font-size: 11px;
    font-weight: 600;
    color: #b0aca4;
    font-family: var(--body);
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-top: 3px;
}

/* FOOTER */
.bcs-sao__footer {
    padding: 22px 0 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.bcs-sao__footer-note {
    font-family: var(--serif);
    font-style: italic;
    font-size: 15px;
    color: rgba(34,90,152,.45);
}

.bcs-sao__footer-right {
    font-family: var(--display);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .10em;
    color: var(--indigo);
    opacity: .35;
    white-space: nowrap;
}

/* RESPONSIVE */
@media (max-width: 760px) {
    .bcs-sao__item--has-img {
        grid-template-columns: 40px 1fr;
    }
    .bcs-sao__img {
        display: none;
    }
    .bcs-sao__right {
        display: none;
    }
}

@media (max-width: 560px) {
    .bcs-sao__item {
        grid-template-columns: 40px 1fr;
    }
    .bcs-sao__right {
        display: none;
    }
    .bcs-sao__num {
        font-size: 26px;
    }
}


/* ═══════════════════════════════════════════════
   Inline-Format-Klassen (universell, alle Shop-Widgets)
   ═══════════════════════════════════════════════ */
.bcs-shop-gold,
.bcs-sao__gold, .bcs-sfaq__gold, .bcs-shr__gold, .bcs-swbc__gold {
    color: #C9A962 !important;
}
.bcs-shop-serif,
.bcs-sao__serif, .bcs-sfaq__serif, .bcs-shr__serif, .bcs-swbc__serif {
    font-family: 'EB Garamond', serif !important;
    font-style: italic !important;
    font-weight: 400 !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
}
