:root {
    --font-heading: 'Marcellus', serif;
}


/* Press Section Styles (refactored to use pagination dots instead of arrows) */
.press {
    background-color: var(--color-primary);
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 80px 64px 64px;
    box-sizing: border-box;
}



.press-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: min(var(--section-max), 100%);
    position: relative;
    /* ensure absolutely positioned controls anchor here */
    padding: 0 20px;
    /* modest gutters; arrows won't clip content */
    box-sizing: border-box;
}

/* Inline heading + quote (desktop) */
.press-header {
    width: 100%;
    margin: 0 0 24px 0;
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    column-gap: 32px;
}

.press-header h1 {
    margin: 0;
    flex: 0 0 auto;
    width: auto;
}

.press-header .press-quote {
    font-family: var(--font-heading);
    font-size: var(--quote-size);
    line-height: 1.3;
    opacity: 0.9;
    text-align: left;
    grid-column: 2;
}

.press h1 {
    /* width: 100%; */
    font-size: clamp(2.2rem, 4vw + 0.5rem, 3.2rem);
    line-height: 1.15;
}

.press-quote {
    margin: 6px 0 0 0;
}

.press-articles {
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 32px;
    overflow-x: auto;
    padding: 8px 4px 8px;
    scrollbar-width: none;
    /* hide scrollbar */
    -ms-overflow-style: none;
    /* IE/Edge */
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    align-items: flex-start;
    /* allow each card height to hug its own content */
}

.press-articles::-webkit-scrollbar {
    display: none;
}

.press-card {
    flex: 0 0 340px;
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 4px;
    padding: 20px 22px 24px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 12px;
    scroll-snap-align: start;
}

.press-card h3 {
    margin: 0;
    font-size: 1.15rem;
    line-height: 1.2;
}

.press-meta {
    font-size: 0.8rem;
    letter-spacing: .5px;
    text-transform: uppercase;
    opacity: .85;
}

.press-text {
    font-size: .9rem;
    /* line-height: 1.4; */
    white-space: pre-line;
    font-family: var(--font-heading);
}

/* Arrow controls */
.press-controls {
    position: absolute;
    top: 50%;
    left: -40;
    width: 110%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    pointer-events: none;
    /* allow underlying content to be interactive except buttons */
    z-index: 5;
    /* raise above cards */
}

.press-arrow {
    pointer-events: auto;
    background: rgba(0, 0, 0, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: #fff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    backdrop-filter: blur(4px);
    transition: background .18s ease, transform .18s ease, opacity .18s ease;
}

.press-arrow[disabled] {
    opacity: .32;
    cursor: default;
}

.press-arrow:hover:not([disabled]),
.press-arrow:focus:not([disabled]) {
    background: rgba(0, 0, 0, 0.75);
    transform: scale(1.05);
}

.press-arrow:focus {
    outline: 2px solid var(--color-primary);
}

.press-arrow--prev {
    margin-left: 8px;
}

.press-arrow--next {
    margin-right: 8px;
}

/* Fallback glyphs in case icon font/sprites missing */
.press-arrow--prev .icon:empty::before {
    content: '\2039';
}

.press-arrow--next .icon:empty::before {
    content: '\203A';
}

.press-arrow .icon {
    display: inline-block;
    font-size: 20px;
    line-height: 1;
}

@media (max-width: 900px) {
    .press-card {
        flex: 0 0 300px;
    }
}

@media (max-width: 700px) {
    .press {
        padding: 72px 12px 56px;
        /* increase usable width by reducing side padding */
    }

    .press-wrapper {
        padding: 0 12px;
    }

    .press-articles {
        gap: 12px;
        padding: 4px 0 8px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
    }

    .press-card {
        flex: 0 0 100%;
        width: 100%;
        max-width: 520px;
        margin: 0 auto;
        scroll-snap-align: center;
    }

    /* Reposition controls below cards on mobile */
    .press-controls {
        position: static;
        width: 100%;
        margin: 16px 0 0;
        display: flex;
        justify-content: center;
        gap: 20px;
        transform: none;
        pointer-events: auto;
    }

    .press-arrow {
        width: 40px;
        height: 40px;
    }

    .press-header {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr;
        align-items: start;
        row-gap: 8px;
    }

    .press-header h1 {
        width: 100%;
    }

    .press-header .press-quote {
        grid-column: 1;
    }

    /* restore normal interaction */
}

/* (Removed duplicated mobile overrides for press-header) */