
.so-tm-public-table table,.so-history-table{width:100%;border-collapse:collapse}
.so-tm-public-table th,.so-history-table th{padding:12px;background:#4e0d12;color:#fff;text-align:left}
.so-tm-public-table td,.so-history-table td{padding:12px;border-bottom:1px solid #dfd1bc}
.so-history{--burgundy:#4e0d12;--gold:#c9a227;--cream:#f7f2e8;--border:#dfd1bc}
.so-history__intro{text-align:center;margin-bottom:34px}
.so-history__intro h2{color:var(--burgundy);font-family:Georgia,serif;font-size:clamp(2rem,5vw,3.2rem)}
.so-history__eyebrow{color:var(--gold);font-weight:800;letter-spacing:.1em;text-transform:uppercase}
.so-history-filters{display:grid;grid-template-columns:1fr 1.4fr auto;gap:16px;align-items:end;margin-bottom:30px;padding:20px;border:1px solid var(--border);border-radius:8px;background:#fff}
.so-history-filters label{display:grid;gap:6px;font-weight:700}
.so-history-filters select{min-height:44px}
.so-history-filter-actions{display:flex;gap:10px;align-items:center}
.so-history-filter-actions button{min-height:44px;padding:0 18px;background:var(--burgundy);color:#fff;border:0;border-radius:4px}
.so-history__timeline{display:grid;gap:24px}
.so-history-card{display:grid;grid-template-columns:90px 1fr;gap:18px}
.so-history-card__year span{display:grid;place-items:center;width:70px;height:70px;border-radius:50%;background:var(--burgundy);color:#fff;border:4px solid var(--cream);box-shadow:0 0 0 2px var(--gold);font-family:Georgia,serif;font-weight:700}
.so-history-card__body{border:1px solid var(--border);border-radius:9px;background:#fff;overflow:hidden}
.so-history-card__header{display:grid;grid-template-columns:1fr 280px;gap:20px;padding:24px}
.so-history-card__kicker{color:var(--gold);font-weight:800;text-transform:uppercase}
.so-history-card__champion{padding:16px;background:var(--burgundy);color:#fff;border-left:3px solid var(--gold)}
.so-history-card__champion span,.so-history-card__champion strong,.so-history-card__champion small{display:block}
.so-history-card__stats{display:grid;grid-template-columns:repeat(3,1fr);border-top:1px solid var(--border);border-bottom:1px solid var(--border)}
.so-history-card__stats div{text-align:center;padding:14px;border-right:1px solid var(--border)}
.so-history-card__stats div:last-child{border-right:0}
.so-history-card__stats strong,.so-history-card__stats span{display:block}
.so-history-card__details summary{padding:16px 24px;cursor:pointer;font-weight:800;color:var(--burgundy)}
.so-history-card__detail-grid{display:grid;grid-template-columns:1.2fr .8fr;gap:24px;padding:0 24px 24px}
.so-history-table .is-winner td{background:rgba(201,162,39,.13);font-weight:700}
.so-history-side-game{padding:12px;border:1px solid var(--border);border-radius:6px;margin-bottom:10px}
.so-history-side-game span,.so-history-side-game strong,.so-history-side-game small{display:block}
@media(max-width:760px){.so-history-filters,.so-history-card__header,.so-history-card__detail-grid{grid-template-columns:1fr}.so-history-card{grid-template-columns:1fr}.so-history-card__stats{grid-template-columns:1fr}}


/* Tournament photo galleries */
.so-photo-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.so-photo-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 7px;
  background: #30070a;
  aspect-ratio: 4 / 3;
  box-shadow: 0 10px 26px rgba(48, 7, 10, .12);
}

.so-photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s ease, filter .3s ease;
}

.so-photo-card:hover img,
.so-photo-card:focus img {
  transform: scale(1.045);
  filter: brightness(.76);
}

.so-photo-card__overlay {
  position: absolute;
  inset: auto 0 0;
  display: grid;
  gap: 2px;
  padding: 28px 15px 13px;
  background: linear-gradient(transparent, rgba(35, 5, 8, .88));
  color: #fff;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .25s ease, transform .25s ease;
}

.so-photo-card:hover .so-photo-card__overlay,
.so-photo-card:focus .so-photo-card__overlay {
  opacity: 1;
  transform: translateY(0);
}

.so-photo-card__overlay small {
  color: #e2ca72;
  font-weight: 800;
  letter-spacing: .08em;
}

.so-gallery-action {
  margin: 24px 0 0;
  text-align: center;
}

.so-gallery-button,
.so-gallery-filter button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 11px 21px;
  border: 1px solid #4e0d12;
  border-radius: 4px;
  background: #4e0d12;
  color: #fff !important;
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-decoration: none;
  text-transform: uppercase;
}

.so-gallery-button:hover,
.so-gallery-filter button:hover {
  border-color: #c9a227;
  background: #c9a227;
  color: #30070a !important;
}

.so-gallery-heading {
  max-width: 760px;
  margin: 0 auto 30px;
  text-align: center;
}

.so-gallery-heading > span {
  color: #c9a227;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.so-gallery-heading h2 {
  margin: 8px 0;
  color: #4e0d12;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 5vw, 3.4rem);
}

.so-gallery-filter {
  display: flex;
  align-items: end;
  gap: 12px;
  margin: 0 0 36px;
  padding: 18px;
  border: 1px solid #dfd1bc;
  border-radius: 8px;
  background: #fff;
}

.so-gallery-filter label {
  display: grid;
  flex: 1;
  gap: 6px;
  color: #4e0d12;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.so-gallery-filter select {
  min-height: 44px;
  padding: 8px 12px;
  border: 1px solid #dfd1bc;
  border-radius: 5px;
  background: #fff;
}

.so-gallery-filter a {
  padding-bottom: 11px;
  color: #4e0d12;
  font-weight: 700;
}

.so-gallery-year {
  margin: 0 0 52px;
}

.so-gallery-year__heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 16px;
  padding-bottom: 9px;
  border-bottom: 2px solid #c9a227;
}

.so-gallery-year__heading h3 {
  margin: 0;
  color: #4e0d12;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
}

.so-gallery-year__heading span {
  color: #766d65;
}

.so-gallery-empty {
  padding: 24px;
  border: 1px solid #dfd1bc;
  border-radius: 8px;
  background: #fff;
  text-align: center;
}

/* Full-resolution carousel/lightbox */
body.so-lightbox-open {
  overflow: hidden;
}

.so-lightbox {
  position: fixed;
  z-index: 999999;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 34px 80px;
  background: rgba(10, 5, 5, .94);
}

.so-lightbox.is-open {
  display: flex;
}

.so-lightbox__figure {
  max-width: min(1200px, 92vw);
  max-height: 90vh;
  margin: 0;
  text-align: center;
}

.so-lightbox__image {
  display: block;
  max-width: 100%;
  max-height: 78vh;
  margin: 0 auto;
  object-fit: contain;
  box-shadow: 0 18px 60px rgba(0, 0, 0, .45);
}

.so-lightbox figcaption {
  display: grid;
  gap: 3px;
  margin-top: 13px;
  color: #fff;
}

.so-lightbox__title {
  color: #e2ca72;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
}

.so-lightbox__caption {
  color: rgba(255,255,255,.78);
}

.so-lightbox__counter {
  color: rgba(255,255,255,.58);
}

.so-lightbox__close,
.so-lightbox__previous,
.so-lightbox__next {
  position: absolute;
  border: 0;
  background: rgba(255,255,255,.08);
  color: #fff;
  cursor: pointer;
}

.so-lightbox__close {
  top: 18px;
  right: 22px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  font-size: 2rem;
}

.so-lightbox__previous,
.so-lightbox__next {
  top: 50%;
  width: 54px;
  height: 72px;
  transform: translateY(-50%);
  font-size: 3rem;
}

.so-lightbox__previous {
  left: 18px;
}

.so-lightbox__next {
  right: 18px;
}

.so-lightbox__close:hover,
.so-lightbox__previous:hover,
.so-lightbox__next:hover {
  background: #c9a227;
  color: #30070a;
}

@media (max-width: 900px) {
  .so-photo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .so-photo-grid {
    grid-template-columns: 1fr;
  }

  .so-gallery-filter {
    align-items: stretch;
    flex-direction: column;
  }

  .so-gallery-filter a {
    padding-bottom: 0;
  }

  .so-lightbox {
    padding: 60px 14px 86px;
  }

  .so-lightbox__previous,
  .so-lightbox__next {
    top: auto;
    bottom: 12px;
    height: 52px;
    transform: none;
  }
}


/* Player profile */
.so-player-profile {
  --so-player-burgundy: #4e0d12;
  --so-player-gold: #c9a227;
  --so-player-green: #0b4f3a;
  --so-player-border: #dfd1bc;
}

.so-player-profile__intro {
  max-width: 760px;
  margin: 0 auto 28px;
  text-align: center;
}

.so-player-profile__intro > span {
  color: var(--so-player-gold);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.so-player-profile__intro h2 {
  margin: 7px 0;
  color: var(--so-player-burgundy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 5vw, 3.35rem);
}

.so-player-selector {
  display: flex;
  align-items: end;
  gap: 12px;
  margin: 0 0 28px;
  padding: 18px;
  border: 1px solid var(--so-player-border);
  border-radius: 8px;
  background: #fff;
}

.so-player-selector label {
  display: grid;
  flex: 1;
  gap: 6px;
  color: var(--so-player-burgundy);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.so-player-selector select {
  min-height: 44px;
}

.so-player-selector button {
  min-height: 44px;
  padding: 0 20px;
  border: 0;
  border-radius: 4px;
  background: var(--so-player-burgundy);
  color: #fff;
  cursor: pointer;
  font-weight: 800;
  text-transform: uppercase;
}

.so-player-hero {
  overflow: hidden;
  border-radius: 10px;
  background: linear-gradient(135deg, #30070a, #6b171d);
  color: #fff;
  box-shadow: 0 18px 48px rgba(48, 7, 10, .18);
}

.so-player-hero__identity {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 30px;
}

.so-player-hero__identity img,
.so-player-hero__placeholder {
  width: 118px;
  height: 118px;
  border: 4px solid rgba(201, 162, 39, .7);
  border-radius: 50%;
  object-fit: cover;
}

.so-player-hero__placeholder {
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.08);
  font-size: 2.4rem;
}

.so-player-hero__identity span {
  color: #e2ca72;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.so-player-hero__identity h3 {
  margin: 3px 0;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 5vw, 3.4rem);
}

.so-player-hero__identity small {
  color: rgba(255,255,255,.7);
}

.so-player-hero__record {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255,255,255,.18);
}

.so-player-hero__record div {
  padding: 20px;
  border-right: 1px solid rgba(255,255,255,.18);
  text-align: center;
}

.so-player-hero__record div:last-child {
  border-right: 0;
}

.so-player-hero__record strong,
.so-player-hero__record span {
  display: block;
}

.so-player-hero__record strong {
  color: #e2ca72;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
}

.so-player-hero__record span {
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.so-player-section {
  margin-top: 26px;
  padding: 24px;
  border: 1px solid var(--so-player-border);
  border-radius: 9px;
  background: #fff;
}

.so-player-section__heading h3 {
  margin: 0 0 16px;
  color: var(--so-player-burgundy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
}

.so-player-highlight-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.so-player-highlight-grid article {
  padding: 18px;
  border: 1px solid var(--so-player-border);
  border-radius: 7px;
  background: #faf8f3;
  text-align: center;
}

.so-player-highlight-grid span,
.so-player-highlight-grid strong {
  display: block;
}

.so-player-highlight-grid span {
  color: #766d65;
  font-size: .67rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.so-player-highlight-grid strong {
  margin-top: 5px;
  color: var(--so-player-green);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.9rem;
}

.so-player-two-column {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 22px;
}

.so-player-table-wrap {
  overflow-x: auto;
}

.so-player-table {
  width: 100%;
  border-collapse: collapse;
}

.so-player-table th {
  padding: 11px 12px;
  background: var(--so-player-burgundy);
  color: #fff;
  font-size: .68rem;
  letter-spacing: .06em;
  text-align: left;
  text-transform: uppercase;
}

.so-player-table td {
  padding: 11px 12px;
  border-bottom: 1px solid var(--so-player-border);
}

.so-player-table .is-winner td {
  background: rgba(201, 162, 39, .13);
  font-weight: 700;
}

.so-player-win-list {
  display: grid;
  gap: 9px;
}

.so-player-win-list div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 13px 15px;
  border: 1px solid var(--so-player-border);
  border-radius: 6px;
}

.so-player-win-list strong {
  color: var(--so-player-green);
}

.so-player-side-games {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.so-player-side-games article {
  padding: 17px;
  border: 1px solid var(--so-player-border);
  border-radius: 7px;
  background: #faf8f3;
}

.so-player-side-games span,
.so-player-side-games strong,
.so-player-side-games small {
  display: block;
}

.so-player-side-games span {
  color: var(--so-player-gold);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.so-player-side-games strong {
  color: var(--so-player-burgundy);
  font-size: 1.2rem;
}

.so-player-side-games small {
  color: #766d65;
}

.so-player-empty {
  padding: 24px;
  border: 1px solid var(--so-player-border);
  border-radius: 8px;
  background: #fff;
  text-align: center;
}

@media (max-width: 800px) {
  .so-player-hero__record,
  .so-player-highlight-grid,
  .so-player-side-games {
    grid-template-columns: repeat(2, 1fr);
  }

  .so-player-two-column {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .so-player-selector {
    align-items: stretch;
    flex-direction: column;
  }

  .so-player-hero__identity {
    align-items: flex-start;
    flex-direction: column;
  }

  .so-player-hero__record,
  .so-player-highlight-grid,
  .so-player-side-games {
    grid-template-columns: 1fr;
  }
}


/* Records page */
.so-records-page {
  --so-records-burgundy: #4e0d12;
  --so-records-dark: #30070a;
  --so-records-gold: #c9a227;
  --so-records-green: #0b4f3a;
  --so-records-border: #dfd1bc;
}

.so-records-page__intro {
  max-width: 780px;
  margin: 0 auto 34px;
  text-align: center;
}

.so-records-page__intro > span {
  color: var(--so-records-gold);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.so-records-page__intro h2 {
  margin: 7px 0 10px;
  color: var(--so-records-burgundy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.05;
}

.so-records-page__intro p {
  color: #766d65;
}

.so-records-featured {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.so-record-feature {
  padding: 25px 18px;
  border: 1px solid var(--so-records-border);
  border-radius: 9px;
  background: #fff;
  text-align: center;
  box-shadow: 0 12px 32px rgba(78, 13, 18, .07);
}

.so-record-feature--primary {
  background: linear-gradient(135deg, var(--so-records-dark), var(--so-records-burgundy));
  color: #fff;
}

.so-record-feature__icon {
  margin-bottom: 6px;
  font-size: 1.8rem;
}

.so-record-feature span,
.so-record-feature strong,
.so-record-feature h3,
.so-record-feature small {
  display: block;
}

.so-record-feature span {
  color: var(--so-records-gold);
  font-size: .67rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.so-record-feature strong {
  margin: 6px 0;
  color: var(--so-records-green);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.55rem;
  line-height: 1;
}

.so-record-feature--primary strong,
.so-record-feature--primary h3 {
  color: #fff;
}

.so-record-feature h3 {
  margin: 5px 0 2px;
  color: var(--so-records-burgundy);
  font-size: 1.05rem;
}

.so-record-feature small {
  color: #766d65;
}

.so-record-feature--primary small {
  color: rgba(255,255,255,.7);
}

.so-records-side-featured {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 14px;
}

.so-records-side-featured article {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 18px;
  border: 1px solid var(--so-records-border);
  border-radius: 8px;
  background: #faf8f3;
}

.so-records-side-featured__icon {
  font-size: 1.8rem;
}

.so-records-side-featured span,
.so-records-side-featured strong,
.so-records-side-featured small {
  display: block;
}

.so-records-side-featured span {
  color: var(--so-records-gold);
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.so-records-side-featured strong {
  color: var(--so-records-burgundy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
}

.so-records-side-featured small {
  color: #766d65;
}

.so-records-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 30px;
}

.so-records-panel {
  overflow: hidden;
  border: 1px solid var(--so-records-border);
  border-radius: 9px;
  background: #fff;
}

.so-records-panel__heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  border-bottom: 1px solid var(--so-records-border);
  background: #faf8f3;
}

.so-records-panel__heading h3 {
  margin: 0;
  color: var(--so-records-burgundy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
}

.so-records-panel__heading span {
  color: #766d65;
  font-size: .72rem;
}

.so-records-table-wrap {
  overflow-x: auto;
}

.so-records-table {
  width: 100%;
  border-collapse: collapse;
}

.so-records-table th {
  padding: 10px 12px;
  background: var(--so-records-burgundy);
  color: #fff;
  font-size: .67rem;
  letter-spacing: .06em;
  text-align: left;
  text-transform: uppercase;
}

.so-records-table td {
  padding: 11px 12px;
  border-bottom: 1px solid var(--so-records-border);
}

.so-records-table tbody tr:last-child td {
  border-bottom: 0;
}

.so-records-table tbody tr:hover td {
  background: rgba(201, 162, 39, .08);
}

.so-records-table strong {
  color: var(--so-records-green);
}

@media (max-width: 900px) {
  .so-records-featured,
  .so-records-side-featured {
    grid-template-columns: repeat(2, 1fr);
  }

  .so-records-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .so-records-featured,
  .so-records-side-featured {
    grid-template-columns: 1fr;
  }

  .so-records-panel__heading {
    align-items: flex-start;
    flex-direction: column;
  }
}

.so-photo-card__overlay em{color:rgba(255,255,255,.72);font-size:.72rem;font-style:normal}.so-gallery-year__heading>div{display:grid;gap:2px}.so-gallery-year__heading small{color:#766d65}


/* Player directory — v5.1 */
.so-player-directory {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.so-player-directory-card {
  position: relative;
  display: flex;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--so-player-border);
  border-radius: 10px;
  background: #fff;
  color: inherit;
  text-decoration: none !important;
  box-shadow: 0 12px 34px rgba(78, 13, 18, .07);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.so-player-directory-card:hover,
.so-player-directory-card:focus-visible {
  border-color: var(--so-player-gold);
  color: inherit;
  transform: translateY(-4px);
  box-shadow: 0 20px 44px rgba(78, 13, 18, .14);
}

.so-player-directory-card__photo {
  display: grid;
  flex: 0 0 112px;
  place-items: center;
  min-height: 100%;
  background: linear-gradient(145deg, #30070a, #6b171d);
}

.so-player-directory-card__photo img {
  width: 100%;
  height: 100%;
  min-height: 210px;
  object-fit: cover;
}

.so-player-directory-card__photo span {
  color: #e2ca72;
  font-size: 2.7rem;
}

.so-player-directory-card__body {
  display: flex;
  flex: 1;
  min-width: 0;
  flex-direction: column;
  padding: 22px 20px 18px;
}

.so-player-directory-card__eyebrow {
  color: var(--so-player-gold);
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.so-player-directory-card h3 {
  overflow: hidden;
  margin: 4px 0 17px;
  color: var(--so-player-burgundy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.75rem;
  line-height: 1.05;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.so-player-directory-card__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--so-player-border);
  border-radius: 6px;
  background: var(--so-player-border);
}

.so-player-directory-card__stats div {
  padding: 10px 8px;
  background: #faf8f3;
  text-align: center;
}

.so-player-directory-card__stats strong,
.so-player-directory-card__stats span {
  display: block;
}

.so-player-directory-card__stats strong {
  color: var(--so-player-green);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  line-height: 1;
}

.so-player-directory-card__stats span {
  margin-top: 3px;
  color: #766d65;
  font-size: .58rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.so-player-directory-card__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 17px;
  color: var(--so-player-burgundy);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.so-player-profile__toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
}

.so-player-profile__back {
  color: var(--so-player-burgundy);
  font-weight: 800;
  text-decoration: none;
}

.so-player-profile__back:hover {
  color: var(--so-player-gold);
}

.so-player-profile__switcher {
  display: flex;
  align-items: center;
  gap: 10px;
}

.so-player-profile__switcher label {
  color: var(--so-player-burgundy);
  font-size: .67rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.so-player-profile__switcher select {
  min-height: 40px;
  min-width: 170px;
}

.so-player-hero__identity h2 {
  margin: 3px 0;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 5vw, 3.4rem);
}

@media (max-width: 1050px) {
  .so-player-directory {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .so-player-directory {
    grid-template-columns: 1fr;
  }

  .so-player-profile__toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .so-player-profile__switcher {
    align-items: stretch;
    flex-direction: column;
  }

  .so-player-profile__switcher select {
    width: 100%;
  }
}

@media (max-width: 420px) {
  .so-player-directory-card {
    flex-direction: column;
  }

  .so-player-directory-card__photo {
    flex-basis: auto;
    height: 180px;
  }

  .so-player-directory-card__photo img {
    min-height: 180px;
  }
}


/* Compact player directory — v5.2 */
.so-player-directory-tools {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(190px, .35fr);
  gap: 14px;
  margin-bottom: 18px;
}

.so-player-directory-search,
.so-player-directory-sort {
  display: grid;
  gap: 6px;
}

.so-player-directory-search span,
.so-player-directory-sort span {
  color: var(--so-player-burgundy);
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.so-player-directory-search input,
.so-player-directory-sort select {
  width: 100%;
  min-height: 46px;
  margin: 0;
  padding: 9px 13px;
  border: 1px solid var(--so-player-border);
  border-radius: 6px;
  background: #fff;
  color: #25211f;
  font: inherit;
}

.so-player-directory-search input:focus,
.so-player-directory-sort select:focus {
  border-color: var(--so-player-gold);
  outline: 2px solid rgba(201, 162, 39, .18);
}

.so-player-directory-table-wrap {
  overflow: hidden;
  border: 1px solid var(--so-player-border);
  border-radius: 9px;
  background: #fff;
  box-shadow: 0 14px 36px rgba(78, 13, 18, .07);
}

.so-player-directory-table {
  width: 100%;
  border-collapse: collapse;
}

.so-player-directory-table th {
  padding: 13px 17px;
  background: var(--so-player-burgundy);
  color: #fff;
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .07em;
  text-align: left;
  text-transform: uppercase;
}

.so-player-directory-table th:not(:first-child) {
  text-align: center;
}

.so-player-directory-row {
  cursor: pointer;
  transition: background .18s ease, box-shadow .18s ease;
}

.so-player-directory-row:hover,
.so-player-directory-row:focus {
  background: rgba(201, 162, 39, .09);
  outline: none;
  box-shadow: inset 4px 0 0 var(--so-player-gold);
}

.so-player-directory-row td {
  padding: 15px 17px;
  border-bottom: 1px solid var(--so-player-border);
  text-align: center;
  vertical-align: middle;
}

.so-player-directory-row:last-child td {
  border-bottom: 0;
}

.so-player-directory-row td:first-child {
  text-align: left;
}

.so-player-directory-name {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--so-player-burgundy) !important;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
  text-decoration: none !important;
}

.so-player-directory-name:hover {
  color: var(--so-player-gold) !important;
}

.so-player-directory-row td:first-child small {
  display: block;
  margin-top: 3px;
  color: #766d65;
  font-size: .7rem;
}

.so-player-directory-trophy {
  font-size: .95rem;
}

.so-player-directory-row td > strong {
  color: var(--so-player-green);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
}

.so-player-directory-open {
  width: 54px;
}

.so-player-directory-open a {
  display: inline-grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 50%;
  background: #f7f2e8;
  color: var(--so-player-burgundy) !important;
  font-weight: 800;
  text-decoration: none !important;
}

.so-player-directory-row:hover .so-player-directory-open a,
.so-player-directory-open a:hover {
  background: var(--so-player-gold);
  color: #30070a !important;
}

.so-player-directory-empty {
  padding: 30px;
  color: #766d65;
  text-align: center;
}

@media (max-width: 700px) {
  .so-player-directory-tools {
    grid-template-columns: 1fr;
  }

  .so-player-directory-table,
  .so-player-directory-table tbody,
  .so-player-directory-row,
  .so-player-directory-row td {
    display: block;
    width: 100%;
  }

  .so-player-directory-table thead {
    display: none;
  }

  .so-player-directory-row {
    position: relative;
    padding: 15px 54px 14px 16px;
    border-bottom: 1px solid var(--so-player-border);
  }

  .so-player-directory-row:last-child {
    border-bottom: 0;
  }

  .so-player-directory-row td {
    display: inline-flex;
    width: auto;
    align-items: baseline;
    gap: 5px;
    padding: 2px 14px 2px 0;
    border: 0;
    text-align: left;
  }

  .so-player-directory-row td:first-child {
    display: block;
    padding: 0 0 8px;
  }

  .so-player-directory-row td:not(:first-child):not(.so-player-directory-open)::before {
    color: #766d65;
    content: attr(data-label) ":";
    font-size: .62rem;
    font-weight: 800;
    letter-spacing: .05em;
    text-transform: uppercase;
  }

  .so-player-directory-open {
    position: absolute;
    top: 50%;
    right: 14px;
    width: auto !important;
    padding: 0 !important;
    transform: translateY(-50%);
  }
}
