/* /files/css/magazin.css */
/* Page styles for Magazin: Über uns / Kontakt / Transparenz etc. */
/* Keep it minimal and consistent with theme/header/footer */

.sf-breadcrumb {
    margin-bottom: 14px;
    font-size: 14px;
    color: var(--muted, #556070);
}

.sf-breadcrumb ol {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.sf-breadcrumb li {
    display: inline-flex;
    gap: 8px;
    align-items: center;
}

.sf-breadcrumb li:not(:last-child)::after {
    content: "›";
    opacity: .5;
}

.sf-breadcrumb a {
    color: inherit;
    text-decoration: none;
}

.sf-breadcrumb a:hover {
    text-decoration: underline;
}

/* Hero */
.sf-hero {
    margin-top: 6px;
}

.sf-hero-card {
    border: 1px solid rgba(20, 30, 45, .10);
    border-radius: 22px;
    background: #fff;
    overflow: hidden;
}

.sf-hero-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 0;
}

.sf-hero-content {
    padding: 34px 34px 28px;
}

.sf-kicker {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.sf-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid rgba(15, 118, 110, .22);
    background: rgba(15, 118, 110, .08);
    color: #0F766E;
    font-weight: 700;
    font-size: 13px;
}

.sf-chip-soft {
    border-color: rgba(20, 30, 45, .12);
    background: rgba(20, 30, 45, .04);
    color: rgba(20, 30, 45, .80);
}

.sf-h1 {
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin: 0 0 12px;
    color: #101828;
    font-weight: 900;
}

.sf-lede {
    font-size: 18px;
    line-height: 1.55;
    color: rgba(20, 30, 45, .78);
    margin: 0 0 18px;
    max-width: 62ch;
}

.sf-hero-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

.sf-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 800;
    border: 1px solid transparent;
    transition: transform .12s ease, box-shadow .12s ease, background .12s ease, color .12s ease;
    user-select: none;
}

.sf-btn:active {
    transform: translateY(1px);
}

.sf-btn-primary {
    background: #0F766E;
    color: #fff;
    box-shadow: 0 10px 26px rgba(15, 118, 110, .20);
}

.sf-btn-primary:hover {
    background: #0B5F58;
    color: #fff;
}

.sf-btn-ghost {
    background: rgba(20, 30, 45, .04);
    color: #101828;
    border-color: rgba(20, 30, 45, .10);
}

.sf-btn-ghost:hover {
    background: rgba(20, 30, 45, .07);
    color: #101828;
}

.sf-facts {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 8px;
}

.sf-fact {
    border: 1px solid rgba(20, 30, 45, .10);
    background: rgba(250, 251, 252, .75);
    border-radius: 16px;
    padding: 14px 14px;
}

.sf-fact-num {
    font-size: 18px;
    font-weight: 900;
    color: #101828;
    margin-bottom: 2px;
}

.sf-fact-label {
    font-size: 13px;
    color: rgba(20, 30, 45, .70);
    font-weight: 700;
}

.sf-hero-media {
    position: relative;
    background: #0b1220;
    min-height: 280px;
}

.sf-hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: .96;
}

.sf-hero-caption {
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 12px;
    padding: 10px 12px;
    border-radius: 14px;
    background: rgba(16, 24, 40, .70);
    color: rgba(255, 255, 255, .92);
    font-size: 13px;
    backdrop-filter: blur(10px);
}

/* Sections */
.sf-section {
    margin-top: 22px;
}

.sf-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.sf-grid-2-rev {
    grid-template-columns: .92fr 1.08fr;
}

.sf-card {
    border: 1px solid rgba(20, 30, 45, .10);
    background: #fff;
    border-radius: 20px;
    padding: 22px;
}

.sf-card-soft {
    background: rgba(250, 251, 252, .75);
}

.sf-card-head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 14px;
}

.sf-mini {
    font-size: 13px;
    color: rgba(20, 30, 45, .62);
    font-weight: 700;
}

.sf-h2 {
    font-size: 22px;
    font-weight: 900;
    letter-spacing: -0.01em;
    margin: 0 0 12px;
    color: #101828;
}

.sf-bullets {
    margin: 14px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 10px;
}

.sf-bullets li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    color: rgba(20, 30, 45, .78);
}

.sf-bullets i {
    color: #0F766E;
    margin-top: 2px;
}

.sf-values {
    display: grid;
    gap: 14px;
}

.sf-value {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 12px;
    align-items: start;
}

.sf-ico {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: rgba(15, 118, 110, .10);
    border: 1px solid rgba(15, 118, 110, .18);
    color: #0F766E;
}

.sf-value-title {
    font-weight: 900;
    color: #101828;
    margin-bottom: 2px;
}

.sf-value-text {
    color: rgba(20, 30, 45, .76);
    line-height: 1.55;
}

/* Steps */
.sf-steps {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.sf-step {
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 12px;
    padding: 16px;
    border-radius: 18px;
    border: 1px solid rgba(20, 30, 45, .10);
    background: #fff;
}

.sf-step-num {
    width: 40px;
    height: 40px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    font-weight: 900;
    color: #0F766E;
    background: rgba(15, 118, 110, .10);
    border: 1px solid rgba(15, 118, 110, .18);
}

.sf-step-title {
    font-weight: 900;
    color: #101828;
    margin-bottom: 2px;
}

.sf-step-text {
    color: rgba(20, 30, 45, .76);
    line-height: 1.55;
}

/* Media card */
.sf-media-card {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(20, 30, 45, .10);
    background: #0b1220;
}

.sf-media-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 360px;
}

/* Note */
.sf-note {
    margin-top: 14px;
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 12px;
    padding: 16px;
    border-radius: 18px;
    background: rgba(15, 118, 110, .06);
    border: 1px solid rgba(15, 118, 110, .14);
}

.sf-note-ico {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    color: #0F766E;
    background: rgba(15, 118, 110, .10);
    border: 1px solid rgba(15, 118, 110, .18);
}

.sf-note-title {
    font-weight: 900;
    color: #101828;
    margin-bottom: 2px;
}

.sf-note-text {
    color: rgba(20, 30, 45, .76);
    line-height: 1.55;
}

/* FAQ */
.sf-faq {
    display: grid;
    gap: 10px;
    margin-top: 10px;
}

.sf-faq details {
    border: 1px solid rgba(20, 30, 45, .10);
    border-radius: 16px;
    padding: 14px 14px;
    background: #fff;
}

.sf-faq summary {
    cursor: pointer;
    font-weight: 900;
    color: #101828;
}

.sf-faq-body {
    margin-top: 10px;
    color: rgba(20, 30, 45, .76);
    line-height: 1.6;
}

.sf-faq a {
    color: #0F766E;
    text-decoration: none;
}

.sf-faq a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 991px) {
    .sf-hero-grid {
        grid-template-columns: 1fr;
    }

    .sf-hero-content {
        padding: 22px;
    }

    .sf-facts {
        grid-template-columns: 1fr;
    }

    .sf-grid-2, .sf-grid-2-rev {
        grid-template-columns: 1fr;
    }

    .sf-steps {
        grid-template-columns: 1fr;
    }

    .sf-media-card img {
        min-height: 240px;
    }
}
