/* Über uns — zwei Panels */

.about-panel {
    background: var(--ink-2);
    border: 1px solid var(--hairline);
    padding: clamp(2rem, 5vw, 3.5rem);
}

/*
 * Nur Fließtext einfärben — sonst gewinnt diese Regel gegen .circuit-label
 * und die Eyebrow im Panel wird grau statt rot.
 */
.about-panel p:not(.circuit-label) {
    color: var(--steel);
}

/*
 * Linkes Panel: Text oben, darunter das Crew-Foto formatfüllend bis an die
 * Panelkante. Die Polsterung liegt deshalb im .about-intro, nicht im Panel.
 */
.about-panel--stack {
    padding: 0;
    display: flex;
    flex-direction: column;
}

.about-intro {
    padding: clamp(2rem, 5vw, 3.5rem);
    padding-bottom: clamp(1.5rem, 3.5vw, 2.5rem);
}

/* Ohne Crew-Foto verteilt sich der Text wieder über die volle Panelhöhe. */
.about-intro:only-child {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-bottom: clamp(2rem, 5vw, 3.5rem);
}

.about-crew {
    flex: 1 1 auto;
    min-height: 16rem;
    margin: 0;
    overflow: hidden;
    border-top: 1px solid var(--hairline);
}

.about-crew img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-claim {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(1.6rem, 3vw, 2.3rem);
    letter-spacing: -.01em;
    margin-bottom: 1.5rem;
    text-wrap: balance;
}

.big-year {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(2.75rem, 6vw, 4rem);
    line-height: 1;
    letter-spacing: -.01em;
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(237, 241, 240, .35);
}

.about-facts {
    border-top: 1px solid var(--hairline);
}

.about-facts li {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    padding-block: 1rem;
    border-bottom: 1px solid var(--hairline);
    font-size: .95rem;
}

.about-facts li span:first-child {
    color: var(--steel);
}

.about-facts li span:last-child {
    font-weight: 600;
    font-size: .85rem;
    text-align: right;
}
