﻿/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
 * BSH Presse â€“ Styles
 *
 * 4 Sektionen: KurzportrÃ¤t + Ansprechpartner | Presseberichte | Archiv | Newsletter
 * Passend zum BSH-Designsystem (wie Download Center).
 *
 * Autor: Luca Petersen | Com&Sons  |  https://comandsons.com
 * â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

/* â”€â”€ shared / global â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

.bsh-pr {
    --orange:    #eb6a05;
    --blue:      #4283c4;
    --blue-dark: #1b3a61;
    --dark:      #0f1720;
    --light-bg:  #f4f7fb;
    --gray-bg:   #ececec;
    --radius-a:  50px 0 50px 0;
    --radius-b:  0 50px 0 50px;
    font-family: inherit;
    color: var(--dark);
}

.bsh-pr *,
.bsh-pr *::before,
.bsh-pr *::after { box-sizing: border-box; }

/* â”€â”€ Focus visible (a11y) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

.bsh-pr a:focus-visible,
.bsh-pr button:focus-visible,
.bsh-pr input:focus-visible,
.bsh-pr [type="checkbox"]:focus-visible {
    outline: 2px solid var(--orange);
    outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
    .bsh-pr,
    .bsh-pr * {
        transition-duration: 0.01ms !important;
    }
}

.bsh-pr__container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 32px;
}

.bsh-pr__kicker {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--orange);
    margin-bottom: 10px;
}

.bsh-pr__heading {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    line-height: 1.15;
    margin: 0 0 18px;
    color: var(--dark);
}

.bsh-pr__text {
    font-size: 16px;
    line-height: 1.65;
    color: #444;
    margin: 0 0 24px;
}

/* â”€â”€ Buttons (organic BSH style) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

.bsh-pr__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 36px;
    font-size: 15px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: border-radius .35s ease, background .25s ease, color .25s ease;
    text-decoration: none;
    text-align: center;
    background: var(--orange);
    color: #fff;
    border-radius: var(--radius-a);
}

.bsh-pr__btn:hover,
.bsh-pr__btn:focus-visible {
    border-radius: var(--radius-b);
    background: var(--blue-dark);
    color: #fff;
}

.bsh-pr__btn--ghost {
    background: transparent;
    color: var(--orange);
    border: 2px solid var(--orange);
}

.bsh-pr__btn--ghost:hover,
.bsh-pr__btn--ghost:focus-visible {
    background: var(--orange);
    color: #fff;
    border-color: var(--orange);
    border-radius: var(--radius-b);
}

/* consent checkbox row */
.bsh-pr__consent {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 14px;
    line-height: 1.5;
    color: #555;
    cursor: pointer;
    margin-bottom: 20px;
}

.bsh-pr__consent input[type="checkbox"] {
    flex-shrink: 0;
    margin-top: 3px;
    accent-color: var(--orange);
}

.bsh-pr__consent a {
    color: var(--orange);
    text-decoration: underline;
}

/* ===================================================
 * 1. KurzportrÃ¤t
 * =================================================== */

.bsh-pr-s1 {
    background: #f4f7fb;
    padding: 100px 0 60px;
    position: relative;
    overflow: hidden;
    min-height: 50vh;
}
.bsh-pr-s1__bg { position: absolute; inset: 0; z-index: 0; background-size: 20%; background-repeat: no-repeat; background-position: right -60px bottom -60px; opacity: .04; pointer-events: none; }
.bsh-pr-s1 .bsh-pr__container { position: relative; z-index: 2; }

.bsh-pr-s1__text {
    display: flex;
    flex-direction: column;
}

/* -- S1 grid: text left / contact right -------------- */

.bsh-pr-s1__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.bsh-pr-s1__body {
    font-size: 17px;
    line-height: 1.7;
    color: #444;
}

.bsh-pr-s1__body p {
    margin: 0 0 16px;
}

/* -- S1 contact card --------------------------------- */

.bsh-pr-s1__contact-card {
    display: flex;
    gap: 24px;
    align-items: center;
    background: #fff;
    border-radius: 0;
    padding: 32px;
    box-shadow: 0 4px 24px rgba(15, 27, 45, .06);
    border: 1px solid rgba(15, 27, 45, .06);
}

.bsh-pr-s1__contact-photo {
    flex-shrink: 0;
    width: 140px;
    border-radius: 0;
    overflow: hidden;
}

.bsh-pr-s1__contact-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bsh-pr-s1__contact-body {
    flex: 1;
    min-width: 0;
}

.bsh-pr-s1__contact-label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--orange);
    margin-bottom: 6px;
}

.bsh-pr-s1__contact-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    margin: 0 0 4px;
}

.bsh-pr-s1__contact-role {
    font-size: 14px;
    color: var(--orange);
    font-weight: 600;
    margin: 0 0 18px;
}

.bsh-pr-s1__contact-details {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
}

.bsh-pr-s1__contact-details p {
    margin: 0 0 6px;
}

.bsh-pr-s1__contact-details a {
    color: var(--blue);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color .2s ease;
}

.bsh-pr-s1__contact-details a:hover {
    color: var(--dark);
}

.bsh-pr-s1__contact-credit {
    margin-top: 12px;
    font-size: 12px;
    color: #999;
    font-style: italic;
}

/* ===================================================
 * 2. Presseberichte â€“ Card Layout
 * =================================================== */

.bsh-pr-s2 {
    background: var(--light-bg);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.bsh-pr-s2__bg {
    position: absolute;
    left: -40px;
    bottom: -40px;
    width: 360px;
    height: 360px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: .04;
    pointer-events: none;
}

.bsh-pr-s2__header {
    margin-bottom: 48px;
}

.bsh-pr-s2__header .bsh-pr__text {
    max-width: 70ch;
}

/* -- Category ---------------------------------------- */

.bsh-pr-s2__category {
    margin-bottom: 56px;
}

.bsh-pr-s2__category:last-child {
    margin-bottom: 0;
}

.bsh-pr-s2__cat-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    margin: 0 0 20px;
    line-height: 1.25;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--dark);
}

/* -- Cards grid -------------------------------------- */

.bsh-pr-s2__cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 16px;
}

/* -- Single card ------------------------------------- */

.bsh-pr-s2__card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: #fff;
    border-radius: 50px 0 50px 0;
    text-decoration: none;
    color: inherit;
    transition: background .2s ease, box-shadow .2s ease, transform .2s ease;
    border: 1px solid transparent;
}

.bsh-pr-s2__card:hover {
    border-color: rgba(66, 131, 196, .2);
    box-shadow: 0 4px 20px rgba(15, 27, 45, .08);
    transform: translateY(-2px);
}

.bsh-pr-s2__card:focus-visible {
    outline: 2px solid var(--orange);
    outline-offset: 2px;
}

/* -- Article icon ------------------------------------ */

.bsh-pr-s2__card-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 0;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
    background: rgba(66, 131, 196, .10);
    color: var(--blue);
}

.bsh-pr-s2__card-icon--pdf {
    background: rgba(220, 53, 69, .10);
    color: #c0392b;
}

/* -- Card info --------------------------------------- */

.bsh-pr-s2__card-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.bsh-pr-s2__card-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--dark);
    line-height: 1.35;
    word-break: break-word;
}

.bsh-pr-s2__card-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(15, 27, 45, .45);
}

.bsh-pr-s2__card-source {
    font-weight: 600;
    color: var(--blue);
}

.bsh-pr-s2__card-date::before {
    content: "Â·";
    margin-right: 8px;
}

/* -- Arrow button ------------------------------------ */

.bsh-pr-s2__card-arrow {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--orange);
    color: #fff;
    transition: background .2s ease, transform .2s ease;
}

.bsh-pr-s2__card:hover .bsh-pr-s2__card-arrow {
    background: var(--blue-dark);
    transform: translateX(3px);
}

/* -- Archive link ------------------------------------ */

.bsh-pr-s2__archive {
    margin-top: 48px;
    text-align: center;
}

/* ===================================================
 * 3. Archiv der Pressemitteilungen
 * =================================================== */

.bsh-pr-s3 {
    background: #1b3a61;
    padding: 100px 0; position: relative; overflow: hidden;}
.bsh-pr-s3 .bsh-pr__container { position: relative; z-index: 2; }
.bsh-pr-s3 .bsh-pr__heading { color: #fff; }
.bsh-pr-s3 .bsh-pr__kicker { color: var(--orange); }

.bsh-pr-s3__tree {
    position: absolute; right: -40px; bottom: -40px;
    width: 320px; height: 320px;
    background-size: contain; background-repeat: no-repeat; background-position: center;
    filter: brightness(0) invert(1); opacity: .1;
    pointer-events: none; z-index: 0;
}


.bsh-pr-s3__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.bsh-pr-s3__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.bsh-pr-s3__body {
    font-size: 17px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 32px;
}

.bsh-pr-s3__body p {
    margin: 0 0 16px;
}

.bsh-pr-s3__image {
    border-top-left-radius: 50%;
    border-bottom-right-radius: 50%;
    overflow: hidden;
    height: 450px;
}

.bsh-pr-s3__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ===================================================
 * 4. Newsletter
 * =================================================== */

.bsh-pr-s4 {
    background: var(--light-bg, #f4f7fb);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.bsh-pr-s4__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right -60px bottom -60px;
    opacity: .04;
    pointer-events: none;
}

.bsh-pr-s4__wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    background: #fff;
    border-radius: 0;
    padding: 48px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.bsh-pr-s4__row {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

.bsh-pr-s4__input {
    flex: 1;
    padding: 13px 16px;
    font-size: 15px;
    font-family: inherit;
    border: 1.5px solid #d0d5dd;
    border-radius: 0;
    background: #fafbfc;
    color: var(--dark);
    transition: border-color .2s ease, box-shadow .2s ease;
}

.bsh-pr-s4__input:focus {
    outline: none;
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(235, 106, 5, .12);
}

.bsh-pr-s4__btn {
    padding: 13px 32px;
    font-size: 15px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    background: var(--orange);
    color: #fff;
    border-radius: var(--radius-a);
    transition: border-radius .35s ease, background .25s ease;
    white-space: nowrap;
}

.bsh-pr-s4__btn:hover,
.bsh-pr-s4__btn:focus-visible {
    border-radius: var(--radius-b);
    background: var(--blue-dark);
}

/* ===================================================
 * Responsive
 * =================================================== */

@media (max-width: 900px) {
    .bsh-pr-s1__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .bsh-pr-s3__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .bsh-pr-s3__image {
        order: -1;
    }

    .bsh-pr-s4__wrap {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .bsh-pr-s1,
    .bsh-pr-s2,
    .bsh-pr-s3,
    .bsh-pr-s4 {
        padding: 64px 0;
    }

    .bsh-pr-s4__wrap {
        padding: 40px 32px;
    }

    .bsh-pr-s2__cards {
        grid-template-columns: 1fr;
    }

    .bsh-pr-s1__contact-card {
        flex-direction: column;
    }

    .bsh-pr-s1__contact-photo {
        width: 100%;
        height: 200px;
    }
}

@media (max-width: 600px) {
    .bsh-pr__container {
        padding: 0 18px;
    }

    .bsh-pr__heading {
        font-size: clamp(22px, 5vw, 32px);
    }

    .bsh-pr-s4__row {
        flex-direction: column;
    }

    .bsh-pr-s4__btn {
        width: 100%;
    }

    .bsh-pr-s2__card {
        padding: 16px 18px;
    border-radius: 50px 0 50px 0;
}

    .bsh-pr-s2__card-icon {
        width: 42px;
        height: 42px;
        font-size: 11px;
    }

    .bsh-pr-s2__card-arrow {
        width: 36px;
        height: 36px;
    }

    .bsh-pr-s2__card-arrow svg {
        width: 16px;
        height: 16px;
    }

    .bsh-pr-s1__contact-card {
        padding: 24px 20px;
    }

    .bsh-pr-s1__contact-photo {
        height: 180px;
    }

    .bsh-pr-s1__body {
        font-size: 15px;
    }

    .bsh-pr-s3__body {
        font-size: 15px;
    }
}


/* Dark-section text overrides */
.bsh-pr-s3 .bsh-pr-s3__body { color: rgba(255,255,255,.85); }
.bsh-pr-s3 .bsh-pr-s3__body a { color: #fff; text-decoration: underline; }
.bsh-pr-s3 .bsh-pr-s3__body a:hover { color: var(--orange); }