/* Community cards and channel controls extend the existing Jackson tokens. */
body {
  -webkit-font-smoothing: antialiased;
}
h1,
h2,
h3 {
  text-wrap: balance;
}
p {
  text-wrap: pretty;
}
.channel-bar {
  min-width: 0;
}
.channel-bar nav {
  overflow-x: auto;
  min-width: 0;
  gap: 22px;
  scrollbar-width: thin;
  overscroll-behavior-x: contain;
  padding-bottom: 3px;
}
.channel-bar nav a {
  flex: none;
  max-width: 260px;
  overflow-wrap: anywhere;
}
.channel-tools {
  display: flex;
  flex: none;
  gap: 4px;
}
.channel-tools .icon-button {
  border: 1px solid var(--line);
  background: var(--white);
}
.community-note {
  font-size: 13px;
  line-height: 1.65;
  color: var(--muted);
  max-width: 800px;
  display: flex;
  gap: 8px;
  align-items: flex-start;
}
.community-note svg {
  width: 18px;
  height: 18px;
  flex: none;
}
.section-title > div {
  min-width: 0;
}
.section-title .eyebrow {
  margin-bottom: 7px;
}
.player-section .section-title {
  align-items: flex-end;
  flex-wrap: wrap;
}
.athlete-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.athlete-card {
  display: block;
  background: var(--white);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 3px 18px oklch(0.2 0.04 260/0.06);
  border: 1px solid var(--line);
  min-width: 0;
}
.athlete-art {
  height: 226px;
  background: var(--green);
  color: oklch(0.47 0.095 158);
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}
.athlete-art:before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 49px,
    oklch(1 0 0/0.09) 50px,
    transparent 51px
  );
  pointer-events: none;
}
.athlete-art.has-portrait {
  height: auto;
  aspect-ratio: 3 / 4;
}
.player-portrait {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.has-portrait .player-portrait {
  position: absolute;
  inset: 0;
}
.has-portrait .card-label,
.has-portrait .athlete-position {
  z-index: 1;
  top: auto;
  bottom: 12px;
  background: oklch(0.2 0.04 158 / 0.92);
  padding: 7px 9px;
  border-radius: 6px;
  line-height: 1.2;
}
.has-portrait .card-label {
  left: 12px;
  max-width: calc(100% - 67px);
}
.has-portrait .athlete-position {
  right: 12px;
  font-size: 12px;
}
.profile-jersey .player-portrait {
  width: min(100%, 340px);
  height: auto;
  aspect-ratio: 3 / 4;
  border-radius: 12px;
}
.valpo-resource-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
  gap: 16px;
}
.valpo-resource {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 24px;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 16px;
}
.valpo-resource h3 {
  margin: 0 0 12px;
  font-size: 19px;
}
.valpo-resource p {
  font-size: 13px;
  line-height: 1.7;
  color: var(--muted);
  margin: 0 0 16px;
  flex: 1;
}
.valpo-resource .text-link {
  min-height: 44px;
  font-size: 13px;
}
.jersey {
  width: 180px;
  height: 184px;
  flex: none;
  filter: drop-shadow(0 8px 8px oklch(0 0 0/0.12));
}
.card-label {
  position: absolute;
  top: 17px;
  left: 17px;
  color: white;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
}
.athlete-position {
  position: absolute;
  right: 15px;
  bottom: 16px;
  color: white;
  font-weight: 800;
  font-size: 16px;
}
.athlete-info {
  padding: 20px;
}
.athlete-info .eyebrow {
  font-size: 9px;
  color: var(--muted);
  letter-spacing: 0.08em;
}
.athlete-info h3 {
  font-size: 23px;
  margin: 12px 0 20px;
  overflow-wrap: anywhere;
}
.athlete-numbers {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  font-variant-numeric: tabular-nums;
}
.athlete-numbers strong {
  display: block;
  font-size: 24px;
}
.athlete-numbers span {
  display: block;
  font-size: 11px;
  color: var(--muted);
  margin-top: 6px;
  line-height: 1.45;
}
.athlete-open {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid var(--line);
  margin-top: 20px;
  padding-top: 12px;
  font-size: 12px;
  font-weight: 800;
  min-height: 44px;
}
.athlete-open svg {
  width: 18px;
}
.player-hero {
  background: var(--green);
  color: white;
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 36px;
  padding: 42px;
  border-radius: 22px;
  align-items: center;
}
.player-hero h1 {
  font-size: clamp(38px, 5vw, 70px);
  margin-bottom: 18px;
  overflow-wrap: anywhere;
}
.player-hero > .profile-jersey {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: oklch(0.52 0.1 158);
  gap: 20px;
}
.profile-jersey .jersey {
  width: min(100%, 310px);
  height: 300px;
}
.profile-jersey > span {
  font-size: 11px;
  font-weight: 800;
  color: white;
  letter-spacing: 0.1em;
}
.player-hero .eyebrow {
  opacity: 0.9;
}
.profile-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin: 30px 0;
  font-variant-numeric: tabular-nums;
}
.profile-stats strong {
  display: block;
  font-size: 42px;
}
.profile-stats span {
  font-size: 13px;
  line-height: 1.5;
  display: block;
  margin-top: 7px;
}
.player-hero .community-note {
  color: oklch(0.89 0.025 155);
}
.player-hero .secondary {
  color: var(--ink);
}
.stat-log {
  display: grid;
  gap: 14px;
}
.stat-entry {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 26px;
  align-items: center;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
}
.stat-entry h3 {
  margin-bottom: 12px;
}
.status-label {
  display: inline-flex;
  padding: 6px 9px;
  background: var(--paper);
  border-radius: 6px;
  font-size: 11px;
  font-weight: 750;
  line-height: 1.5;
}
.status-label.reviewed {
  background: oklch(0.93 0.04 155);
  color: var(--green);
}
.stat-entry .fine {
  margin: 10px 0 0;
}
.community-form {
  display: grid;
  gap: 10px;
}
.community-form > p {
  font-size: 14px;
}
.community-form label,
.community-form legend {
  font-size: 14px;
  font-weight: 750;
  line-height: 1.5;
}
.community-form input,
.community-form select,
.community-form textarea {
  min-width: 0;
  width: 100%;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  border-radius: 9px;
  padding: 12px;
  font-size: 16px;
  line-height: 1.5;
}
.community-form textarea {
  resize: vertical;
}
.community-form input:focus-visible,
.community-form select:focus-visible,
.community-form textarea:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}
.community-form label:not(:first-child) {
  margin-top: 8px;
}
.community-form .button {
  margin-top: 12px;
  font-size: 14px;
}
.form-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px 16px;
}
.form-pair > label {
  grid-row: 1;
  margin-top: 8px;
}
.form-pair > input,
.form-pair > select {
  grid-row: 2;
}
.stat-inputs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 9px;
}
.stat-inputs > label {
  grid-row: 1;
  align-self: end;
}
.stat-inputs > input {
  grid-row: 2;
}
.community-form fieldset {
  min-width: 0;
  padding: 0;
  border: 0;
  margin-top: 18px;
}
.widget-choice {
  display: flex;
  gap: 3px;
  align-items: center;
  border-top: 1px solid var(--line);
  padding: 7px 0;
}
.widget-choice > label {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  min-height: 44px;
  margin: 0;
  font-size: 13px;
}
.widget-choice input {
  width: 19px;
  height: 19px;
  accent-color: var(--accent);
  flex: none;
}
.widget-choice .icon-button {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
}
.widget-choice .icon-button svg {
  width: 17px;
}
.future-tools {
  margin-top: 25px;
  border-top: 1px solid var(--line);
  padding-top: 20px;
}
.future-tools summary {
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
  min-height: 44px;
}
.future-tools > p {
  font-size: 14px;
}
.share-card-preview {
  width: 100%;
  max-width: 340px;
  margin: 0 auto 20px;
  border-radius: 14px;
}
.share-card-preview ~ .button {
  margin-top: 10px;
}
.channel-hero {
  padding: 45px;
  border-radius: 22px;
  background: var(--green);
  color: white;
  position: relative;
}
.channel-hero h1 {
  font-size: clamp(40px, 6vw, 76px);
  overflow-wrap: anywhere;
  max-width: 950px;
}
.channel-hero > p:not(.eyebrow) {
  font-size: 18px;
  max-width: 700px;
  overflow-wrap: anywhere;
}
.channel-local {
  display: block;
  margin-top: 22px;
  font-size: 12px;
  opacity: 0.9;
}
.theme-blue {
  background: var(--accent);
}
.theme-night {
  background: var(--navy);
}
.theme-gold {
  background: oklch(0.43 0.08 77);
}
.channel-schedule {
  display: grid;
  gap: 8px;
}
.channel-schedule > a {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
}
.channel-schedule > a > span {
  min-width: 70px;
  font-size: 13px;
  color: var(--muted);
}
.channel-schedule > a > strong {
  flex: 1;
}
.replay-mini-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.replay-mini {
  background: var(--green);
  color: white;
  padding: 26px;
  display: flex;
  text-align: left;
  gap: 20px;
  align-items: center;
  border-radius: 14px;
  min-height: 125px;
}
.replay-mini > span {
  min-width: 0;
}
.replay-mini b {
  display: block;
  font-size: 18px;
  line-height: 1.5;
}
.replay-mini small {
  display: block;
  font-size: 12px;
  line-height: 1.5;
  margin-top: 8px;
}
.channel-arcade {
  display: flex;
  gap: 24px;
  align-items: center;
  background: var(--white);
  border-radius: 16px;
  padding: 28px;
}
.channel-arcade > div {
  flex: 1;
}
.channel-arcade p {
  font-size: 14px;
}
.community-teaser {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 26px 30px;
  margin-top: 28px;
  background: oklch(0.94 0.025 155);
  border: 1px solid oklch(0.86 0.035 155);
  border-radius: 16px;
}
.community-teaser h2 {
  font-size: 27px;
  margin-bottom: 9px;
}
.community-teaser p {
  font-size: 14px;
  margin-bottom: 0;
}
.game-center-hero {
  background: var(--navy);
  color: white;
  padding: 36px;
  border-radius: 22px;
  text-align: center;
  margin-bottom: 18px;
}
.game-center-score {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 35px;
  align-items: center;
  margin: 30px 0;
}
.game-center-score > div {
  min-width: 0;
}
.game-center-score .team-badge {
  width: 64px;
  height: 64px;
  font-size: 19px;
  margin: auto;
}
.game-center-score h1,
.game-center-score h2 {
  font-size: clamp(22px, 3vw, 38px);
  margin: 15px 0 0;
}
.game-center-score b {
  font-size: clamp(32px, 6vw, 72px);
  font-variant-numeric: tabular-nums;
}
.game-center-score b > span {
  padding-inline: 14px;
  color: oklch(0.75 0.01 260);
}
.game-center-score small {
  display: block;
  font-size: 12px;
  margin-top: 10px;
}
.game-center-hero p {
  margin-bottom: 9px;
}
.game-section-nav {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 6px 0 20px;
}
.game-section-nav > .chip {
  flex: none;
}
.game-center-layout {
  display: grid;
  grid-template-columns: 1.65fr 1fr;
  gap: 24px;
}
.stats-panel {
  padding: 27px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  margin-bottom: 22px;
  scroll-margin-top: 120px;
}
.stats-panel h2 {
  font-size: 25px;
}
.stats-panel > p {
  font-size: 14px;
}
.comparison-teams {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  margin: 22px 0;
}
.comparison-teams > span {
  font-size: 10px;
  letter-spacing: 0.1em;
}
.comparison-row {
  margin: 24px 0;
}
.comparison-row > div:first-child {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 13px;
}
.comparison-row strong {
  font-variant-numeric: tabular-nums;
}
.comparison-bars {
  display: flex;
  gap: 4px;
  margin-top: 10px;
  height: 7px;
  background: var(--paper);
  border-radius: 8px;
  overflow: hidden;
}
.comparison-bars > i {
  background: var(--accent);
}
.comparison-bars > i + i {
  background: var(--green);
}
.leader-grid {
  display: grid;
  gap: 15px;
}
.leader-card {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  padding: 20px;
  background: var(--paper);
  border-radius: 12px;
}
.leader-card > div {
  flex: 1;
}
.leader-portrait {
  width: 78px;
  height: 92px;
  object-fit: cover;
  object-position: center 15%;
  border-radius: 10px;
  flex: none;
}
.leader-card h3 {
  font-size: 17px;
  margin: 0;
}
.leader-card .eyebrow {
  margin-bottom: 8px;
}
.leader-card .athlete-numbers {
  flex-basis: 100%;
  grid-template-columns: 1fr 1fr;
}
.scoring-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.scoring-list li {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.scoring-list li:last-child {
  border: 0;
}
.scoring-list li > span {
  font-size: 16px;
  font-weight: 800;
  min-width: 43px;
}
.scoring-list small {
  display: block;
  font-size: 11px;
  color: var(--muted);
  margin-top: 8px;
}
.scoring-list li > div {
  flex: 1;
  font-size: 14px;
}
.scoring-list p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 13px;
}
.feed-empty {
  padding: 20px 0;
  border-top: 1px solid var(--line);
  font-size: 13px;
}
.feed-empty h3 {
  font-size: 17px;
  margin: 12px 0;
}
.feed-empty p {
  color: var(--muted);
}
.install-banner {
  max-width: 1236px;
  margin: 0 auto 20px;
  background: var(--navy);
  color: white;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 16px 20px;
  border-radius: 13px;
}
.install-banner > img {
  width: 45px;
  height: 45px;
  border-radius: 10px;
}
.install-banner > div {
  flex: 1;
  min-width: 0;
}
.install-banner b {
  display: block;
  font-size: 14px;
}
.install-banner small {
  display: block;
  font-size: 12px;
  line-height: 1.5;
  margin-top: 3px;
}
.install-banner .button {
  padding: 10px 14px;
  min-height: 44px;
}
.alert-options {
  display: grid;
  gap: 10px;
}
.alert-options label {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  background: var(--paper);
  border-radius: 9px;
  font-size: 14px;
}
.alert-options input {
  width: 20px;
  height: 20px;
  accent-color: var(--accent);
}
.post-thumbnail {
  aspect-ratio: 16/9;
  width: 100%;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 16px;
  background: var(--paper);
}
button:active:not(:disabled),
a.button:active {
  transform: scale(0.96);
}
.page-community .button {
  font-size: 14px;
}
@media (max-width: 1050px) {
  .athlete-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .game-center-layout {
    grid-template-columns: 1fr 1fr;
  }
  .player-hero {
    gap: 20px;
    padding: 28px;
  }
  .stat-entry {
    grid-template-columns: 1fr 1fr;
  }
  .stat-entry > .button {
    grid-column: 1/-1;
  }
  .channel-bar nav {
    gap: 18px;
  }
}
@media (max-width: 650px) {
  .channel-bar {
    gap: 8px;
  }
  .channel-bar nav {
    gap: 18px;
  }
  .channel-bar nav a {
    font-size: 12px;
    max-width: 210px;
  }
  .channel-tools .share-space {
    display: none;
  }
  .channel-tools .icon-button {
    min-width: 44px;
  }
  .athlete-grid {
    gap: 12px;
  }
  .athlete-art {
    height: 190px;
  }
  .jersey {
    width: 149px;
    height: 155px;
  }
  .card-label {
    font-size: 8px;
    top: 14px;
    left: 12px;
  }
  .athlete-info {
    padding: 15px 12px;
  }
  .athlete-info h3 {
    font-size: 21px;
    margin: 10px 0 16px;
  }
  .athlete-info .eyebrow {
    font-size: 8px;
  }
  .athlete-numbers {
    gap: 5px;
  }
  .athlete-numbers strong {
    font-size: 22px;
  }
  .athlete-numbers span {
    font-size: 10px;
  }
  .athlete-open {
    font-size: 11px;
    gap: 5px;
    margin-top: 17px;
  }
  .athlete-position {
    font-size: 13px;
    right: 12px;
  }
  .player-section .section-title > .button {
    font-size: 13px;
  }
  .community-note {
    font-size: 12px;
  }
  .player-hero {
    display: flex;
    flex-direction: column;
    padding: 26px 22px;
    gap: 28px;
  }
  .profile-jersey .jersey {
    height: 205px;
    width: 210px;
  }
  .profile-jersey > span {
    font-size: 9px;
  }
  .player-hero > div {
    width: 100%;
  }
  .player-hero h1 {
    font-size: 42px;
  }
  .profile-stats {
    gap: 12px;
  }
  .profile-stats strong {
    font-size: 35px;
  }
  .profile-stats span {
    font-size: 12px;
  }
  .player-hero .sheet-actions {
    flex-wrap: wrap;
  }
  .player-hero .sheet-actions .button {
    font-size: 12px;
    flex-basis: 45%;
  }
  .stat-entry {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 21px;
    gap: 23px;
  }
  .stat-entry h3 {
    font-size: 22px;
  }
  .stat-entry .athlete-numbers strong {
    font-size: 29px;
  }
  .stat-entry .athlete-numbers span {
    font-size: 12px;
  }
  .channel-hero {
    padding: 30px 23px;
  }
  .channel-hero h1 {
    font-size: 43px;
  }
  .channel-hero > p:not(.eyebrow) {
    font-size: 16px;
  }
  .channel-schedule > a {
    gap: 14px;
    padding: 18px;
    font-size: 14px;
  }
  .channel-schedule > a > span {
    min-width: 52px;
    font-size: 12px;
  }
  .replay-mini-grid {
    grid-template-columns: 1fr;
  }
  .channel-arcade {
    flex-wrap: wrap;
    padding: 23px;
  }
  .channel-arcade > .button {
    width: 100%;
  }
  .community-teaser {
    grid-template-columns: 1fr;
    padding: 24px;
    gap: 18px;
  }
  .community-teaser h2 {
    font-size: 26px;
  }
  .community-teaser .button {
    width: 100%;
    font-size: 13px;
  }
  .game-center-hero {
    padding: 26px 15px;
  }
  .game-center-score {
    gap: 12px;
    margin: 23px 0;
  }
  .game-center-score .team-badge {
    width: 48px;
    height: 48px;
    font-size: 15px;
  }
  .game-center-score h1,
  .game-center-score h2 {
    font-size: 20px;
    line-height: 1.2;
  }
  .game-center-score b {
    font-size: 35px;
  }
  .game-center-score b > span {
    padding-inline: 5px;
  }
  .game-center-score small {
    font-size: 10px;
  }
  .game-center-hero > p:not(.eyebrow) {
    font-size: 13px;
  }
  .game-center-hero > small {
    font-size: 11px;
  }
  .game-center-layout {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .stats-panel {
    padding: 23px;
  }
  .stats-panel h2 {
    font-size: 24px;
  }
  .install-banner {
    margin: 8px 18px 22px;
    flex-wrap: wrap;
    padding: 16px;
    gap: 12px;
  }
  .install-banner > div {
    min-width: 130px;
  }
  .install-banner .button {
    flex: 1;
  }
  .install-banner .icon-button {
    border: 1px solid oklch(1 0 0/0.3);
  }
  .community-form label,
  .community-form legend {
    font-size: 14px;
  }
  .community-form input,
  .community-form select,
  .community-form textarea {
    font-size: 16px;
  }
  .widget-choice > label {
    font-size: 13px;
  }
  .form-pair {
    gap: 9px 12px;
  }
}
@media (max-width: 360px) {
  .athlete-art {
    height: 170px;
  }
  .jersey {
    width: 132px;
    height: 140px;
  }
  .athlete-info h3 {
    font-size: 19px;
  }
  .athlete-numbers strong {
    font-size: 19px;
  }
  .athlete-numbers span {
    font-size: 9px;
  }
  .card-label {
    font-size: 7px;
  }
  .athlete-open {
    font-size: 10px;
  }
  .game-center-score h1,
  .game-center-score h2 {
    font-size: 17px;
  }
  .game-center-score b {
    font-size: 29px;
  }
  .game-center-score {
    gap: 6px;
  }
  .stat-inputs {
    grid-template-columns: 1fr;
  }
  .stat-inputs > label,
  .stat-inputs > input {
    grid-row: auto;
  }
}
@media (prefers-reduced-motion: reduce) {
  button:active:not(:disabled),
  a.button:active {
    transform: none;
  }
}
@media (max-width: 600px) {
  .athlete-card .athlete-numbers {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .athlete-card .athlete-numbers > div {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 7px;
  }
  .athlete-card .athlete-numbers strong {
    font-size: 23px;
  }
  .athlete-card .athlete-numbers span {
    font-size: 11px;
    line-height: 1.35;
    margin: 0;
    text-align: right;
    overflow-wrap: anywhere;
  }
  .install-banner > .button {
    flex-basis: calc(100% - 56px);
  }
}

/* Frame the supplied portrait without changing the original photograph. */
.jackson-photo {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.jackson-photo > img {
  position: absolute;
  display: block;
  width: 190%;
  max-width: none;
  height: auto;
  left: -25%;
  top: -22%;
  -webkit-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
}
.brand-mark.jackson-photo { padding: 0; background: var(--paper); flex: none; }
.fake-score b.score-avatar { padding: 0; overflow: hidden; }
.matchup-photo { display: block; width: 63px; height: 63px; }
@media (max-width: 360px) {
  .matchup-photo { width: 55px; height: 55px; }
}
