.public-editorial {
    max-width: 52rem;
}

.editorial-header {
    margin-bottom: clamp(3rem, 8vw, 5.5rem);
}

.editorial-header h1 {
    font-size: clamp(2.5rem, 7vw, 4.75rem);
    line-height: 1.05;
    letter-spacing: -0.035em;
    max-width: 13ch;
    margin-inline: auto;
}

.editorial-eyebrow {
    color: var(--os-primary-text);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.editorial-deck {
    max-width: 42rem;
    font-size: clamp(1.1rem, 2.5vw, 1.35rem);
    line-height: 1.65;
    margin-top: 1.5rem;
}

.editorial-prose {
    font-size: 1.075rem;
    line-height: 1.8;
}

.editorial-prose section + section {
    margin-top: clamp(3rem, 8vw, 5rem);
}

.editorial-prose h2 {
    font-size: clamp(1.65rem, 4vw, 2.25rem);
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 1.25rem;
}

.editorial-prose h3 {
    font-size: 1.25rem;
    margin-top: 2rem;
}

.editorial-prose p,
.editorial-prose li {
    color: var(--bs-secondary-color);
}

.story-moment {
    border-inline-start: 0.25rem solid var(--bs-primary);
    color: var(--bs-body-color) !important;
    font-size: clamp(1.35rem, 3.5vw, 1.8rem);
    font-weight: 600;
    line-height: 1.45;
    margin: 2rem 0;
    padding: 0.5rem 0 0.5rem 1.5rem;
}

.story-proof {
    margin: clamp(3rem, 8vw, 5rem) 0;
}

.story-proof img {
    background: var(--bs-body-bg);
    border: 1px solid var(--bs-border-color);
    border-radius: 1rem;
    box-shadow: 0 1.25rem 3rem rgba(0, 0, 0, 0.08);
    display: block;
    height: auto;
    max-width: 100%;
    width: 100%;
}

.story-proof figcaption {
    margin-top: 0.85rem;
    text-align: center;
}

.editorial-cta {
    background: var(--bs-body-tertiary);
    border: 1px solid var(--bs-border-color);
    border-radius: 1.25rem;
    padding: clamp(2rem, 6vw, 4rem);
}

.editorial-cta p:not(.editorial-eyebrow) {
    max-width: 36rem;
}

.playbook-header {
    margin-bottom: 3rem;
}

.playbook-back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
}

.playbook-more {
    border-top: 1px solid var(--bs-border-color);
    margin-top: 4rem;
    padding-top: 2rem;
}

.sport-choice-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
    height: 100%;
    min-height: 7.75rem;
    padding: 1.25rem;
    border: 1px solid var(--bs-border-color);
    border-radius: 1rem;
    background: var(--bs-body-bg);
    color: inherit;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.sport-choice-card:hover,
.sport-choice-card:focus-visible {
    transform: translateY(-2px);
    border-color: var(--bs-primary);
    background: rgba(var(--bs-primary-rgb), 0.03);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.06);
    color: inherit;
}

[data-bs-theme="dark"] .sport-choice-card:hover,
[data-bs-theme="dark"] .sport-choice-card:focus-visible {
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.28);
}

.sport-choice-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    flex-shrink: 0;
    border-radius: 0.85rem;
    background: rgba(var(--bs-primary-rgb), 0.1);
}

.sport-choice-icon .os-sport-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--os-primary-text);
}

.sport-choice-body {
    flex: 1;
    min-width: 0;
}

.sport-choice-name {
    display: block;
    font-weight: 700;
    color: var(--bs-body-color);
}

.sport-choice-tagline {
    display: block;
    margin-top: 0.15rem;
    font-size: 0.85rem;
    line-height: 1.4;
    color: var(--bs-secondary-color);
}

.solution-card,
.playbook-card {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    height: 100%;
    padding: 1.5rem;
    border: 1px solid var(--bs-border-color);
    border-radius: 1rem;
    background: var(--bs-body-bg);
    color: inherit;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.solution-card:hover,
.solution-card:focus-visible,
.playbook-card:hover,
.playbook-card:focus-visible {
    transform: translateY(-2px);
    border-color: var(--bs-primary);
    background: rgba(var(--bs-primary-rgb), 0.03);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.06);
    color: inherit;
}

[data-bs-theme="dark"] .solution-card:hover,
[data-bs-theme="dark"] .solution-card:focus-visible,
[data-bs-theme="dark"] .playbook-card:hover,
[data-bs-theme="dark"] .playbook-card:focus-visible {
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.28);
}

.solution-card-title {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--bs-body-color);
}

.solution-card-tagline {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--os-primary-text);
}

.solution-card-problem {
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--bs-secondary-color);
}

.playbook-card-title {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--bs-body-color);
}

.playbook-card-summary {
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--bs-secondary-color);
}

.solution-card-arrow,
.playbook-card-arrow {
    margin-top: auto;
    align-self: flex-end;
    color: var(--bs-secondary-color);
    transition: transform 0.2s ease, color 0.2s ease;
}

.solution-card:hover .solution-card-arrow,
.solution-card:focus-visible .solution-card-arrow,
.playbook-card:hover .playbook-card-arrow,
.playbook-card:focus-visible .playbook-card-arrow {
    transform: translateX(3px);
    color: var(--bs-primary);
}

@media (max-width: 575.98px) {
    .editorial-prose {
        font-size: 1rem;
        line-height: 1.7;
    }

    .story-moment {
        padding-inline-start: 1rem;
    }
}
