@import url("https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@600;700;800&family=DM+Sans:wght@400;500;600;700&display=swap");
:root {
  font-family: "DM Sans", system-ui, sans-serif;
  color: #17221d;
  background: #f4f6f5;
  font-size: 16px;
  font-synthesis: none;
  --ink: #17221d;
  --muted: #607068;
  --line: #dce3de;
  --green: #126e4c;
  --mint: #c7f277;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
}
button,
input,
select {
  font: inherit;
}
button,
a,
select,
input {
  touch-action: manipulation;
}
button,
a {
  cursor: pointer;
}
button {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  padding: 10px 16px;
  border-radius: 7px;
  font-weight: 600;
}
button:hover {
  border-color: var(--green);
  background: #edf5ef;
}
button:disabled {
  cursor: wait;
  opacity: 0.55;
}
a {
  color: var(--green);
  text-underline-offset: 4px;
}
button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
summary:focus-visible {
  outline: 3px solid #8dbe31;
  outline-offset: 3px;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1 {
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: clamp(2.5rem, 4.5vw, 4rem);
  line-height: 1.02;
  margin-bottom: 0;
  font-weight: 700;
  letter-spacing: -0.025em;
}
h2 {
  font-size: 1.25rem;
  line-height: 1.25;
}
h3 {
  font-size: 1.125rem;
  line-height: 1.3;
}
p {
  line-height: 1.65;
  color: var(--muted);
}
small {
  font-size: 0.8125rem;
}
select {
  border: 1px solid #cdd8d0;
  background: white;
  color: var(--ink);
  padding: 10px 35px 10px 12px;
  border-radius: 7px;
  max-width: 100%;
  min-height: 44px;
}
input {
  border: 1px solid #cdd8d0;
  background: #fff;
  padding: 12px;
  border-radius: 7px;
  width: 100%;
  min-height: 44px;
}
.mast {
  background: #111b16;
  color: #fff;
  padding: 22px max(24px, calc((100vw - 1250px) / 2));
  display: flex;
  align-items: center;
  gap: 35px;
  min-height: 92px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: white;
  text-decoration: none;
  white-space: nowrap;
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.07em;
}
.league-picker {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 0;
}
.league-picker label {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: #aebeb4;
}
.league-picker select {
  background: #243129;
  border-color: #435146;
  color: #fff;
  max-width: 390px;
}
.sleeper-link {
  color: #c7f277;
  font-size: 0.875rem;
  white-space: nowrap;
}
.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 max(24px, calc((100vw - 1250px) / 2));
  background: #fff;
  border-bottom: 1px solid var(--line);
  gap: 12px;
}
.nav-shell nav {
  display: flex;
  gap: 28px;
  overflow: auto;
}
.nav-item {
  border: 0;
  background: transparent;
  border-radius: 0;
  padding: 20px 0 17px;
  white-space: nowrap;
  border-bottom: 3px solid transparent;
  font-size: 0.9375rem;
  color: #65726a;
}
.nav-item.active {
  border-bottom-color: var(--green);
  color: var(--green);
}
.sync {
  font-size: 0.875rem;
  padding: 7px 12px;
  white-space: nowrap;
}
.statusline {
  max-width: 1250px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 17px 0;
  color: var(--muted);
  font-size: 0.8125rem;
}
.statusline span:last-child {
  text-align: right;
}
main {
  max-width: 1250px;
  margin: 20px auto 70px;
}
.page-title {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  margin-bottom: 30px;
}
.eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.13em;
  font-weight: 700;
  color: var(--green);
  display: block;
  margin-bottom: 12px;
}
.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
  margin-bottom: 30px;
  gap: 25px;
}
.metrics > div {
  border-right: 1px solid var(--line);
  padding-right: 20px;
}
.metrics > div:last-child {
  border: 0;
}
.metrics span,
.metrics small {
  display: block;
  color: var(--muted);
  font-size: 0.875rem;
}
.metrics b {
  display: block;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 3rem;
  font-weight: 600;
  line-height: 1.3;
}
.metrics em {
  font-family: "DM Sans", sans-serif;
  font-size: 0.875rem;
  font-style: normal;
  margin-left: 6px;
}
.home-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.9fr) minmax(260px, 1fr);
  gap: 24px;
}
.panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 24px;
  min-width: 0;
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}
.section-head h2 {
  margin: 0;
}
.badge {
  display: inline-block;
  padding: 6px 9px;
  background: #eff3f0;
  color: #596a60;
  border-radius: 5px;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.4;
}
.badge.green {
  background: #e4f4ea;
  color: #176442;
}
.badge.amber {
  background: #fff0d9;
  color: #87551f;
}
.table-wrap {
  overflow: auto;
}
table {
  width: 100%;
  border-collapse: collapse;
  white-space: nowrap;
  text-align: left;
  font-size: 0.875rem;
}
th {
  font-size: 0.75rem;
  color: var(--muted);
  font-weight: 600;
  border-bottom: 1px solid var(--line);
  padding: 12px 10px;
}
td {
  padding: 15px 10px;
  border-bottom: 1px solid #edf0ed;
}
th:first-child,
td:first-child {
  padding-left: 0;
}
tbody tr:last-child td {
  border-bottom: 0;
}
.rank {
  color: #7c887f;
  width: 30px;
  font-variant-numeric: tabular-nums;
}
.mono {
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum" 1;
}
.team {
  display: flex;
  align-items: center;
  gap: 11px;
}
.team strong {
  display: block;
  max-width: 240px;
  overflow: hidden;
  text-overflow: ellipsis;
}
.team small {
  display: block;
  color: var(--muted);
  margin-top: 3px;
}
.avatar {
  background: #eaf0ec;
  color: #4d6857;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.75rem;
}
.text-button {
  background: transparent;
  border: 0;
  padding: 0;
  color: var(--green);
  font-size: 0.875rem;
  text-align: left;
}
.leader-panel > .text-button {
  margin-top: 20px;
}
.champion-card {
  background: #14281e;
  color: #fff;
  padding: 26px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}
.champion-card .eyebrow {
  color: var(--mint);
}
.trophy-word {
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 5.5rem;
  line-height: 1;
  color: var(--mint);
  border-bottom: 1px solid #45603d;
  margin-bottom: 24px;
  padding-bottom: 16px;
}
.champion-card h2 {
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 2.4rem;
  margin-bottom: 10px;
}
.champion-card p {
  color: #b8cbbd;
  font-size: 0.875rem;
}
.champion-card button {
  color: #d9f6b4;
  border-color: #4e6555;
  background: transparent;
  font-size: 0.875rem;
}
.mini-panel {
  margin-top: 20px;
}
.mini-panel h3 {
  margin-bottom: 6px;
}
.mini-panel p {
  font-size: 0.875rem;
}
.lower {
  margin-top: 30px;
}
.three-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.stat-story > b {
  display: block;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 3rem;
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 14px;
}
.stat-story h3 {
  margin-bottom: 7px;
}
.stat-story p {
  font-size: 0.875rem;
  margin-bottom: 0;
}
.stat-story .text-button {
  margin-top: 15px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: 0.875rem;
  color: var(--muted);
  min-width: 150px;
}
.method {
  font-size: 0.8125rem;
  line-height: 1.65;
  color: #68766d;
  margin-top: 18px;
}
.title-count {
  background: #edf3d8;
  color: #496222;
  padding: 3px 9px;
  border-radius: 5px;
}
.champions {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.champions > div {
  background: #fff;
  border: 1px solid var(--line);
  border-top: 3px solid #bbd778;
  padding: 22px;
  border-radius: 6px;
}
.champions span {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 2rem;
  color: var(--green);
}
.champions h3 {
  margin: 12px 0 7px;
  overflow-wrap: anywhere;
}
.champions small {
  color: var(--muted);
}
.rival-controls {
  display: flex;
  gap: 20px;
}
.rival-controls .field {
  flex: 1;
  max-width: 400px;
}
.duel {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 25px;
  padding: 35px 20px;
  border-bottom: 1px solid var(--line);
  margin-top: 25px;
}
.duel > div {
  text-align: center;
}
.duel h2 {
  font-size: 1.3rem;
}
.duel b {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 6rem;
  line-height: 1;
  display: block;
  color: var(--green);
}
.duel span {
  display: block;
  color: var(--muted);
  font-size: 0.8125rem;
  letter-spacing: 0.15em;
  margin-top: 10px;
}
.vs {
  font-style: italic;
  font-size: 1.25rem;
  color: var(--muted);
}
.vs small {
  display: block;
  font-style: normal;
  margin-top: 6px;
}
.winner {
  color: var(--green);
  font-weight: 700;
}
.intro-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.intro-row p {
  margin: 0;
  max-width: 700px;
}
.trade-toolbar {
  display: flex;
  gap: 20px;
  align-items: end;
  margin-top: 25px;
}
.search-field {
  max-width: 550px;
  flex: 1;
  font-size: 0.875rem;
  color: var(--muted);
}
.search-field input {
  display: block;
  margin-top: 7px;
}
.trade-card {
  margin-top: 22px;
}
.trade-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}
.trade-top .eyebrow {
  margin: 0;
  color: var(--muted);
}
.trade-card h2 {
  font-size: 1.4rem;
  margin-bottom: 22px;
  overflow-wrap: anywhere;
}
.muted {
  color: #93a196;
  font-weight: 400;
  padding: 0 8px;
}
.trade-sides {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 24px;
}
.trade-sides > section {
  background: #f7f9f7;
  border: 1px solid #e4eae5;
  border-radius: 8px;
  padding: 20px;
}
.side-heading {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 15px;
  font-size: 0.875rem;
}
.side-heading > span {
  max-width: 70%;
}
.side-heading b {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 2rem;
  line-height: 1;
  text-align: right;
}
.side-heading small {
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-size: 0.75rem;
  display: block;
  margin-top: 5px;
  white-space: nowrap;
  color: var(--muted);
}
.trade-sides ul {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
}
.trade-sides li {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 15px;
  padding: 12px 0;
  border-top: 1px solid #e1e8e2;
  font-size: 0.875rem;
}
.trade-sides li strong {
  font-weight: 600;
}
.trade-sides li small {
  display: block;
  color: var(--muted);
  margin-top: 5px;
  line-height: 1.4;
}
.verdict {
  margin-top: 20px;
  border-left: 3px solid #a9d372;
  padding: 3px 0 3px 14px;
  font-size: 0.875rem;
}
.verdict span {
  display: block;
  color: var(--muted);
  margin-top: 6px;
  font-size: 0.8125rem;
}
.trade-card details {
  border-top: 1px solid var(--line);
  margin-top: 20px;
  padding-top: 17px;
}
.trade-card summary {
  font-weight: 600;
  color: var(--green);
  cursor: pointer;
  font-size: 0.875rem;
}
.trade-card details > a {
  font-size: 0.875rem;
}
.inline-link {
  border: 0;
  background: none;
  padding: 0;
  font-size: 0.8125rem;
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: 3px;
  margin-top: 6px;
}
.chart svg {
  width: 100%;
  height: auto;
  max-height: 220px;
  margin-top: 18px;
}
.chart-legend {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
  font-size: 0.8125rem;
}
.edition-actions {
  display: flex;
  gap: 10px;
}
.edition-controls {
  display: flex;
  align-items: end;
  gap: 20px;
  margin-bottom: 28px;
}
.edition-controls p {
  margin-bottom: 6px;
  max-width: 440px;
}
.newspaper {
  max-width: 930px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid #cbd4cc;
  padding: 38px 48px;
  box-shadow: 0 7px 22px #18291c08;
}
.edition-top {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-bottom: 1px solid #25362b;
  padding-bottom: 14px;
}
.paper-name {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.5rem, 8vw, 6.5rem);
  font-weight: 700;
  letter-spacing: -0.06em;
  text-align: center;
  line-height: 1.15;
  margin: 12px 0;
}
.paper-sub {
  font-size: 0.6875rem;
  text-align: center;
  letter-spacing: 0.17em;
  border-top: 3px solid #25362b;
  border-bottom: 1px solid #25362b;
  padding: 10px 0;
}
.edition-story {
  text-align: center;
  padding: 30px 20px;
}
.paper-score {
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 5rem;
  line-height: 1;
  color: var(--green);
  font-weight: 700;
}
.edition-story h3 {
  font-family: Georgia, serif;
  font-size: 2.3rem;
  line-height: 1.15;
  margin: 17px 0;
}
.edition-story p {
  max-width: 660px;
  margin: 0 auto;
  color: #44544a;
}
.paper-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 23px 0;
  gap: 30px;
}
.paper-columns section + section {
  border-left: 1px solid var(--line);
  padding-left: 30px;
}
.paper-columns h3 {
  font-family: Georgia, serif;
  font-size: 1.35rem;
}
.paper-columns p {
  font-size: 0.9375rem;
  margin: 0;
}
.scoreboard-label {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.65rem;
  margin: 24px 0 14px;
}
.paper-games > div {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 16px;
  align-items: center;
  font-size: 0.875rem;
  padding: 13px 0;
  border-top: 1px solid #e1e6e2;
}
.paper-games span {
  overflow-wrap: anywhere;
}
.paper-games span:last-child {
  text-align: right;
}
.paper-games b {
  font-variant-numeric: tabular-nums;
}
.paper-games em {
  color: #8b968f;
  font-style: normal;
  padding: 0 6px;
}
.paper-footer {
  margin-top: 22px;
  font-size: 0.875rem;
}
.empty {
  padding: 40px 10px;
}
.empty h2 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 2rem;
}
.empty p {
  font-size: 0.875rem;
}
.draft-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}
.draft-list > div {
  display: flex;
  gap: 14px;
  padding: 13px 0;
  border-top: 1px solid var(--line);
  font-size: 0.875rem;
}
.draft-list span {
  color: var(--muted);
}
footer {
  max-width: 1250px;
  margin: 0 auto;
  padding: 25px 0 40px;
  border-top: 1px solid var(--line);
  display: flex;
  gap: 50px;
  justify-content: space-between;
  font-size: 0.8125rem;
  color: var(--muted);
}
footer > span {
  font-weight: 700;
  letter-spacing: 0.06em;
  white-space: nowrap;
}
footer small {
  display: block;
  font-weight: 400;
  letter-spacing: 0;
  margin-top: 5px;
}
footer details {
  max-width: 650px;
}
footer summary {
  cursor: pointer;
}
footer p {
  font-size: 0.8125rem;
}
.loading {
  padding: 80px 24px;
}
.loading b {
  color: var(--green);
}
.loading h1 {
  margin: 25px 0;
}
.loading p {
  margin-top: 20px;
}
@media (max-width: 1320px) {
  main,
  .statusline,
  footer {
    margin-left: 28px;
    margin-right: 28px;
  }
}
@media (max-width: 950px) {
  .mast {
    gap: 20px;
  }
  .league-picker label {
    display: none;
  }
  .brand {
    font-size: 0.9375rem;
  }
  .sleeper-link {
    display: none;
  }
  .home-grid {
    grid-template-columns: 1fr;
  }
  .home-grid aside {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .mini-panel {
    margin-top: 0;
  }
  .champions {
    grid-template-columns: repeat(3, 1fr);
  }
  .nav-shell nav {
    gap: 23px;
  }
  .metrics {
    gap: 15px;
  }
  .section-head {
    flex-wrap: wrap;
  }
  .newspaper {
    padding: 30px;
  }
  .team strong {
    max-width: 200px;
  }
}
@media (max-width: 640px) {
  .mast {
    padding: 18px;
    flex-wrap: wrap;
    gap: 16px;
  }
  .brand {
    font-size: 1rem;
  }
  .league-picker {
    flex-basis: 100%;
  }
  .league-picker select {
    max-width: none;
    width: 100%;
  }
  .nav-shell {
    padding: 0 18px;
    flex-wrap: wrap;
    gap: 0;
  }
  .nav-shell nav {
    width: 100%;
    gap: 24px;
  }
  .nav-item {
    font-size: 0.875rem;
    padding-top: 16px;
  }
  .sync {
    margin: 10px 0 10px auto;
  }
  .statusline {
    font-size: 0.75rem;
    align-items: start;
    gap: 18px;
  }
  .statusline span {
    max-width: 50%;
  }
  main,
  .statusline,
  footer {
    margin-left: 18px;
    margin-right: 18px;
  }
  main {
    margin-top: 15px;
  }
  .page-title {
    align-items: start;
    flex-wrap: wrap;
    margin-bottom: 24px;
  }
  .metrics {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 23px;
  }
  .metrics > div:nth-child(2) {
    border: 0;
  }
  .metrics b {
    font-size: 2.7rem;
  }
  .metrics span,
  .metrics small {
    font-size: 0.8125rem;
  }
  .home-grid aside,
  .three-grid {
    grid-template-columns: 1fr;
  }
  .panel {
    padding: 19px;
  }
  .home-grid {
    gap: 20px;
  }
  .champions {
    grid-template-columns: repeat(2, 1fr);
  }
  .champions > div {
    padding: 17px;
  }
  .rival-controls {
    flex-direction: column;
  }
  .duel {
    gap: 10px;
    padding: 25px 0;
  }
  .duel h2 {
    font-size: 1rem;
    overflow-wrap: anywhere;
  }
  .duel b {
    font-size: 4rem;
  }
  .trade-toolbar {
    align-items: stretch;
    flex-direction: column;
    gap: 15px;
  }
  .trade-sides {
    gap: 14px;
  }
  .trade-sides > section {
    padding: 16px;
  }
  .trade-card h2 {
    font-size: 1.2rem;
  }
  .intro-row {
    align-items: start;
  }
  .intro-row .badge {
    white-space: nowrap;
  }
  .edition-controls {
    flex-wrap: wrap;
    gap: 12px;
  }
  .edition-controls .field {
    flex: 1;
    min-width: 100px;
  }
  .edition-controls p {
    flex-basis: 100%;
    margin-top: 0;
  }
  .edition-actions {
    width: 100%;
  }
  .newspaper {
    padding: 22px 18px;
  }
  .edition-top {
    font-size: 0.75rem;
    flex-wrap: wrap;
    gap: 8px;
  }
  .paper-sub {
    font-size: 0.75rem;
    letter-spacing: 0.06em;
  }
  .edition-story {
    padding: 26px 0;
  }
  .edition-story h3 {
    font-size: 1.9rem;
  }
  .paper-columns {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .paper-columns section + section {
    border-left: 0;
    padding: 20px 0 0;
    border-top: 1px solid var(--line);
  }
  .paper-games > div {
    grid-template-columns: 1fr 1fr;
    gap: 7px;
  }
  .paper-games b {
    grid-column: 1/-1;
    grid-row: 2;
    text-align: center;
  }
  .paper-games span:last-child {
    grid-column: 2;
    grid-row: 1;
  }
  .draft-list {
    grid-template-columns: 1fr;
  }
  .team strong {
    max-width: 180px;
  }
  footer {
    flex-direction: column;
    gap: 22px;
  }
}
@media print {
  body {
    background: #fff;
  }
  .mast,
  .nav-shell,
  .statusline,
  .page-title,
  .edition-controls,
  footer {
    display: none !important;
  }
  main {
    margin: 0;
    max-width: none;
  }
  .newspaper {
    border: 0;
    box-shadow: none;
    max-width: none;
    padding: 0;
  }
  .paper-name {
    font-size: 4rem;
  }
  .newspaper button {
    display: none;
  }
  .paper-score {
    font-size: 3.5rem;
  }
  .edition-story {
    padding: 20px 0;
  }
  .paper-columns,
  .paper-games > div {
    break-inside: avoid;
  }
  .newspaper p {
    color: #222;
  }
  .paper-sub {
    font-size: 10pt;
  }
}
/* Manager history and the second-edition editorial surfaces */
.manager-status {
  display: block;
  margin: 5px 0 0 43px;
  font-size: 0.75rem;
  color: #77817c;
}
.played-years {
  display: block;
  color: var(--muted);
  max-width: 130px;
  white-space: normal;
  font-size: 0.75rem;
  line-height: 1.5;
  margin-top: 4px;
}
.trade-workspace {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.4fr);
  gap: 22px;
  margin-top: 25px;
  align-items: start;
}
.trade-browser {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
}
.trade-list-head {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #68756d;
  padding: 17px 18px;
  border-bottom: 1px solid var(--line);
}
.trade-scroll {
  max-height: 780px;
  overflow: auto;
  scrollbar-width: thin;
}
.trade-row {
  display: block;
  width: 100%;
  text-align: left;
  border: 0;
  border-bottom: 1px solid #e4e8e5;
  border-radius: 0;
  padding: 16px 18px;
  font-weight: 400;
  border-left: 4px solid transparent;
  background: #fff;
}
.trade-row:hover {
  background: #f5f8f4;
}
.trade-row.selected {
  background: #edf5e8;
  border-left-color: #357b3f;
}
.trade-row-meta {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  color: #6a776d;
  font-size: 0.75rem;
  margin-bottom: 8px;
}
.trade-row-meta em {
  font-style: normal;
  color: #8c6028;
}
.trade-row-title {
  display: block;
  font-weight: 700;
  font-size: 0.9375rem;
  line-height: 1.45;
  padding-right: 62px;
  position: relative;
  overflow-wrap: anywhere;
  margin-bottom: 9px;
}
.trade-row-title i {
  font-style: normal;
  color: #8c9b8d;
  padding: 0 4px;
}
.trade-row-title b {
  position: absolute;
  right: 0;
  top: 0;
  font-size: 0.9375rem;
  font-variant-numeric: tabular-nums;
  color: #266c47;
}
.trade-row-assets {
  display: block;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  font-size: 0.8125rem;
  line-height: 1.6;
  color: #657166;
}
.trade-row-assets strong {
  font-weight: 500;
  color: #233a2a;
}
.receipt-pane {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 28px;
  min-width: 0;
}
.receipt-detail > h2 {
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 2.4rem;
  line-height: 1.05;
  margin: 16px 0 12px;
  overflow-wrap: anywhere;
}
.receipt-dek {
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: 20px;
}
.score-duel {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  gap: 22px;
}
.score-side span {
  display: block;
  font-weight: 600;
  font-size: 0.875rem;
  overflow-wrap: anywhere;
}
.score-side b {
  display: block;
  font-size: 2.5rem;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-variant-numeric: tabular-nums;
  line-height: 1.3;
  color: #27734d;
}
.score-side.side-1 b {
  color: #bb6935;
}
.score-side small {
  font-size: 0.75rem;
  color: var(--muted);
}
.return-bar {
  height: 6px;
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  margin: 14px 0 25px;
  gap: 3px;
}
.return-bar span {
  background: #2c8258;
}
.return-bar .bar-1 {
  background: #d38a58;
}
.return-bar .bar-2 {
  background: #8b72b6;
}
.asset-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr));
  gap: 25px;
}
.asset-columns h3 {
  font-size: 0.875rem;
  margin-bottom: 10px;
  color: #516459;
}
.asset-columns ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.asset-columns li {
  display: flex;
  gap: 12px;
  justify-content: space-between;
  padding: 11px 0;
  border-top: 1px solid #e5eae6;
  font-size: 0.875rem;
}
.asset-columns li strong {
  font-weight: 600;
}
.asset-columns li small {
  display: block;
  font-size: 0.75rem;
  color: var(--muted);
  line-height: 1.5;
  margin-top: 3px;
}
.timeline-detail,
.method-detail {
  margin-top: 22px;
  border-top: 1px solid var(--line);
  padding-top: 16px;
}
.timeline-detail summary,
.method-detail summary {
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
}
.method-detail summary {
  font-weight: 400;
  color: var(--muted);
}
.method-detail a {
  font-size: 0.8125rem;
}
.rival-intro {
  font-size: 1.0625rem;
  max-width: 650px;
}
.grudge-hero {
  background: #14241c;
  color: #f1f6eb;
  padding: 34px;
  border-radius: 12px;
  margin-top: 28px;
}
.grudge-hero .eyebrow {
  color: #c6e589;
}
.grudge-hero > h2 {
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1.08;
  max-width: 800px;
}
.grudge-score {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 25px;
  text-align: center;
  max-width: 800px;
  margin: 25px auto;
}
.grudge-score span {
  font-size: 1.0625rem;
  display: block;
  overflow-wrap: anywhere;
}
.grudge-score b {
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 6rem;
  line-height: 1.1;
  color: #d0f29b;
  display: block;
}
.grudge-score small {
  display: block;
  font-size: 0.8125rem;
  color: #aec2b1;
}
.grudge-versus {
  font-family: Georgia, serif;
  font-style: italic;
  color: #799782;
}
.grudge-hero > p {
  color: #d4dfd2;
  max-width: 760px;
  margin: 20px auto 0;
  text-align: center;
  font-size: 1rem;
}
.grudge-moments {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 22px;
}
.grudge-moments article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 27px;
}
.grudge-moments h3 {
  font-family: Georgia, serif;
  font-size: 1.5rem;
  line-height: 1.25;
}
.grudge-moments b {
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 2.9rem;
  color: #34674c;
}
.grudge-moments b small {
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-size: 0.875rem;
}
.grudge-moments p {
  margin: 12px 0 0;
  font-size: 0.9375rem;
}
.grudge-history {
  margin-top: 22px;
}
.grudge-history summary {
  font-weight: 600;
  cursor: pointer;
}
.grudge-history summary span {
  font-size: 0.8125rem;
  color: var(--muted);
  float: right;
  font-weight: 400;
}
.grudge-wall {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.grudge-wall > button {
  text-align: left;
  padding: 24px;
  font-weight: 400;
  min-width: 0;
}
.grudge-wall h3 {
  font-size: 1.1rem;
  overflow-wrap: anywhere;
}
.grudge-wall h3 em {
  display: block;
  color: #8c9b8e;
  font-family: Georgia, serif;
  font-weight: 400;
  margin: 7px 0;
}
.grudge-wall b {
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 2.3rem;
}
.grudge-wall p {
  font-size: 0.875rem;
  margin: 10px 0;
}
.new-beef {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 35px;
  margin-top: 24px;
}
.new-beef h3,
.new-beef h2 {
  font-family: Georgia, serif;
  font-size: 1.65rem;
  max-width: 700px;
}
.new-beef p {
  max-width: 720px;
  margin: 0;
}
.authored-column {
  padding: 26px 0;
}
.column-byline {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #637067;
}
.column-byline span:first-child {
  border: 1px solid #bd7448;
  color: #8d4d2c;
  padding: 5px 9px;
  transform: rotate(-2deg);
}
.column-title {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.12;
  letter-spacing: -0.035em;
  margin: 25px 0 18px;
}
.column-dek {
  font-family: Georgia, serif;
  font-size: 1.25rem;
  line-height: 1.5;
  color: #5d665d;
  border-bottom: 1px solid var(--line);
  padding-bottom: 25px;
}
.authored-column section {
  max-width: 720px;
  margin: 28px auto 0;
}
.authored-column section h4 {
  font-family: Georgia, serif;
  font-size: 1.45rem;
  line-height: 1.3;
  margin: 0 0 16px;
}
.authored-column section p {
  font-size: 1.0625rem;
  line-height: 1.85;
  color: #34453a;
  margin: 0 0 18px;
}
.authored-column section:first-of-type p:first-of-type:first-letter {
  font-family: Georgia, serif;
  float: left;
  font-size: 3.5rem;
  line-height: 1;
  padding: 4px 8px 0 0;
  color: #1c4e33;
}
.weekly-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  border-top: 3px solid #233c2b;
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
}
.weekly-highlights span {
  display: block;
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.06em;
}
.weekly-highlights b {
  display: block;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 2.5rem;
  line-height: 1.3;
}
.weekly-highlights small {
  font-size: 0.8125rem;
  overflow-wrap: anywhere;
}
.unfiled-column {
  padding: 40px 0;
}
.unfiled-column h3 {
  font-family: Georgia, serif;
  font-size: 1.8rem;
  line-height: 1.3;
}
.unfiled-column p {
  margin: 0;
}
.receipt-detail {
  scroll-margin-top: 20px;
}
@media (max-width: 1050px) {
  .trade-workspace {
    grid-template-columns: minmax(275px, 0.85fr) minmax(0, 1.2fr);
  }
  .receipt-pane {
    padding: 22px;
  }
  .asset-columns {
    grid-template-columns: 1fr;
  }
  .grudge-wall {
    gap: 14px;
  }
  .grudge-wall > button {
    padding: 19px;
  }
}
@media (max-width: 850px) {
  .trade-workspace {
    grid-template-columns: 1fr;
  }
  .trade-scroll {
    max-height: 340px;
  }
  .asset-columns {
    grid-template-columns: 1fr 1fr;
  }
  .receipt-pane {
    scroll-margin-top: 20px;
  }
  .grudge-wall {
    grid-template-columns: 1fr;
  }
  .grudge-wall h3 em {
    display: inline;
    margin: 0 10px;
  }
  .grudge-wall h3 {
    margin-bottom: 12px;
  }
  .grudge-wall > button {
    display: block;
  }
}
@media (max-width: 640px) {
  .grudge-hero {
    padding: 26px 20px;
  }
  .grudge-score {
    gap: 12px;
  }
  .grudge-score b {
    font-size: 4.5rem;
  }
  .grudge-score span {
    font-size: 0.875rem;
  }
  .grudge-moments {
    grid-template-columns: 1fr;
  }
  .grudge-hero > p {
    font-size: 0.9375rem;
    text-align: left;
  }
  .grudge-moments article {
    padding: 22px;
  }
  .receipt-pane {
    padding: 20px;
  }
  .asset-columns {
    grid-template-columns: 1fr;
  }
  .trade-scroll {
    max-height: 300px;
  }
  .trade-row {
    padding: 15px;
  }
  .trade-row-title {
    font-size: 0.875rem;
  }
  .score-side b {
    font-size: 2.2rem;
  }
  .column-byline {
    font-size: 0.75rem;
  }
  .authored-column section p {
    font-size: 1rem;
    line-height: 1.8;
  }
  .column-dek {
    font-size: 1.125rem;
  }
  .authored-column section h4 {
    font-size: 1.3rem;
  }
  .weekly-highlights {
    gap: 12px;
  }
  .weekly-highlights span {
    font-size: 0.75rem;
    letter-spacing: 0;
  }
  .weekly-highlights b {
    font-size: 2rem;
  }
  .new-beef {
    padding: 25px;
  }
  .manager-status {
    margin-left: 0;
  }
  .played-years {
    max-width: 100px;
  }
}
@media print {
  .column-title {
    font-size: 25pt;
  }
  .authored-column section {
    break-inside: auto;
  }
  .authored-column section h4 {
    break-after: avoid;
    font-size: 16pt;
  }
  .authored-column section p {
    font-size: 11pt;
    line-height: 1.55;
    orphans: 3;
    widows: 3;
  }
  .column-dek {
    font-size: 13pt;
  }
  .column-byline span:first-child {
    transform: none;
  }
  .weekly-highlights {
    break-inside: avoid;
  }
  .authored-column section:first-of-type p:first-of-type:first-letter {
    float: none;
    font-size: inherit;
    padding: 0;
  }
}

.draft-rules {
  margin-top: 1rem;
  padding: 1rem 1.2rem;
  border-left: 3px solid var(--accent, #d64933);
  background: rgba(214, 73, 51, 0.06);
}
.draft-rules strong {
  font-size: 1.05rem;
}
.draft-rules p {
  margin: 0.4rem 0 0;
  line-height: 1.55;
}

.fleece-front {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 24px;
  margin: 24px 0;
}
.fleece-leaderboard {
  background: #172c28;
  color: #fff;
  padding: 30px;
  border-radius: 16px;
}
.fleece-leaderboard h2 {
  font-size: 2rem;
  line-height: 1.12;
  max-width: 430px;
  margin: 14px 0;
}
.fleece-leaderboard > p {
  color: #c4d8d0;
}
.fleece-leaderboard ol {
  list-style: none;
  padding: 0;
  margin: 24px 0;
}
.fleece-leaderboard li {
  display: flex;
  gap: 16px;
  align-items: center;
  border-top: 1px solid #ffffff26;
  padding: 16px 0;
}
.fleece-leaderboard li > div {
  flex: 1;
  min-width: 0;
  overflow-wrap: anywhere;
}
.fleece-leaderboard li strong {
  font-size: 1.05rem;
}
.fleece-leaderboard small {
  display: block;
  color: #b9cec6;
  font-size: 0.875rem;
  margin-top: 5px;
}
.fleece-leaderboard li > b {
  font-size: 1.7rem;
  text-align: right;
}
.fleece-leaderboard li > b small {
  font-weight: 400;
}
.fleece-rank {
  color: #e9b962;
  font-family: monospace;
  font-size: 1.3rem;
}
.fleece-leaderboard details {
  font-size: 0.875rem;
  line-height: 1.6;
  color: #d6e3dd;
}
.fleece-leaderboard summary {
  cursor: pointer;
}
.fleece-headlines {
  display: grid;
  gap: 18px;
}
.fleece-feature {
  text-align: left;
  display: block;
  width: 100%;
  padding: 25px;
  border: 1px solid #d8ded8;
  border-radius: 14px;
  background: #fff;
  color: #172c28;
}
.fleece-feature h3 {
  font-size: 1.65rem;
  line-height: 1.15;
  margin: 12px 0;
}
.fleece-feature p {
  line-height: 1.5;
  margin: 12px 0;
}
.fleece-feature > b {
  font-size: 2rem;
}
.fleece-feature > b small {
  font-size: 0.875rem;
  font-weight: 400;
}
.fleece-feature .inline-link {
  display: block;
  margin-top: 14px;
}
.fleece-busy {
  border-top: 2px solid #172c28;
  border-bottom: 1px solid #ccd5d0;
  padding: 22px 0;
}
.fleece-busy h3 {
  margin: 9px 0;
  font-size: 1.5rem;
}
.fleece-busy p {
  margin: 0;
  line-height: 1.5;
}
@media (max-width: 850px) {
  .fleece-front {
    grid-template-columns: 1fr;
  }
  .fleece-leaderboard {
    padding: 22px;
  }
  .fleece-leaderboard h2 {
    font-size: 1.7rem;
  }
}

.champions-wall {
  background: linear-gradient(120deg, #101f1c, #203b30 65%, #142820);
  color: #fff4d5;
  border: 1px solid #a98a48;
  border-top: 5px solid #dbb567;
  border-radius: 12px;
  padding: 32px 38px;
  margin-bottom: 34px;
  box-shadow: 0 18px 40px #10251918;
}
.champion-wall-header {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: #e6c77e;
}
.champion-wall-motto {
  font-size: 0.875rem;
  letter-spacing: 0.14em;
}
.champion-spotlight {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  align-items: center;
  gap: 30px;
  padding: 40px 0;
}
.champion-season {
  font-size: 0.875rem;
  letter-spacing: 0.14em;
  color: #e4c078;
}
.champion-name {
  font-family: "Barlow Condensed", Impact, sans-serif !important;
  font-size: clamp(3rem, 7vw, 6rem) !important;
  line-height: 1.05 !important;
  letter-spacing: -0.02em;
  margin: 14px 0 !important;
  overflow-wrap: anywhere;
  color: #fff4d5;
}
.champion-taunt {
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 1.25rem;
  color: #e7dec9;
}
.champion-final {
  border-left: 1px solid #c8a55966;
  padding: 20px 0 20px 30px;
}
.champion-final > b {
  display: block;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.3;
  margin: 12px 0;
  color: #ebc879;
}
.champion-final em {
  font-style: normal;
  color: #8ba396;
  margin: 0 10px;
}
.champion-final p {
  margin: 10px 0;
  color: #fff4d5;
}
.champion-final small {
  font-size: 0.875rem;
  color: #becbbd;
}
.championship-banners {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 14px;
  border-top: 1px solid #bda15c66;
  padding-top: 26px;
}
.title-banner {
  text-align: center;
  border: 1px solid #bda15c66;
  border-top: 3px solid #dfbd75;
  background: #ffffff05;
  padding: 22px 12px 27px;
  min-width: 0;
}
.title-banner > span {
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 2.5rem;
  color: #edcb82;
}
.banner-rule {
  width: 30px;
  height: 1px;
  background: #bda15c;
  margin: 13px auto;
}
.title-banner strong {
  display: block;
  overflow-wrap: anywhere;
  font-size: 1.05rem;
  color: #fff7e4;
}
.title-banner small {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  margin-top: 12px;
  color: #cdbb90;
}
.champion-wall-footer {
  text-align: center;
  margin: 25px 0 0;
  color: #cbbd9e;
  font-family: Georgia, serif;
  font-style: italic;
}
@media (max-width: 750px) {
  .champions-wall {
    padding: 23px 20px;
  }
  .champion-wall-header {
    flex-wrap: wrap;
  }
  .champion-spotlight {
    grid-template-columns: 1fr;
    padding: 28px 0;
    gap: 12px;
  }
  .champion-final {
    border-left: 0;
    border-top: 1px solid #c8a55966;
    padding: 20px 0 0;
  }
  .championship-banners {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .champion-wall-motto {
    font-size: 0.75rem;
  }
}

.table-sort {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  font-weight: 600;
  white-space: nowrap;
  cursor: pointer;
}
.table-sort span {
  opacity: 0.45;
  font-size: 1rem;
}
th[aria-sort="ascending"] .table-sort,
th[aria-sort="descending"] .table-sort {
  color: #176944;
}
th[aria-sort="ascending"] span,
th[aria-sort="descending"] span {
  opacity: 1;
}
.table-sort:hover {
  color: #176944;
  background: transparent;
}
.table-sort:focus-visible {
  outline: 2px solid #a77e2c;
  outline-offset: 4px;
  border-radius: 2px;
}
.table-wrap tbody tr:hover {
  background: #eff5ed;
}
.champions-wall {
  position: relative;
  overflow: hidden;
}
.champions-wall .eyebrow {
  color: #e6c77e;
}
.champion-wall-header,
.champion-spotlight,
.championship-banners,
.champion-wall-footer {
  position: relative;
  z-index: 1;
}
.champions-wall:after {
  content: "";
  position: absolute;
  inset: -80% -70%;
  background: linear-gradient(
    110deg,
    transparent 44%,
    #ffe8a714 49%,
    transparent 54%
  );
  pointer-events: none;
  transform: translateX(-65%);
  animation: champion-light 3.5s ease-out 1 forwards;
}
.title-banner,
.fleece-feature,
.grudge-wall > button {
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}
.title-banner:hover {
  transform: translateY(-4px);
  border-color: #dfbd75;
  background: #ffffff0b;
}
.fleece-feature:hover,
.grudge-wall > button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px #17382b12;
  border-color: #b2924d;
}
.nav-item[aria-current="page"] {
  box-shadow: inset 0 -3px #bb994d;
}
@keyframes champion-light {
  to {
    transform: translateX(65%);
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
  .title-banner:hover,
  .fleece-feature:hover,
  .grudge-wall > button:hover {
    transform: none;
  }
}

.champions-wall {
  background-image:
    linear-gradient(90deg, #10261bf2 0%, #10261bdc 40%, #10261b66 100%),
    url("./assets/art-c5b058bf5484.png");
  background-size: cover;
  background-position: center;
}
.champion-final {
  background: #12291fd9;
  border-radius: 6px;
  padding: 20px 24px;
}
.championship-banners {
  background: #11291ee0;
  padding: 22px 14px 14px;
  border-radius: 4px;
}
.title-banner {
  background: #10271eee;
}
.champion-card {
  background-image:
    linear-gradient(90deg, #10281ff2, #10281f66),
    url("./assets/art-40f927452ca2.png");
  background-size: cover;
  background-position: center;
}
.fleece-sort-controls {
  display: flex;
  align-items: end;
  gap: 10px;
  flex-wrap: wrap;
  margin: 18px 0;
}
.fleece-sort-controls label {
  display: grid;
  gap: 6px;
  font-size: 0.875rem;
  color: #cdded3;
}
.fleece-sort-controls select,
.fleece-sort-controls button {
  background: #233e32;
  color: #fff3d5;
  border: 1px solid #78937d;
  padding: 9px 10px;
  border-radius: 5px;
  font-size: 0.875rem;
}
.fleece-secondary {
  display: block;
  font-size: 0.8125rem;
  line-height: 1.6;
  color: #decca0;
  margin-top: 7px;
}
.fleece-leaderboard li > b {
  font-size: 1.4rem;
  white-space: nowrap;
}
.fleece-leaderboard .negative-gap {
  color: #f3b498;
}
@media (max-width: 600px) {
  .champions-wall {
    background-position: 65% center;
  }
  .fleece-leaderboard li {
    gap: 10px;
  }
  .fleece-leaderboard li > b {
    font-size: 1.1rem;
  }
  .fleece-secondary {
    font-size: 0.75rem;
  }
}

.fleece-front-wide {
  grid-template-columns: 1fr;
}
.fleece-front-wide .fleece-headlines {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.fleece-front-wide .fleece-leaderboard h2 {
  max-width: none;
}
.fleece-full-table {
  margin: 22px 0;
}
.fleece-full-table table {
  width: 100%;
  color: #f4eee0;
}
.fleece-full-table th {
  color: #d7c48b;
  border-color: #ffffff26;
  white-space: nowrap;
  font-size: 0.875rem;
}
.fleece-full-table td {
  border-color: #ffffff20;
  padding: 14px 12px;
  font-size: 0.9375rem;
}
.fleece-full-table tbody tr:hover {
  background: #ffffff08;
}
.fleece-full-table td small {
  display: block;
  color: #abc0b2;
  font-size: 0.8125rem;
  margin-top: 4px;
}
.fleece-full-table .gap-selected {
  color: #f3d992;
  background: #ffffff05;
  font-weight: 600;
}
.fleece-full-table .negative-gap {
  color: #f3b498;
}
.fleece-full-table .fleece-rank {
  font-size: 1rem;
}
.fleece-full-table td:first-child {
  padding-left: 0;
}
@media (max-width: 700px) {
  .fleece-front-wide .fleece-headlines {
    grid-template-columns: 1fr;
  }
  .fleece-full-table table {
    min-width: 740px;
  }
}

.preseason-cover {
  padding: 44px;
  border-top: 4px solid #c4a15d;
  border-radius: 10px;
  color: #fff3d9;
  background:
    linear-gradient(90deg, #132b20f5, #132b20bb),
    url("./assets/art-a00b56e12bbf.png") center/cover;
}
.preseason-cover .eyebrow {
  color: #ddc28c;
}
.preseason-cover h2 {
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: clamp(2.6rem, 5vw, 4.5rem);
  line-height: 1.05;
  max-width: 800px;
  margin: 18px 0;
}
.preseason-cover > p {
  font-size: 1.2rem;
  line-height: 1.6;
  max-width: 720px;
  color: #e9e4d6;
}
.preseason-intro {
  max-width: 860px;
  margin: 30px auto;
  font-size: 1.05rem;
  line-height: 1.8;
}
.preseason-controls {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  margin: 30px 0 20px;
}
.preseason-controls p {
  margin: 6px 0;
}
.preseason-profiles {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.preseason-profile {
  padding: 28px;
  background: white;
  border: 1px solid #d4ddd4;
  border-top: 3px solid #b79b58;
  border-radius: 8px;
}
.preseason-profile h3 {
  font-family: Georgia, serif;
  font-size: 1.65rem;
  line-height: 1.2;
  margin: 18px 0;
}
.preseason-profile > p {
  font-size: 1rem;
  line-height: 1.8;
}
.trend-strip {
  display: flex;
  gap: 14px;
  margin: 22px 0;
  padding: 20px 12px;
  background: #f3f6f0;
  border-radius: 6px;
}
.trend-season {
  flex: 1;
  text-align: center;
}
.trend-season b {
  font-size: 0.9375rem;
  color: #214b33;
}
.trend-track {
  height: 58px;
  display: flex;
  align-items: end;
  justify-content: center;
  margin: 8px 0;
}
.trend-track span {
  width: 70%;
  max-width: 42px;
  background: #3e7350;
  border-top: 2px solid #bd9b4c;
  border-radius: 2px 2px 0 0;
}
.trend-season small {
  font-size: 0.8125rem;
  color: #586e5e;
}
.profile-watch {
  padding-top: 14px;
  border-top: 1px solid #dbe2d9;
}
.profile-watch strong {
  font-size: 0.875rem;
  color: #2e6446;
}
.profile-watch p {
  margin: 6px 0 0;
  line-height: 1.6;
}
.preseason-link {
  border-left: 4px solid #bd9b4c;
}
@media (max-width: 750px) {
  .preseason-profiles {
    grid-template-columns: 1fr;
  }
  .preseason-cover {
    padding: 28px;
  }
  .preseason-controls {
    align-items: start;
    flex-direction: column;
  }
  .preseason-profile {
    padding: 22px;
  }
  .trend-strip {
    gap: 8px;
  }
}

.fleece-full-table th[aria-sort="ascending"] .table-sort,
.fleece-full-table th[aria-sort="descending"] .table-sort,
.fleece-full-table .table-sort:hover {
  color: #ffe5a1;
}
.fleece-full-table .table-sort:focus-visible {
  outline-color: #ffe5a1;
}

.championship-banners {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  padding: 28px 0 0;
  background: none;
  border: 0;
  border-radius: 0;
  align-items: start;
}
.title-banner {
  position: relative;
  aspect-ratio: 2/3;
  padding: 23% 15% 18%;
  border: 0 !important;
  border-radius: 0;
  background: transparent url("./assets/art-403dbc50a1aa.png") center/100% 100%
    no-repeat !important;
  box-shadow: none;
  text-align: center;
  transform-origin: 50% 7%;
  transition:
    transform 0.35s ease,
    filter 0.35s ease;
  filter: drop-shadow(0 9px 8px #0005);
}
.title-banner > span {
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: clamp(1.7rem, 3.2vw, 3rem);
  line-height: 1;
  color: #f2d48c;
  text-shadow: 0 2px 2px #0008;
}
.title-banner .banner-rule {
  width: 22px;
  margin: 9% auto 8%;
  background: #d5b66b;
}
.title-banner strong {
  font-size: clamp(0.875rem, 1.3vw, 1.1rem);
  line-height: 1.25;
  color: #fff0c7;
  text-shadow: 0 1px 2px #000;
  overflow-wrap: anywhere;
}
.title-banner small {
  font-size: 0.75rem;
  line-height: 1.6;
  letter-spacing: 0.11em;
  margin-top: 11%;
  color: #dfc788;
}
.title-banner:hover {
  transform: rotate(-1.5deg) translateY(-3px);
  filter: drop-shadow(0 15px 10px #0007);
}
@media (max-width: 950px) {
  .championship-banners {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 760px;
    margin: auto;
  }
  .title-banner > span {
    font-size: 2.6rem;
  }
  .title-banner strong {
    font-size: 1rem;
  }
}
@media (max-width: 550px) {
  .championship-banners {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
  .title-banner > span {
    font-size: 2rem;
  }
  .title-banner strong {
    font-size: 0.875rem;
  }
  .title-banner small {
    font-size: 0.75rem;
    letter-spacing: 0.04em;
  }
}
@media (prefers-reduced-motion: reduce) {
  .title-banner:hover {
    transform: none;
  }
}

/* Clubhouse collection: shared materials, individual rooms. */
:root {
  --mint: #dfbf77;
  --green: #236443;
  --line: #d5dcd1;
  --club-gold: #b7944e;
  --club-dark: #142d21;
  background: #f3f5f1;
}
.mast {
  background: #10261b;
  border-top: 3px solid #b7944e;
  border-bottom: 1px solid #536343;
}
.brand {
  font-family: Georgia, serif;
  font-weight: 600;
  letter-spacing: 0.045em;
}
.sleeper-link {
  color: #ead59a;
}
.league-picker select {
  background: #193727;
  border-color: #5c7258;
}
.nav-shell {
  background: #fbfcf8;
}
.nav-item.active {
  color: #225738;
  border-bottom-color: #b7944e;
}
.statusline {
  font-size: 0.875rem;
}
.eyebrow {
  font-size: 0.8125rem;
  letter-spacing: 0.1em;
}
.page-title {
  padding-bottom: 23px;
  border-bottom: 1px solid #cbd5c8;
}
.page-title h1 {
  letter-spacing: -0.025em;
}
.section-head h2 {
  font-family: Georgia, serif;
  font-weight: 600;
  font-size: 1.35rem;
}
.panel {
  border-radius: 7px;
  box-shadow: 0 4px 16px #16351c04;
}
.badge {
  border-radius: 3px;
  font-size: 0.8125rem;
}
.text-button,
.inline-link {
  font-size: 0.875rem;
}
.avatar {
  background: #e8ede1;
  border: 1px solid #c5d0be;
  color: #365b40;
}
.table-wrap tbody tr {
  transition: background 0.15s;
}
.table-wrap th {
  font-size: 0.8125rem;
}
.played-years,
.manager-status {
  font-size: 0.8125rem;
}
.panel > .section-head {
  padding-bottom: 16px;
  border-bottom: 1px solid #dce3d6;
}
.field {
  font-size: 0.875rem;
}
button {
  border-radius: 4px;
}
.sync {
  border-color: #c2cbbd;
}
.title-count {
  background: #f0e7cd;
  color: #715b29;
  border: 1px solid #d4bf89;
}
.method {
  font-size: 0.875rem;
}
.table-wrap {
  scrollbar-color: #92a186 #edf2e9;
  scrollbar-width: thin;
}
.clubhouse-welcome {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  min-height: 320px;
  overflow: hidden;
  border-radius: 9px;
  background: #142d21;
  color: #fff4d5;
  border: 1px solid #6d774a;
  border-top: 4px solid #c4a15d;
}
.clubhouse-welcome-copy {
  position: relative;
  z-index: 1;
  padding: 40px;
}
.clubhouse-welcome h1 {
  font-size: clamp(2.6rem, 4.5vw, 4.2rem);
  max-width: 600px;
}
.clubhouse-welcome .eyebrow {
  color: #dfc47f;
}
.clubhouse-welcome p {
  color: #d2dbcb;
  font-family: Georgia, serif;
  font-size: 1.15rem;
  line-height: 1.6;
  max-width: 460px;
  margin: 20px 0;
}
.clubhouse-photo {
  background:
    linear-gradient(90deg, #142d21, transparent 28%),
    url("./assets/art-6c8c62716df7.png") 72% center/cover no-repeat;
}
.clubhouse-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.clubhouse-actions button {
  background: #dabe79;
  color: #172b1d;
  border-color: #dabe79;
  font-size: 0.875rem;
}
.clubhouse-actions .quiet-action {
  background: transparent;
  border-color: #63734e;
  color: #e7d69d;
}
.metrics {
  background: #e9eee3;
  margin: 0 0 30px;
  border: 1px solid #d5ddcd;
  border-top: 0;
  padding: 22px 26px;
  border-radius: 0 0 7px 7px;
  gap: 25px;
}
.metrics b {
  color: #245033;
}
.metrics > div {
  border-right-color: #c9d4c1;
}
.metrics small {
  font-size: 0.8125rem;
}
.champion-card {
  border: 1px solid #a58b48;
  border-radius: 7px;
}
.champion-card .trophy-word {
  font-size: 4.3rem;
  color: #e1c47e;
  border-color: #bba66655;
}
.champion-card button {
  border-color: #9a905b;
  color: #f2dfad;
}
.mini-panel {
  background: #f9f9f0;
  border-top: 3px solid #bca367;
}
.mini-panel h3 {
  font-family: Georgia, serif;
  font-size: 1.45rem;
}
.stat-story {
  padding: 28px;
  border-top: 3px solid #a48b50;
  background: #fffefa;
}
.stat-story > b {
  font-size: 3.7rem;
  color: #315c40;
}
.stat-story .eyebrow {
  color: #7b693f;
}
.stat-story h3 {
  font-family: Georgia, serif;
  font-weight: 600;
}
.preseason-link {
  background: linear-gradient(90deg, #f7f8f0 60%, #e6eddf);
  padding: 30px;
}
.preseason-link h2 {
  font-family: Georgia, serif;
  font-size: 1.7rem;
}
.preseason-link button {
  background: #244b32;
  color: #fff5da;
  border-color: #244b32;
}
main[data-page="rivals"] > .page-title {
  background:
    linear-gradient(90deg, #122c20fc 0%, #122c20d9 40%, #122c2040 100%),
    url("./assets/art-9c6e89a1d0db.png") center 55% / cover;
  color: #fff4d8;
  padding: 34px 36px;
  min-height: 205px;
  border-radius: 8px;
  border-top: 3px solid #bba263;
  align-items: center;
  margin-bottom: 16px;
}
main[data-page="rivals"] > .page-title .eyebrow {
  color: #e1c98d;
}
main[data-page="rivals"] .fleece-leaderboard {
  border-radius: 6px;
  border: 1px solid #bca467;
  border-top: 4px solid #bca467;
  background: linear-gradient(135deg, #183b2a, #10291d);
}
.fleece-leaderboard .eyebrow {
  color: #d6be83;
}
.fleece-leaderboard h2 {
  font-family: Georgia, serif;
  font-weight: 500;
  font-size: 1.9rem;
  line-height: 1.15;
}
.fleece-leaderboard .inline-link {
  color: #e2cb8b;
}
.fleece-leaderboard .fleece-rank {
  color: #debd73;
}
.fleece-feature {
  border-radius: 6px;
  border-top: 3px solid #b59b60;
  background: linear-gradient(145deg, #fffef9, #f4f5ec);
  padding: 27px;
}
.fleece-feature h3 {
  font-family: Georgia, serif;
  font-size: 1.6rem;
  font-weight: 500;
}
.fleece-feature > b {
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 2.8rem;
  color: #2c5f3e;
}
.grudge-hero {
  background: linear-gradient(140deg, #193c29, #10271c);
  border-top: 3px solid #b99a54;
  border-radius: 7px;
}
.grudge-score {
  padding: 25px 0;
  border-top: 1px solid #c6b67b55;
  border-bottom: 1px solid #c6b67b55;
}
.grudge-score > div:first-child {
  border-right: 1px solid #d2be7055;
  padding-right: 20px;
}
.grudge-score > div:last-child {
  border-left: 1px solid #d2be7055;
  padding-left: 20px;
}
.grudge-score b {
  color: #e6c776;
  text-shadow: 0 3px 1px #0004;
}
.grudge-versus {
  color: #d5be82;
}
.grudge-moments article {
  border-radius: 6px;
  border-top: 3px solid #c1aa6a;
  background: #fffef9;
}
.grudge-history {
  border-top: 3px solid #a69568;
}
.rival-controls {
  background: #e7eddf;
  border: 1px solid #d0dbc4;
  padding: 20px;
  border-radius: 6px;
}
.rival-controls .field {
  max-width: none;
}
.new-beef {
  border-top: 3px solid #bfa770;
}
main[data-page="trades"] > .page-title {
  border-top: 3px solid #b89b58;
  background:
    linear-gradient(90deg, #132d20fa 0%, #132d20ea 48%, #132d2055 100%),
    url("./assets/art-8aa41b096ad1.png") center/cover;
  border-radius: 8px;
  padding: 28px 34px;
  color: #fff1d1;
  min-height: 175px;
  margin-bottom: 18px;
}
main[data-page="trades"] > .page-title .eyebrow {
  color: #dcc084;
}
main[data-page="trades"] > .page-title .field {
  color: #ebddbb;
}
main[data-page="trades"] > .page-title select {
  background: #173c29;
  color: #fff4d9;
  border-color: #859260;
}
.fleece-front-wide .fleece-leaderboard {
  border-radius: 7px;
  border: 1px solid #a59053;
  border-top: 4px solid #c4a96b;
  padding: 28px 32px;
  background: #183226;
}
.fleece-full-table th {
  background: #1e3e2c;
}
.fleece-full-table th:first-child {
  padding-left: 12px;
}
.fleece-full-table td:first-child {
  padding-left: 12px;
}
.fleece-full-table td {
  padding-top: 16px;
  padding-bottom: 16px;
}
.fleece-full-table tbody tr:nth-child(even) {
  background: #ffffff03;
}
.fleece-full-table tbody tr:hover {
  background: #ffffff09;
}
.fleece-full-table td:nth-child(2) strong {
  font-weight: 600;
  font-size: 1rem;
}
.fleece-full-table td.gap-selected {
  background: #d0b6790a;
}
.fleece-busy {
  background: #e8eddf;
  padding: 24px;
  border-top: 2px solid #b8a46e;
  border-bottom: 0;
  border-radius: 4px;
}
.fleece-busy h3 {
  font-family: Georgia, serif;
  font-size: 1.4rem;
}
.trade-toolbar {
  padding: 20px;
  background: #e6ecdf;
  border: 1px solid #d1dac7;
  border-radius: 6px;
}
.trade-browser {
  border-radius: 6px;
  border-color: #c2ccb8;
  box-shadow: 0 5px 15px #152f1808;
}
.trade-list-head {
  background: #244932;
  color: #e9ddb9;
  padding: 17px;
}
.trade-row {
  padding: 20px 18px;
}
.trade-row.selected {
  background: #edf1e4;
  border-left-color: #b59850;
}
.trade-row-title b {
  color: #476b35;
}
.receipt-pane {
  border-radius: 5px;
  border: 1px solid #c4c9b7;
  border-top: 5px solid #b79e62;
  background: #fffefa;
  padding: 30px;
  box-shadow: 0 10px 26px #15301a0a;
}
.receipt-detail > .trade-top .eyebrow {
  color: #796b4e;
}
.receipt-detail > h2 {
  font-family: Georgia, serif;
  font-size: 1.85rem;
  line-height: 1.15;
}
.score-duel {
  background: #edf1e5;
  padding: 20px;
  border-top: 1px solid #d1d9c4;
  border-bottom: 1px solid #d1d9c4;
  gap: 20px;
}
.score-side b {
  font-size: 3.1rem;
  color: #28583d;
}
.score-side.side-1 b {
  color: #9a7838;
}
.return-bar {
  height: 8px;
  margin-top: 0;
  border-radius: 0;
  gap: 2px;
}
.return-bar .bar-1 {
  background: #b49a57;
}
.asset-columns h3 {
  font-family: Georgia, serif;
  font-size: 1rem;
}
.asset-columns li {
  padding: 14px 0;
}
.asset-columns li small {
  font-size: 0.8125rem;
}
.timeline-detail summary {
  color: #32573c;
}
main[data-page="newsletter"] {
  background: #e9ede2;
  padding: 28px;
  border: 1px solid #d6decb;
  border-radius: 8px;
}
.edition-controls {
  padding-bottom: 20px;
  border-bottom: 1px solid #c5cfbb;
}
.newspaper {
  border: 1px solid #c8c7ac;
  border-top: 5px solid #ad985b;
  border-radius: 2px;
  background: #fffef8;
  box-shadow: 0 12px 32px #1d341016;
  padding: 34px 44px;
}
.edition-top {
  font-size: 0.8125rem;
  color: #4f5d41;
}
.paper-name {
  font-size: clamp(3.3rem, 7vw, 6rem);
  color: #1d3c28;
  margin: 15px 0;
  font-weight: 500;
  letter-spacing: -0.07em;
}
.paper-sub {
  font-size: 0.8125rem;
  letter-spacing: 0.1em;
  border-color: #345239;
  color: #526647;
}
.paper-photo {
  height: 155px;
  background:
    linear-gradient(90deg, #13281922, #13281900),
    url("./assets/art-d0bbc9cadf7d.png") center 56% / cover;
  margin: 22px 0 0;
  border: 1px solid #ccc4a4;
}
.column-byline {
  font-size: 0.8125rem;
  color: #627355;
}
.column-byline span:first-child {
  border: 0;
  border-bottom: 2px solid #b69a58;
  color: #735d29;
  transform: none;
  padding: 6px 0;
}
.column-title {
  font-size: clamp(2rem, 4vw, 3.1rem);
  letter-spacing: -0.035em;
  line-height: 1.12;
  color: #213923;
}
.column-dek {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #546047;
}
.authored-column section {
  margin-top: 30px;
}
.authored-column section h4 {
  color: #2c4c32;
  border-top: 1px solid #d8ddcb;
  padding-top: 22px;
}
.authored-column section p {
  color: #364432;
}
.weekly-highlights {
  background: #eff0e1;
  padding: 22px 18px;
  border-color: #879871;
  gap: 18px;
}
.weekly-highlights span {
  font-size: 0.8125rem;
  color: #566849;
}
.weekly-highlights b {
  color: #385834;
}
.paper-games > div {
  padding: 17px 0;
}
.paper-games b {
  color: #345434;
}
.unfiled-column {
  padding: 30px 0;
}
.scoreboard-label {
  color: #25452f;
}
.preseason-cover {
  border-radius: 7px;
}
.preseason-profiles {
  gap: 0;
  background: #fffef9;
  border: 1px solid #cfd7c5;
  border-top: 4px solid #b8a163;
  border-radius: 6px;
  overflow: hidden;
}
.preseason-profile {
  border: 0;
  border-bottom: 1px solid #d8dfce;
  border-radius: 0;
  background: transparent;
  padding: 32px;
}
.preseason-profile:nth-child(odd) {
  border-right: 1px solid #d8dfce;
}
.preseason-profile h3 {
  color: #26442c;
  font-size: 1.75rem;
}
.trend-strip {
  background: #eaf0e2;
  border-top: 1px solid #c7d4bb;
  border-bottom: 1px solid #c7d4bb;
  border-radius: 0;
}
.profile-watch {
  background: #f4f4e9;
  padding: 15px 17px;
  border: 0;
}
.preseason-controls {
  border-top: 1px solid #c4ceb9;
  padding-top: 24px;
}
.history-dialog {
  width: min(820px, calc(100vw - 28px));
  max-height: 90vh;
  max-height: 90dvh;
  border: 1px solid #b29a59;
  border-top: 5px solid #c3a561;
  border-radius: 7px;
  padding: 0;
  background: #fffef7;
  color: #1e3225;
  box-shadow: 0 30px 120px #0006;
  overflow: auto;
}
.history-dialog::backdrop {
  background: #0b1b14c9;
  backdrop-filter: blur(5px);
}
.history-dialog-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 19px 26px;
  background: #153923;
  position: sticky;
  top: 0;
  z-index: 2;
  border-bottom: 1px solid #897f4c;
}
.history-dialog-top .eyebrow {
  color: #e1c685;
  margin: 0;
}
.history-dialog-top button {
  background: transparent;
  color: #f5e6bb;
  border-color: #7e885a;
  white-space: nowrap;
}
.history-dialog-content {
  padding: 28px 34px 36px;
}
.history-year {
  display: block;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 2rem;
  line-height: 1;
  color: #947d40;
  margin-bottom: 12px;
}
.history-dialog h2 {
  font-family: Georgia, serif;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 24px;
}
.final-score {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  background: #eaf0df;
  padding: 24px;
  border-top: 2px solid #b29a5b;
  border-bottom: 1px solid #c6d1b6;
  text-align: center;
}
.final-score strong {
  display: block;
  font-size: 1rem;
  overflow-wrap: anywhere;
}
.final-score b {
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 3.5rem;
  color: #325736;
  line-height: 1.15;
  display: block;
  margin-top: 7px;
}
.final-score > span {
  color: #82946a;
}
.final-story {
  font-family: Georgia, serif;
  font-size: 1.1rem;
  line-height: 1.8;
  margin: 26px 0;
}
.final-story p {
  color: #405039;
}
.final-lineups {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  padding-top: 20px;
  border-top: 1px solid #d2dcc5;
}
.final-lineups h3 {
  font-family: Georgia, serif;
  font-size: 1.1rem;
  overflow-wrap: anywhere;
}
.final-lineups .eyebrow {
  font-size: 0.75rem;
  margin: 0 0 14px;
  color: #7a794a;
}
.final-lineups ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.final-lineups li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 11px 0;
  border-bottom: 1px solid #e0e5d4;
  font-size: 0.9375rem;
}
.final-lineups li strong {
  font-variant-numeric: tabular-nums;
  color: #335b39;
}
.title-banner {
  cursor: pointer;
}
.title-banner:focus-visible {
  outline: 2px solid #f3d78d;
  outline-offset: 2px;
}
.history-dialog[open] {
  animation: history-arrive 0.18s ease-out;
}
@keyframes history-arrive {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
footer {
  border-top: 2px solid #b5a271;
}
footer > span {
  color: #365738;
  font-family: Georgia, serif;
  font-size: 1rem;
}
footer summary {
  font-size: 0.875rem;
}
footer small {
  font-family: "DM Sans", sans-serif;
}
@media (max-width: 950px) {
  .clubhouse-welcome {
    grid-template-columns: 1.2fr 1fr;
    min-height: 300px;
  }
  .clubhouse-welcome-copy {
    padding: 28px;
  }
  .home-grid aside {
    align-items: stretch;
  }
  .fleece-front-wide .fleece-leaderboard {
    padding: 25px;
  }
  .newspaper {
    padding: 28px;
  }
  .preseason-profile {
    padding: 25px;
  }
}
@media (max-width: 700px) {
  .clubhouse-welcome {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .clubhouse-photo {
    height: 180px;
    grid-row: 1;
    background:
      linear-gradient(0deg, #142d21, transparent 30%),
      url("./assets/art-6c8c62716df7.png") 70% 46% / cover;
  }
  .clubhouse-welcome-copy {
    padding: 24px;
  }
  .clubhouse-welcome h1 {
    font-size: 2.7rem;
  }
  .metrics {
    padding: 22px 18px;
    gap: 18px;
  }
  .metrics > div {
    padding-right: 10px;
  }
  .home-grid aside {
    grid-template-columns: 1fr;
  }
  .fleece-front-wide .fleece-leaderboard {
    padding: 20px 16px;
  }
  .receipt-pane {
    padding: 22px;
  }
  .score-duel {
    padding: 16px;
  }
  .score-side b {
    font-size: 2.5rem;
  }
  main[data-page="rivals"] > .page-title,
  main[data-page="trades"] > .page-title {
    padding: 25px 22px;
    min-height: 165px;
    background-position: 60% center;
  }
  .grudge-score {
    gap: 12px;
  }
  .grudge-score b {
    font-size: 4.3rem;
  }
  .grudge-score > div:first-child {
    padding-right: 8px;
  }
  .grudge-score > div:last-child {
    padding-left: 8px;
  }
  main[data-page="newsletter"] {
    padding: 18px 10px;
  }
  .newspaper {
    padding: 24px 18px;
  }
  .paper-photo {
    height: 115px;
  }
  .weekly-highlights {
    gap: 12px;
    padding: 18px 10px;
  }
  .weekly-highlights b {
    font-size: 2rem;
  }
  .preseason-profile:nth-child(odd) {
    border-right: 0;
  }
  .preseason-profile {
    padding: 25px 20px;
  }
  .history-dialog-top {
    padding: 16px;
  }
  .history-dialog-content {
    padding: 24px 20px;
  }
  .final-score {
    padding: 20px 12px;
    gap: 10px;
  }
  .final-score b {
    font-size: 2.8rem;
  }
  .final-score strong {
    font-size: 0.875rem;
  }
  .final-lineups {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .history-dialog-top .eyebrow {
    font-size: 0.75rem;
  }
  .grudge-hero {
    padding: 25px 20px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .history-dialog[open] {
    animation: none;
  }
  .table-wrap tbody tr {
    transition: none;
  }
}
@media print {
  main[data-page="newsletter"] {
    border: 0;
    background: #fff;
    padding: 0;
  }
  .paper-photo {
    display: none;
  }
  .newspaper {
    padding: 0;
    border: 0;
    box-shadow: none;
    background: #fff;
  }
  .history-dialog {
    display: none;
  }
  .preseason-profiles {
    display: block;
  }
  .preseason-profile {
    break-inside: avoid;
  }
}

/* Readable fallback for photo and textile surfaces. */
.champions-wall,
.champion-card,
.clubhouse-welcome,
.clubhouse-photo,
.preseason-cover,
.grudge-hero,
main[data-page="rivals"] > .page-title,
main[data-page="trades"] > .page-title {
  background-color: #142d21;
}
.title-banner {
  background-color: #10271e !important;
}
.paper-photo {
  background-color: #25432d;
}

/* Each room has its own artwork. */
main[data-page="rivals"] .grudge-hero {
  background-color: #10291e;
  background-image:
    linear-gradient(90deg, #10291ee8, #10291ed9),
    url("./assets/art-267160744b9f.png");
  background-size: cover;
  background-position: center;
}
.preseason-cover {
  background-position: center 58%;
}
.clubhouse-photo {
  background-position: 68% center;
}
.champion-card {
  background-position: 72% center;
}
.paper-photo {
  background-position: center 48%;
}
@media (max-width: 700px) {
  .clubhouse-photo {
    background-position: 65% 46%;
  }
}
/* Preseason annual: current roster assessments, with evidence behind each verdict. */
.roster-cover {
  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    linear-gradient(90deg, #102d20f5 0%, #102d20c9 48%, #102d2033),
    url("./assets/art-a00b56e12bbf.png") center/cover;
}
.roster-cover h2 {
  font-family: Georgia, serif;
  font-weight: 400;
  max-width: 720px;
  letter-spacing: -0.045em;
}
.assessment-stamp {
  font-size: 0.6875rem;
  letter-spacing: 0.11em;
  color: #d0c09b;
  border-top: 1px solid #d2c29f55;
  padding-top: 18px;
  margin-top: 24px;
  width: fit-content;
}
.outlook-stories {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 2px solid #9b854e;
  border-bottom: 1px solid #b9c5b3;
  margin: 34px 0 48px;
}
.outlook-stories article {
  display: flex;
  gap: 13px;
  padding: 25px 20px;
  border-right: 1px solid #c5cfbd;
}
.outlook-stories article:last-child {
  border: 0;
}
.story-number {
  font:
    italic 1.8rem Georgia,
    serif;
  color: #ab935c;
}
.outlook-stories .eyebrow {
  font-size: 0.64rem;
  letter-spacing: 0.08em;
}
.outlook-stories h3 {
  font:
    400 1.28rem/1.35 Georgia,
    serif;
  color: #25432e;
  margin: 12px 0 16px;
}
.profile-jump {
  border: 0;
  background: transparent;
  color: #345a3d;
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  padding: 0;
  text-align: left;
  overflow-wrap: anywhere;
}
.profile-jump:hover {
  text-decoration: underline;
}
.profile-jump span {
  color: #988044;
  margin-left: 5px;
}
.scouting-section {
  scroll-margin-top: 20px;
}
.scouting-section > .section-head {
  align-items: end;
  gap: 20px;
  margin-bottom: 24px;
}
.scouting-section h2,
.roster-comparison h2 {
  font-family: Georgia, serif;
  font-weight: 400;
  letter-spacing: -0.025em;
}
.scouting-layout {
  display: grid;
  grid-template-columns: 235px minmax(0, 1fr);
  align-items: start;
  border-top: 3px solid #a68c51;
  background: #fffdf6;
  box-shadow: 0 8px 26px #293d2310;
}
.scouting-directory {
  background: #e8eee1;
  display: flex;
  flex-direction: column;
  padding: 12px 0;
}
.scouting-directory button {
  position: relative;
  border: 0;
  border-bottom: 1px solid #d0d9c7;
  padding: 18px 30px 18px 20px;
  text-align: left;
  background: transparent;
  color: #26422b;
  cursor: pointer;
}
.scouting-directory button:last-child {
  border-bottom: 0;
}
.scouting-directory button span {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  overflow-wrap: anywhere;
}
.scouting-directory button small {
  display: block;
  margin-top: 7px;
  color: #5a6b51;
  font-size: 0.69rem;
  line-height: 1.3;
}
.scouting-directory button i {
  position: absolute;
  right: 13px;
  top: 18px;
  font-style: normal;
  color: #917b44;
}
.scouting-directory button[aria-current] {
  background: #193d29;
  color: #fff6db;
  border-color: #193d29;
  border-left: 4px solid #ba9a55;
  padding-left: 16px;
}
.scouting-directory button[aria-current] small {
  color: #d2d7c1;
}
.scouting-directory button:hover:not([aria-current]) {
  background: #dce6d2;
}
.scouting-file {
  padding: 36px 42px;
  min-width: 0;
}
.scouting-byline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}
.scouting-file > h2 {
  font-size: clamp(2rem, 3.5vw, 3.25rem);
  line-height: 1.1;
  color: #21432e;
  max-width: 760px;
  margin: 24px 0 20px;
}
.scouting-verdict {
  font:
    italic 1.22rem/1.6 Georgia,
    serif;
  color: #637050;
  border-bottom: 1px solid #d9ddcb;
  padding-bottom: 25px;
}
.roster-measures {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  padding: 20px 0 28px;
}
.roster-measures b {
  display: block;
  font:
    400 2.2rem Georgia,
    serif;
  color: #315b3d;
}
.roster-measures span {
  display: block;
  font-size: 0.7rem;
  color: #66735a;
  margin-top: 7px;
  line-height: 1.4;
}
.scouting-body {
  font-size: 1.02rem;
  line-height: 1.9;
  color: #3e4c37;
}
.position-readings {
  border-top: 2px solid #b3a36e;
  margin: 28px 0;
}
.position-readings section {
  display: grid;
  grid-template-columns: 95px 1fr;
  gap: 20px;
  padding: 21px 0;
  border-bottom: 1px solid #d5dccb;
}
.position-readings strong {
  display: block;
  font:
    400 1.65rem Georgia,
    serif;
  color: #35563a;
}
.position-readings small {
  display: block;
  color: #6a745d;
  font-size: 0.69rem;
  line-height: 1.5;
  margin-top: 6px;
}
.position-readings p {
  margin: 0;
  color: #46533c;
  font-size: 0.92rem;
  line-height: 1.7;
}
.scouting-changes {
  background: #eef1e4;
  padding: 23px 25px;
  margin: 24px 0;
}
.scouting-changes p {
  font-size: 0.94rem;
  line-height: 1.75;
}
.change-totals {
  display: flex;
  gap: 26px;
  margin: 20px 0;
}
.change-totals span {
  font-size: 0.75rem;
  color: #68735c;
}
.change-totals b {
  font:
    400 1.65rem Georgia,
    serif;
  color: #395539;
  margin-right: 4px;
}
.scouting-changes summary,
.scouting-evidence summary {
  cursor: pointer;
  font-size: 0.86rem;
  font-weight: 650;
  color: #355439;
  padding: 14px 0;
}
.moves-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.roster-moves,
.complete-roster ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.roster-moves li {
  display: flex;
  gap: 10px;
  border-top: 1px solid #d2dbc6;
  padding: 11px 0;
  font-size: 0.85rem;
}
.roster-moves small {
  display: block;
  line-height: 1.5;
  font-size: 0.7rem;
  color: #65745a;
  margin-top: 4px;
}
.move-symbol {
  color: #917939;
}
.scouting-news {
  margin: 30px 0;
}
.scouting-news article {
  border-bottom: 1px solid #d8ddcd;
  padding: 18px 0;
}
.scouting-news a {
  font-size: 0.94rem;
  color: #315c40;
  font-weight: 650;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.scouting-news small {
  display: block;
  color: #7a806c;
  font-size: 0.7rem;
  margin-top: 7px;
}
.scouting-news p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: #58634c;
  margin: 10px 0 0;
}
.window-verdict {
  padding: 28px;
  background: #1d3e2a;
  color: #fff9e8;
  margin: 30px 0;
  border-left: 3px solid #bda05f;
}
.window-verdict .eyebrow {
  color: #dec78d;
}
.window-verdict > p {
  font:
    400 1.13rem/1.65 Georgia,
    serif;
  color: #f4f1de;
}
.window-verdict strong {
  display: block;
  color: #d1c394;
  font-size: 0.73rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 22px;
}
.window-verdict strong + p {
  font-family: inherit;
  font-size: 0.9rem;
  line-height: 1.7;
  color: #d1dcc8;
}
.scouting-evidence {
  border-top: 1px solid #cbd6bf;
  padding: 5px 0;
}
.scouting-evidence .preseason-controls {
  border: 0;
  margin: 10px 0;
  padding: 0;
}
.complete-roster {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 30px;
  padding-bottom: 20px;
}
.complete-roster h4 {
  display: flex;
  justify-content: space-between;
  border-bottom: 2px solid #a99a61;
  padding-bottom: 10px;
  color: #315439;
}
.complete-roster h4 span {
  font-weight: 400;
  font-size: 0.75rem;
  color: #6b765d;
}
.complete-roster li {
  display: flex;
  justify-content: space-between;
  gap: 7px;
  padding: 12px 0;
  border-bottom: 1px solid #e0e4d8;
  font-size: 0.82rem;
}
.complete-roster small {
  display: block;
  font-size: 0.68rem;
  color: #7b816e;
  line-height: 1.6;
  margin-top: 3px;
}
.roster-flag {
  font-size: 0.6rem;
  color: #856938;
  align-self: start;
  border: 1px solid #dbcba8;
  border-radius: 3px;
  padding: 3px 5px;
  white-space: nowrap;
}
.draft-class {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 15px 0;
}
.draft-class > div {
  display: flex;
  gap: 14px;
  padding: 12px;
  background: #eef2e5;
  font-size: 0.85rem;
}
.draft-class b {
  color: #8d7641;
}
.draft-class small {
  display: block;
  font-size: 0.68rem;
  color: #6a775d;
  margin-top: 5px;
}
.roster-comparison {
  margin-top: 50px;
}
.roster-comparison > .section-head {
  align-items: end;
  gap: 20px;
}
.roster-comparison > p {
  max-width: 830px;
  line-height: 1.7;
  color: #617051;
}
.roster-comparison table {
  min-width: 1020px;
}
.roster-comparison td:first-child {
  min-width: 185px;
}
.roster-comparison th {
  white-space: nowrap;
}
.exposure-bar {
  width: 80px;
  height: 4px;
  background: #e2e8d9;
  margin: 0 0 7px;
}
.exposure-bar span {
  display: block;
  height: 100%;
  background: #a58a50;
}
.age-method {
  font-size: 0.78rem !important;
  max-width: 100% !important;
}
.scouting-file :focus-visible,
.profile-jump:focus-visible,
.scouting-directory button:focus-visible {
  outline: 3px solid #b69a50;
  outline-offset: 4px;
}
@media (min-width: 1100px) {
  .scouting-directory {
    position: sticky;
    top: 12px;
  }
}
@media (max-width: 1050px) {
  .scouting-layout {
    grid-template-columns: 200px minmax(0, 1fr);
  }
  .scouting-file {
    padding: 28px;
  }
  .outlook-stories {
    grid-template-columns: repeat(2, 1fr);
  }
  .outlook-stories article:nth-child(2) {
    border-right: 0;
  }
  .outlook-stories article:nth-child(-n + 2) {
    border-bottom: 1px solid #c5cfbd;
  }
  .scouting-byline {
    align-items: start;
    flex-direction: column;
  }
  .complete-roster {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 750px) {
  .roster-cover {
    min-height: 370px;
  }
  .assessment-stamp {
    line-height: 1.8;
  }
  .outlook-stories article {
    padding: 18px 12px;
    gap: 8px;
  }
  .outlook-stories h3 {
    font-size: 1.12rem;
  }
  .story-number {
    font-size: 1.25rem;
  }
  .scouting-layout {
    grid-template-columns: 1fr;
  }
  .scouting-directory {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 0;
  }
  .scouting-directory button {
    padding: 14px 25px 14px 14px;
    border-right: 1px solid #d0d9c7;
  }
  .scouting-directory button[aria-current] {
    padding-left: 10px;
  }
  .scouting-directory button small {
    font-size: 0.64rem;
  }
  .scouting-file {
    padding: 26px 20px;
  }
  .scouting-section > .section-head,
  .roster-comparison > .section-head {
    align-items: start;
    flex-direction: column;
  }
  .roster-measures {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .position-readings section {
    grid-template-columns: 64px 1fr;
    gap: 13px;
  }
  .scouting-changes {
    padding: 18px;
  }
  .moves-columns,
  .draft-class {
    grid-template-columns: 1fr;
  }
  .change-totals {
    gap: 15px;
  }
  .window-verdict {
    padding: 22px;
  }
  .scouting-body {
    font-size: 0.96rem;
  }
  .scouting-file > h2 {
    font-size: 2.1rem;
  }
}
@media print {
  .scouting-directory,
  .outlook-stories {
    display: none;
  }
  .scouting-layout {
    display: block;
  }
  .scouting-file {
    padding: 0;
  }
  .roster-cover {
    background: #183827 !important;
  }
  .window-verdict {
    break-inside: avoid;
  }
  .roster-comparison .table-wrap {
    overflow: visible;
  }
}
/* Opinion leads; the roster research remains available beneath the column. */
.editorial-prose {
  max-width: 760px;
  margin: 26px 0 30px;
}
.editorial-prose p {
  font:
    400 1.075rem/1.9 Georgia,
    "Times New Roman",
    serif;
  color: #35452f;
  margin: 0 0 22px;
}
.editorial-prose p:first-child::first-letter {
  float: left;
  font:
    400 4.1rem/0.82 Georgia,
    serif;
  color: #8e773e;
  padding: 9px 9px 2px 0;
}
.roster-notes {
  margin-top: 26px;
}
.roster-notes .roster-measures {
  padding-top: 22px;
}
.roster-notes .position-readings {
  margin-bottom: 16px;
}
.scouting-file .window-verdict {
  margin-top: 28px;
}
.scouting-file .scouting-verdict {
  margin-bottom: 0;
}
.scouting-byline:before {
  content: "COMMISSIONER’S CLUB · OPINION";
  font-size: 0.61rem;
  letter-spacing: 0.1em;
  color: #8b794b;
}
.scouting-byline {
  flex-wrap: wrap;
}
.scouting-byline:before {
  flex-basis: 100%;
  margin-bottom: 5px;
}
@media (max-width: 750px) {
  .editorial-prose p {
    font-size: 1.015rem;
    line-height: 1.85;
  }
  .editorial-prose p:first-child::first-letter {
    font-size: 3.5rem;
  }
}
/* Commissioner’s Club identity: football crown, CC monogram, record-book shield. */
.mast {
  min-height: 108px;
  padding-top: 15px;
  padding-bottom: 15px;
}
.brand {
  gap: 16px;
  letter-spacing: normal;
  flex-shrink: 0;
  max-width: 100%;
  white-space: normal;
}
.league-crest {
  display: block;
  width: 66px;
  height: 75px;
  flex: 0 0 auto;
  filter: drop-shadow(0 3px 4px #0003);
}
.brand-type {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
  min-width: 0;
}
.brand-name {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  font-weight: 400;
  letter-spacing: 0.035em;
  line-height: 1.15;
  color: #f0e4bd;
  white-space: normal;
  overflow-wrap: anywhere;
}
.brand-caption {
  font-family: Arial, sans-serif;
  font-size: 0.56rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  line-height: 1.4;
  color: #bba66d;
  white-space: nowrap;
}
.brand:focus-visible {
  outline: 2px solid #d5b66b;
  outline-offset: 8px;
  border-radius: 3px;
}
.brand:hover .brand-name {
  color: #fff4d1;
}
.footer-identity {
  display: flex;
  align-items: center;
  gap: 13px;
}
.footer-identity .league-crest {
  width: 43px;
  height: 49px;
  filter: none;
}
.footer-identity .brand-name {
  color: #284b33;
  font-size: 1.2rem;
}
.footer-identity .brand-caption {
  color: #7f7049;
  font-size: 0.48rem;
}
.footer-identity .brand-type {
  gap: 7px;
}
@media (max-width: 1000px) {
  .brand {
    gap: 12px;
  }
  .league-crest {
    width: 58px;
    height: 66px;
  }
  .brand-name {
    font-size: 1.35rem;
  }
  .brand-caption {
    font-size: 0.5rem;
  }
}
@media (max-width: 640px) {
  .mast {
    padding-top: 14px;
    padding-bottom: 18px;
    gap: 18px;
  }
  .league-crest {
    width: 56px;
    height: 64px;
  }
  .brand-name {
    font-size: 1.55rem;
  }
  .brand-caption {
    font-size: 0.54rem;
  }
  .brand {
    gap: 14px;
  }
}
@media (prefers-reduced-motion: no-preference) {
  .brand-name {
    transition: color 0.2s ease;
  }
}
/* Human-readable championship records stay in the history dialog. */
.archive-readers {
  margin: 24px 0 20px;
  border-top: 1px solid #c7d2bc;
}
.archive-readers > details {
  border-bottom: 1px solid #c7d2bc;
}
.archive-readers > details > summary {
  padding: 19px 0;
  color: #31593b;
  font-size: 0.94rem;
  font-weight: 650;
  cursor: pointer;
}
.archive-readers > details[open] > summary {
  color: #88703d;
}
.archive-readers > details > summary:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}
.playoff-archive {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: 0 0 22px;
}
.playoff-archive h3 {
  font:
    400 1.15rem Georgia,
    serif;
  color: #345338;
}
.playoff-archive ol {
  list-style: none;
  padding: 0;
  margin: 0;
}
.playoff-archive li {
  border: 1px solid #cbd6c0;
  background: #f1f4e8;
  margin: 12px 0;
  padding: 12px;
}
.playoff-placement {
  display: block;
  font-size: 0.63rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #8a7546;
  padding-bottom: 9px;
  border-bottom: 1px solid #d7dfcb;
  margin-bottom: 8px;
}
.playoff-contestant {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  padding: 9px 0;
  color: #65725a;
  font-size: 0.77rem;
  overflow-wrap: anywhere;
}
.playoff-contestant span {
  min-width: 0;
}
.playoff-winner {
  color: #24482e;
  font-weight: 700;
}
.playoff-winner small {
  font-size: 0.57rem;
  align-self: center;
  color: #806c37;
  border: 1px solid #d6c69b;
  padding: 3px 4px;
  white-space: nowrap;
}
.complete-final {
  margin-top: 12px;
  padding-bottom: 24px;
}
.complete-final li {
  align-items: start;
}
.lineup-slot {
  display: block;
  font-size: 0.62rem;
  color: #8a7951;
  letter-spacing: 0.07em;
  margin-bottom: 4px;
}
.lineup-total {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  border-top: 2px solid #a28b51;
  padding: 16px 0;
  color: #2d5136;
}
.complete-final details {
  border-top: 1px solid #cbd6c0;
}
.complete-final summary {
  padding: 15px 0;
  cursor: pointer;
  font-size: 0.8rem;
  color: #577047;
}
.archive-sleeper-link {
  display: inline-block;
  color: #456847;
  font-size: 0.82rem;
  margin-top: 5px;
}
.archive-readers summary:focus-visible {
  outline: 2px solid #ab9050;
  outline-offset: 3px;
}
@media (max-width: 700px) {
  .playoff-archive {
    grid-template-columns: 1fr;
  }
  .playoff-archive section + section {
    border-top: 1px solid #c8d3bd;
    padding-top: 8px;
  }
  .playoff-archive ol {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
  .playoff-archive li {
    margin: 0;
  }
  .playoff-contestant {
    flex-wrap: wrap;
  }
  .complete-final {
    gap: 25px;
  }
}
@media (max-width: 400px) {
  .playoff-archive ol {
    grid-template-columns: 1fr;
  }
}
