/* Partner-Detailseite - Screenshot-nahe Landingpage */

.sp-main {
    --sp-red: var(--e-global-color-primary, #bd1637);
    --sp-red-dark: #9e102d;
    --sp-red-dark: color-mix(in srgb, var(--sp-red) 86%, #000);
    --sp-red-soft: #f7dde4;
    --sp-red-soft: color-mix(in srgb, var(--sp-red) 14%, #fff);
    --sp-rose-bg: #f3eeee;
    --sp-text: #2b2526;
    --sp-muted: #7a6d70;
    --sp-line: #eadfe2;
    --sp-white: #ffffff;
    --sp-shadow: 0 14px 34px rgba(43, 37, 38, 0.12);
    --sp-radius: 14px;

    color: var(--sp-text);
    background: var(--sp-white);
    font-family: "The Mix", sans-serif;
    line-height: 1.45;
    -webkit-font-smoothing: antialiased;
}

.sp-main *,
.sp-main *::before,
.sp-main *::after {
    box-sizing: border-box;
}

.sp-main ul,
.sp-main ol {
    list-style: none;
    margin: 0;
    padding: 11px 18px;
}

.sp-main a {
    color: inherit;
}

.sp-container {
    width: min(100% - 32px, 1140px);
    margin-inline: auto;
}

.sp-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 30px;
    align-items: center;
    padding-block: 100px 64px;
}

.sp-hero-copy {
    max-width: 520px;
}

.sp-search-pill {
    display: inline-flex;
    max-width: 100%;
    align-items: center;
    min-height: 22px;
    padding: 5px 12px;
    border: 1px solid var(--sp-red);
    border-radius: 999px;
    color: var(--sp-red);
    background: var(--sp-white);
    font-size: 0.68rem;
    font-weight: 800;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 0;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
    margin-bottom: 18px;
}

.sp-hero-name {
    font-family: "The Mix", sans-serif;
    margin: 0;
    color: var(--sp-text);
    font-size: var(--e-global-typography-primary-font-size, 2.35rem);
    line-height: 1.02;
    font-weight: 850;
    letter-spacing: 0;
}

.sp-badge-internal {
    display: inline-flex;
    align-items: center;
    min-height: 22px;
    padding: 4px 9px;
    margin-left: 8px;
    border-radius: 999px;
    color: var(--sp-white);
    background: var(--sp-red);
    font-size: 0.64rem;
    font-weight: 800;
    line-height: 1;
    vertical-align: middle;
}

.sp-hero-intro {
    max-width: 430px;
    margin: 24px 0 0;
    color: var(--sp-muted);
    font-size: 0.94rem;
}

.sp-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.sp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 11px 18px;
    border-radius: 999px;
    border: 1.5px solid transparent;
    font-family: "The Mix", sans-serif;
    font-size: 0.84rem;
    font-weight: 800;
    line-height: 1.1;
    text-decoration: none;
    transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.sp-icon-btn {
    padding: 0;
}

.sp-btn:hover {
    transform: translateY(-1px);
    text-decoration: none;
}

.sp-btn-content {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-direction: row !important;
    gap: 9px;
    min-height: 42px;
    padding: 11px 18px;
}

.sp-btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    order: 1 !important;
    width: 1em;
    height: 1em;
    flex: 0 0 auto;
}

.sp-btn-icon svg {
    display: block;
    width: 1em;
    height: 1em;
    fill: currentColor;
}

.sp-btn-text {
    order: 0 !important;
    white-space: nowrap;
}

.sp-btn-primary {
    background: var(--sp-red);
    border-color: var(--sp-red);
    color: var(--sp-white);
}

.sp-main .sp-btn-primary,
.sp-main a.sp-btn-primary {
    color: var(--sp-white);
}

.sp-btn-primary:hover {
    background: var(--sp-red-dark);
    border-color: var(--sp-red-dark);
    color: var(--sp-white);
}

.sp-main .sp-btn-primary:hover,
.sp-main a.sp-btn-primary:hover {
    color: var(--sp-white);
}

.sp-btn-outline {
    background: var(--sp-white);
    border-color: var(--sp-red);
    color: var(--sp-red);
}

.sp-btn-outline:hover {
    background: var(--sp-red-soft);
    color: var(--sp-red);
}

.sp-btn-outline-dark {
    background: transparent;
    border-color: rgba(43, 37, 38, 0.24);
    color: var(--sp-text);
}

.sp-btn-outline-dark:hover {
    border-color: var(--sp-red);
    color: var(--sp-red);
}

.sp-hero-meta {
    display: grid;
    grid-column: 1 / -1;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px 22px;
    width: 100%;
    max-width: none;
    margin-top: 10px;
    padding-top: 22px;
    border-top: 1px solid var(--sp-line);
}

.sp-hero-meta li {
    display: flex;
    align-items: center;
    gap: 18px;
    min-width: 0;
}

.sp-meta-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 48px;
    height: 48px;
    margin-top: 0;
    color: var(--sp-red);
}

.sp-meta-icon svg {
    width: 24px;
    height: 24px;
    display: block;
}

.sp-meta-icon circle,
.sp-meta-icon path {
    fill: currentColor;
    stroke: none;
}

.sp-meta-copy {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
    min-width: 0;
}

.sp-meta-label {
    display: block;
    color: var(--sp-muted);
    font-family: "The Mix", sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    line-height: 1.1;
}

.sp-meta-value {
    display: block;
    margin-top: 8px;
    color: var(--sp-text);
    font-size: 18px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.04em;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
    white-space: normal;
}

.sp-hero-meta a {
    text-decoration: none;
}

.sp-meta-value a {
    white-space: nowrap;
}

.sp-hero-media {
    margin: 0;
    width: 100%;
    aspect-ratio: 1 / 1;
    max-height: 360px;
    overflow: hidden;
    border-radius: 14px;
    background: var(--sp-line);
    box-shadow: var(--sp-shadow);
}

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

.sp-fit-section {
    padding-block: 150px 150px;
    background: var(--sp-rose-bg);
}

.sp-section-head {
    text-align: center;
}

.sp-hr {
    color: var(--sp-red);
    border-width: 2px;
    margin-left: 0;
    margin-right: auto;
}

.sp-section-head h2 {
    font-family: "The Mix", sans-serif;
    margin: 0;
    color: var(--sp-text);
    font-size: 1.35rem;
    line-height: 1.08;
    font-weight: 850;
    letter-spacing: 0;
}

.sp-section-sub {
    max-width: 420px;
    margin: 10px auto 0;
    color: var(--sp-muted);
    font-size: 0.82rem;
    line-height: 1.35;
}

.sp-section-sub p {
    margin: 0;
}

.sp-fit-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    max-width: 960px;
    margin-top: 36px;
}

.sp-fit-card {
    min-height: 132px;
    padding: 20px 22px 22px;
    border-radius: var(--sp-radius);
    background: var(--sp-white);
    box-shadow: 0 12px 24px rgba(43, 37, 38, 0.12);
}

.sp-card-icon {
    display: inline-block;
    width: 27px;
    height: 27px;
    margin-bottom: 18px;
    border-radius: 999px;
    background: var(--sp-red-soft);
    position: relative;
}

.sp-card-icon::after {
    content: "";
    position: absolute;
    inset: 9px;
    border-radius: inherit;
    background: var(--sp-red);
}

.sp-fit-card h3,
.sp-support-item h3 {
    margin: 0;
    color: var(--sp-text);
    font-size: 1.05rem;
    line-height: 1.2;
    font-weight: 850;
}

.sp-fit-card p,
.sp-support-item p {
    margin: 7px 0 0;
    color: var(--sp-muted);
    font-size: 0.92rem;
    line-height: 1.35;
}

.sp-support-section {
    padding-block: 74px 90px;
    background: var(--sp-red);
    color: var(--sp-white);
}

.sp-support-inner {
    max-width: 960px;
}

.sp-section-head-light h2 {
    color: var(--sp-white);
    font-size: 1.35rem;
}

.sp-section-head-light p {
    max-width: 400px;
    margin: 10px auto 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.82rem;
    line-height: 1.35;
}

.sp-support-list {
    display: grid;
    gap: 12px;
    margin-top: 34px;
}

.sp-support-item {
    padding: 18px 22px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.13);
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.sp-support-item h3 {
    color: var(--sp-white);
}

.sp-support-item p {
    color: rgba(255, 255, 255, 0.72);
}

.sp-gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 44px;
}

.sp-gallery-item {
    margin: 0;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.12);
}

.sp-gallery-item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sp-quote-section {
    padding-block: 150px 150px;
    background: var(--sp-rose-bg);
}

.sp-quote-inner {
    max-width: 720px;
}

.sp-quote-inner blockquote {
    margin: 0;
    text-align: center;
}

.sp-quote-inner p {
    max-width: 560px;
    margin: 0 auto;
    color: var(--sp-red);
    font-family: "The Mix", sans-serif;
    font-size: 1.2rem;
    line-height: 1.42;
    font-weight: 500;
}

.sp-quote-inner cite {
    display: block;
    margin-top: 24px;
    color: var(--sp-text);
    font-style: normal;
    font-size: 0.72rem;
    font-weight: 800;
}

.sp-contact-section {
    padding-block: 42px 58px;
    background: var(--sp-rose-bg);
}

.sp-contact-inner {
    max-width: 720px;
    text-align: center;
}

.sp-contact-inner h2 {
    margin: 0;
    font-size: 1.35rem;
    line-height: 1.15;
    font-weight: 850;
}

.sp-contact-inner p {
    margin: 9px 0 0;
    color: var(--sp-muted);
}

.sp-contact-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 22px;
}

@media (min-width: 640px) {
    .sp-hero {
        grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
        padding-block: 100px 82px;
    }

    .sp-fit-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .sp-contact-actions {
        flex-direction: row;
        justify-content: center;
    }
}

@media (min-width: 900px) {
    .sp-container {
        width: min(100% - 48px, 1140px);
    }

    .sp-hero-name {
        font-size: var(--e-global-typography-primary-font-size, 3rem);
    }

    .sp-section-head h2,
    .sp-section-head-light h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 460px) {
    .sp-hero {
        padding-block: 100px 48px;
    }

    .sp-hero-name {
        font-size: var(--e-global-typography-primary-font-size, 2.1rem);
    }

    .sp-hero-actions .sp-btn,
    .sp-contact-actions .sp-btn {
        width: 100%;
    }

    .sp-meta-value {
        margin-top: 8px;
        font-size: 30px;
    }

    .sp-hero-meta li {
        gap: 14px;
    }

    .sp-meta-icon {
        width: 42px;
        height: 42px;
    }

    .sp-meta-label {
        font-size: 12px;
    }

    .sp-fit-section,
    .sp-support-section {
        padding-block: 56px 64px;
    }
}
.contact-person {
    display: flex;
    align-items: center;
    gap: 18px;
}

.contact-person__icon {
    flex: 0 0 auto;
    width: 48px;
    height: 48px;
    color: #b3203c;
}

.contact-person__icon svg {
    width: 100%;
    height: 100%;
}

.contact-person__icon circle,
.contact-person__icon path {
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.contact-person__content {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.contact-person__label {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #9b9297;
}

.contact-person__name {
    margin-top: 8px;
    font-size: clamp(32px, 4vw, 42px);
    font-weight: 800;
    letter-spacing: -0.04em;
    color: #1f1f1f;
}

@media (max-width: 600px) {
    .contact-person {
        gap: 14px;
    }

    .contact-person__icon {
        width: 42px;
        height: 42px;
    }

    .contact-person__label {
        font-size: 13px;
    }

    .contact-person__name {
        font-size: 30px;
    }
}
