/* ── Sport Section ───────────────────────────────────────────────── */
.sport-section { background: var(--deep); padding: 6rem 3rem; }
.sport-inner   { max-width: 1200px; margin: 0 auto; }
.sport-layout  { display: grid; grid-template-columns: 1.3fr 1fr; gap: 4rem; align-items: start; margin-top: 3rem; }

.screen-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.screen-card { background: var(--smoke); border: 1px solid rgba(242, 235, 217, 0.05); padding: 1.5rem; position: relative; overflow: hidden; transition: border-color 0.3s; min-height: 140px; display: flex; flex-direction: column; justify-content: flex-end; }
.screen-card:hover { border-color: rgba(201, 151, 58, 0.25); }
.screen-card:first-child { grid-column: 1 / -1; min-height: 160px; background: linear-gradient(135deg, rgba(139, 26, 26, 0.15), rgba(201, 151, 58, 0.05), var(--smoke)); }

.sc-icon { position: absolute; top: 1rem; right: 1rem; font-size: 1.75rem; opacity: 0.12; }
.screen-card:first-child .sc-icon { font-size: 2.5rem; }
.sc-tag   { font-family: var(--body); font-size: 0.65rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(242, 235, 217, 0.25); margin-bottom: 0.3rem; }
.sc-title { font-family: var(--serif); font-size: 1.1rem; letter-spacing: 0.04em; color: var(--parch); line-height: 1.1; }
.screen-card:first-child .sc-title { font-size: 1.4rem; }

.sport-features { display: flex; flex-direction: column; gap: 1.25rem; }
.sport-feat { display: flex; gap: 1rem; align-items: flex-start; padding: 1.25rem; border-left: 2px solid transparent; transition: border-color 0.3s, background 0.3s; background: rgba(242, 235, 217, 0.02); }
.sport-feat:hover { border-left-color: var(--gold); background: rgba(201, 151, 58, 0.04); }
.sf-icon  { font-size: 1.35rem; flex-shrink: 0; margin-top: 0.1rem; }
.sf-title { font-family: var(--body); font-size: 0.95rem; font-weight: 700; letter-spacing: 0.04em; color: var(--parch); margin-bottom: 0.3rem; }
.sf-desc  { font-family: var(--fell); font-style: italic; font-size: 0.875rem; color: rgba(242, 235, 217, 0.4); line-height: 1.6; }
