/* F2C Shortcodes – Überschrift + goldener Text-Highlight.
   Gekapselt: nur Klassen-Selektoren, keine Abhängigkeit zu osg-2026-style. */

/* [f2c-h2] – font-family bewusst nicht gesetzt, erbt die Schrift des Themes. */
.f2c-h2 {
    font-size: 2.6rem !important;
    font-weight: 800 !important;
    color: #3e3e3e !important;
    margin: 0 0 16px !important;
    line-height: 1.15 !important;
    letter-spacing: -1px !important;
}

/* [f2c-gold] – OSG-Goldton */
.f2c-gold {
    color: #b5a355 !important;
}

/* [f2c-btn-gold] – Button mit goldenem Rahmen.
   Rendert als <a> (mit href) oder <button> – beide Elemente teilen sich das Styling.
   Werte analog .button-2026__small__white__border__gold aus osg-2026-style. */
.f2c-btn-gold {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 18px;
    background: #fff;
    color: #b5a355;
    font-family: inherit; /* <button> erbt die Schrift sonst nicht -> UA-Default */
    font-size: .9rem;
    font-weight: 700;
    border: 2px solid #b5a355;
    border-radius: 10px;
    cursor: pointer;
    text-decoration: none;
    transition: border-color .2s, color .2s, transform .15s, box-shadow .2s;
    white-space: nowrap;
}

.f2c-btn-gold:hover,
.f2c-btn-gold:focus {
    color: #b5a355;
    text-decoration: none;
}
