/* Manly Cup — browser port */
:root {
  --navy: #003473;
  --red: #bf2f38;
  --red-deep: #9a242c;
  --white: #fff;
  --text: #1a2332;
  --muted: #5a6472;
  --surface: #f4f6f9;
  --border: #dde3ea;
  --sidebar-w: 200px;
  --center-w: 600px;
  --shell-w: 1000px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--navy);
  color: var(--text);
  min-height: 100vh;
  padding-bottom: 90px;
}

.wrap {
  width: var(--shell-w);
  max-width: 100%;
  margin: 0 auto;
  padding: 12px 8px 32px;
}

.banner {
  margin-bottom: 8px;
}

.banner img {
  display: block;
  width: 100%;
  max-width: 1000px;
  height: auto;
  margin: 0 auto;
}

.convert-notice {
  background: #fff8e6;
  border: 1px solid #d4a017;
  color: #333;
  padding: 10px 14px;
  margin: 0 0 10px;
  font-size: 14px;
  line-height: 1.4;
}

.convert-notice p {
  margin: 0;
}

.convert-notice a {
  color: var(--navy);
  font-weight: 700;
  word-break: break-all;
}

.sister-games {
  display: flex;
  justify-content: center;
  align-items: stretch;
  margin: 0 0 8px;
  overflow: hidden;
  background: var(--red);
  border-radius: 4px;
}

.sister-games a {
  flex: 1 1 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 9px 10px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  border-right: 1px solid rgba(255, 255, 255, 0.35);
}

.sister-games a:last-child {
  border-right: 0;
}

.sister-games a:hover,
.sister-games a:focus-visible {
  background: var(--red-deep);
}

/* Classic three-column shell: left alley · center · right alley */
.main-layout {
  display: flex;
  gap: 0;
  align-items: stretch;
  justify-content: center;
  width: 100%;
}

.sidebar {
  width: var(--sidebar-w);
  min-width: var(--sidebar-w);
  flex-shrink: 0;
  align-self: stretch;
  min-height: 400px;
  background: var(--red);
  color: var(--white);
  padding: 10px 8px;
  font-size: 13px;
  line-height: 1.35;
}

.sidebar a {
  color: #ffd0d3;
}

.sidebar a:hover {
  color: #fff;
}

.sidebar-right {
  background: var(--navy);
  border-left: 2px solid #001f4a;
}

.sidebar p {
  margin: 0 0 8px;
}

.sidebar ol {
  margin: 0 0 10px;
  padding-left: 18px;
}

.sidebar li {
  margin: 2px 0;
}

.sidebar .mine {
  color: #ffe566;
}

.content-col {
  flex: 0 0 var(--center-w);
  width: var(--center-w);
  min-width: 0;
  max-width: var(--center-w);
}

.content {
  background: var(--white);
  padding: 20px 22px 24px;
  min-height: 480px;
  font-size: 14px;
  line-height: 1.45;
}

.content h1,
.content h2 {
  margin-top: 0;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.content h1 {
  font-size: 1.65rem;
  line-height: 1.15;
  margin-bottom: 6px;
}

.content p {
  margin: 0 0 10px;
}

.page-header {
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}

.page-header h1 {
  margin-bottom: 2px;
}

.page-eyebrow {
  margin: 0 0 2px !important;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.page-meta {
  margin: 0 !important;
  font-size: 12px;
  color: var(--muted);
}

.page-meta b {
  color: var(--navy);
  font-weight: 700;
}

.cap-summary {
  margin-bottom: 10px;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  margin-bottom: 6px;
}

.stat-grid-fa {
  margin-bottom: 6px;
}

.stat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 5px 8px;
  min-width: 0;
}

.stat-label {
  display: block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1px;
  line-height: 1.2;
}

.stat-value {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  font-variant-numeric: tabular-nums;
  line-height: 1.2;
}

.stat-value.is-warn {
  color: var(--red);
}

.cap-meter {
  height: 3px;
  margin-top: 4px;
  background: #dce2ea;
  border-radius: 2px;
  overflow: hidden;
}

.cap-meter span {
  display: block;
  height: 100%;
  background: var(--navy);
  border-radius: 2px;
}

.lineup-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.lineup-chip {
  display: inline-block;
  padding: 1px 7px;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.4;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--border);
  color: var(--muted);
  font-variant-numeric: tabular-nums;
}

.lineup-chip.is-ok {
  background: #e8f0fa;
  border-color: #b8cce8;
  color: var(--navy);
}

.lineup-chips.is-ok .lineup-chip {
  background: #e8f0fa;
  border-color: #b8cce8;
  color: var(--navy);
}

.note-callout {
  margin: 0 0 8px;
  padding: 5px 8px;
  font-size: 11px;
  line-height: 1.35;
  color: var(--muted);
  background: #fafbfc;
  border-left: 3px solid var(--navy);
  border-radius: 0 4px 4px 0;
}

.alert-callout {
  margin: 0 0 8px;
  padding: 6px 8px;
  font-size: 12px;
  line-height: 1.35;
  background: #fff4f4;
  border: 1px solid #f0c8cb;
  border-radius: 4px;
  color: #6b1f26;
}

.panel {
  margin-bottom: 10px;
}

.panel-title {
  margin: 0 0 5px !important;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.roster-panel {
  margin-bottom: 10px;
}

.action-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding-top: 8px;
  border-top: 1px solid var(--border);
}

.action-bar-inline {
  margin: 8px 0 10px;
  padding: 0;
  border-top: none;
}

.action-bar-renew {
  align-items: center;
  gap: 14px;
}

.renew-fa-hint {
  margin: 0 !important;
  flex: 1;
  min-width: 12em;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--red);
}

.table-wrap {
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  background: #fff;
}

.franchise-panel {
  margin-bottom: 8px;
}

.franchise-panel .table-wrap {
  margin-top: 0;
}

.team-pick-div {
  margin-bottom: 14px;
}

.team-pick-div h3 {
  margin: 0 0 6px;
  color: var(--navy);
  font-size: 15px;
}

.team-pick-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 6px;
}

.team-pick {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
}

.btn {
  display: inline-block;
  margin: 0;
  padding: 9px 16px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid #c5ccd6;
  border-radius: 6px;
  background: #fff;
  color: var(--text);
  transition: background 0.15s, border-color 0.15s;
}

.btn:hover {
  background: var(--surface);
  border-color: #aeb8c4;
}

.btn-primary {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.btn-primary:hover {
  background: #002a5c;
  border-color: #002a5c;
}

.btn-season {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
  font-weight: 700;
}

.btn-season:hover {
  background: var(--red-deep);
  border-color: var(--red-deep);
}

.preview-board {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(188px, 220px);
  gap: 12px 18px;
  align-items: start;
  margin-top: 4px;
}

.standings-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
}

.standings-block {
  min-width: 0;
}

.standings-block h3,
.schedule-block h3 {
  margin: 0 0 4px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--navy);
}

.standings {
  border-collapse: collapse;
  font-size: 12px;
  margin: 0;
  width: auto;
  max-width: 100%;
  line-height: 1.25;
  table-layout: auto;
}

.standings th,
.standings td {
  border: none;
  border-bottom: 1px solid #e4e8ec;
  padding: 2px 4px;
  text-align: left;
}

.standings th {
  background: #eef2f6;
  font-size: 11px;
  font-weight: 600;
  color: #445;
  padding: 3px 4px;
}

.standings td.num,
.standings th:not(.team) {
  text-align: right;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  width: 1%;
  padding-left: 8px;
}

.standings th:nth-child(2),
.standings td.num:nth-child(2) {
  padding-left: 10px;
}

.standings td.team,
.standings th.team {
  width: 1%;
  max-width: 9.5em;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding-right: 2px;
}

.standings tbody tr.mine td {
  color: var(--navy);
  font-weight: 700;
  background: #f3f7fb;
}

.standings tbody tr:last-child td {
  border-bottom: none;
}

.schedule-block {
  font-size: 12px;
  line-height: 1.35;
  background: #fff;
  min-width: 0;
}

.schedule-block h3 {
  margin: 0 0 6px;
}

.schedule-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  background: #fff;
}

.schedule-list li {
  padding: 7px 10px;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  line-height: 1.35;
}

.schedule-list li:nth-child(even):not(.mine) {
  background: var(--surface);
}

.schedule-list li:last-child {
  border-bottom: none;
}

.schedule-list li.mine {
  background: #eef4fb;
  color: var(--navy);
  font-weight: 700;
  box-shadow: inset 3px 0 0 var(--navy);
}

.schedule-list .at {
  display: inline-block;
  margin: 0 0.35em;
  color: var(--muted);
  font-weight: 400;
  font-size: 10px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.playoff-sched li {
  padding: 8px 10px;
}

.mine {
  color: var(--navy);
  font-weight: bold;
}

@media (max-width: 700px) {
  .preview-board {
    grid-template-columns: 1fr;
  }
}

.week-log {
  font-size: 13px;
  line-height: 1.25;
  max-width: 560px;
}

.week-log p {
  margin: 0 0 4px;
}

.score-table {
  border-collapse: collapse;
  font-size: 13px;
  line-height: 1.2;
  margin: 6px 0 12px;
  width: auto;
}

.score-table td {
  padding: 0;
  border: none;
  white-space: nowrap;
}

.score-table tr.mine td {
  color: var(--navy);
  font-weight: 700;
}

.my-game-box {
  margin: 0;
  padding: 0;
  border-bottom: none;
  font-size: 13px;
  line-height: 1.35;
}

.my-game-box p {
  margin: 3px 0;
}

.my-game-box > p.mine:first-child {
  margin: 0 0 6px;
  font-size: 15px;
}

.week-detail {
  font-size: 12px;
  line-height: 1.3;
  margin: 2px 0 4px;
}

.week-scores {
  margin-top: 2px;
}

.week-scores .score-table {
  margin-top: 0;
}

.week-log hr {
  border: none;
  border-top: 1px solid #ccc;
  margin: 12px 0;
}

.footer {
  text-align: center;
  color: var(--white);
  font-size: 12px;
  margin-top: 24px;
  padding: 16px;
}

.footer a {
  color: #9cf;
}

.footer a:hover {
  text-decoration: none;
}

/* Gatekeeper/Ezoic persistent CMP gear — footer Cookie Settings replaces it */
#ez-privacy-settings-button {
  position: fixed !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  overflow: hidden !important;
  pointer-events: none !important;
  z-index: -1 !important;
}

.coach-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.coach-list li {
  margin: 6px 0;
}

.roster-table {
  border-collapse: collapse;
  font-size: 13px;
  width: 100%;
}

.roster-table-pro {
  margin: 0;
}

.roster-table-pro thead th {
  background: var(--navy);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 4px 8px;
  text-align: left;
  border: none;
  line-height: 1.3;
}

.roster-table-pro thead th.num {
  text-align: right;
}

.roster-table-pro td {
  padding: 3px 8px;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
  line-height: 1.3;
}

.roster-table-pro tbody:last-child tr:last-child td {
  border-bottom: none;
}

.roster-table-pro tr.pos-group-head td {
  background: var(--surface);
  color: var(--navy);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 2px 8px;
  border-bottom: 1px solid var(--border);
  line-height: 1.3;
}

.roster-table-pro td.pos {
  width: 2.5em;
  font-weight: 700;
  color: var(--navy);
}

.roster-table-pro td.player {
  font-weight: 600;
  color: var(--text);
}

.roster-table-pro td.num,
.roster-table-pro th.num {
  text-align: right;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.roster-table-pro td.sal {
  font-weight: 700;
  color: var(--navy);
}

.roster-table-pro tr.row-pending td {
  background: #fff8f8;
}

.roster-table-pro tr.row-pending td.player,
.roster-table-pro tr.row-pending td.pos {
  color: var(--red);
}

.status-pill {
  display: inline-block;
  padding: 0 6px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.5;
  border-radius: 999px;
  white-space: nowrap;
}

.status-signed {
  background: #e8f0fa;
  color: var(--navy);
}

.status-pending {
  background: #fde8ea;
  color: var(--red);
}

.franchise-table {
  font-size: 12px;
  width: 100%;
}

.franchise-table th {
  background: var(--surface);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--muted);
  padding: 6px 8px;
  border-bottom: 1px solid var(--border);
}

.franchise-table td {
  padding: 3px 6px;
  border-bottom: 1px solid var(--border);
}

.th-sort {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  font: inherit;
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  text-decoration: underline;
}

.th-sort:hover {
  color: var(--red);
}

.fa-table {
  max-width: 100%;
}

.fa-table th,
.fa-table td {
  font-size: 13px;
}

.fa-table input[type='checkbox'] {
  width: 16px;
  height: 16px;
  cursor: pointer;
}

.renew-actions {
  white-space: nowrap;
  width: 1%;
  padding: 2px 4px !important;
  vertical-align: middle;
}

.renew-toggle {
  display: inline-flex;
  align-items: stretch;
  border: 1px solid var(--navy);
  border-radius: 4px;
  overflow: hidden;
  vertical-align: middle;
}

.renew-opt {
  margin: 0;
  padding: 3px 10px;
  font-size: 12px;
  line-height: 1.2;
  cursor: pointer;
  border: none;
  background: #fff;
  color: #556;
}

.renew-opt + .renew-opt {
  border-left: 1px solid var(--navy);
}

.renew-opt-keep.is-selected {
  background: var(--navy);
  color: var(--white);
}

.renew-opt-cut.is-selected {
  background: #8a1f1f;
  color: #fff;
}

.renew-opt:hover {
  filter: brightness(0.96);
}

.fa-table.roster-table td {
  padding: 3px 6px;
  vertical-align: middle;
}

/* Club free agents: * plus red highlight */
tr.fa-own td {
  color: var(--red);
  font-weight: 600;
  background: #fff0f1;
}

.fa-own-swatch {
  color: var(--red);
  font-weight: 700;
}

input[type='text'] {
  padding: 6px 10px;
  font-size: 15px;
  width: min(100%, 280px);
}

.status-short {
  display: none;
}

/* --- Tablet: sidebars below content --- */
@media (max-width: 900px) {
  .main-layout {
    flex-wrap: wrap;
  }

  .content-col {
    flex: 1 1 100%;
    width: 100%;
    max-width: 100%;
    order: 1;
  }

  .sidebar {
    width: 100%;
    min-width: 0;
    min-height: 0;
    order: 2;
  }

  .sidebar-right {
    order: 3;
    border-left: 0;
    border-top: 2px solid #001f4a;
  }

  .sister-games {
    flex-wrap: wrap;
  }

  .stat-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sister-games a {
    flex: 1 1 45%;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  }
}

/* --- Phone: one-hand casual sports UI --- */
@media (max-width: 768px) {
  html {
    -webkit-text-size-adjust: 100%;
  }

  body {
    padding-bottom: calc(150px + env(safe-area-inset-bottom, 0px));
  }

  .wrap {
    padding: 4px 0 0;
    width: 100%;
  }

  .banner {
    margin-bottom: 4px;
  }

  .banner img {
    width: 100%;
    height: auto;
    max-height: 48px;
    object-fit: cover;
    object-position: left center;
  }

  .convert-notice {
    padding: 6px 10px;
    margin: 0 0 4px;
    font-size: 12px;
    line-height: 1.3;
  }

  .sister-games {
    margin: 0 0 4px;
    border-radius: 0;
  }

  .sister-games a {
    flex: 1 1 50%;
    padding: 6px 6px;
    font-size: 11px;
    line-height: 1.2;
  }

  .main-layout {
    flex-direction: column;
    gap: 0;
  }

  .content-col {
    order: 1;
    width: 100%;
    max-width: 100%;
  }

  .content {
    padding: 10px 10px 72px;
    min-height: 0;
    font-size: 13px;
    line-height: 1.35;
  }

  .content h1 {
    font-size: 1.2rem;
    margin-bottom: 4px;
  }

  .page-header {
    margin-bottom: 8px;
    padding-bottom: 6px;
  }

  .page-header h1 {
    font-size: 1.25rem;
  }

  .cap-summary {
    margin-bottom: 8px;
  }

  .stat-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 4px;
    margin-bottom: 5px;
  }

  .stat-card {
    padding: 4px 5px;
    border-radius: 3px;
  }

  .stat-label {
    font-size: 8px;
    letter-spacing: 0.04em;
  }

  .stat-value {
    font-size: 12px;
  }

  .cap-meter {
    height: 2px;
    margin-top: 3px;
  }

  .lineup-chip {
    padding: 1px 5px;
    font-size: 10px;
  }

  .note-callout,
  .alert-callout {
    margin: 0 0 6px;
    padding: 4px 7px;
    font-size: 11px;
  }

  .panel,
  .roster-panel,
  .franchise-panel {
    margin-bottom: 8px;
  }

  .panel-title {
    margin: 0 0 4px !important;
    font-size: 10px;
  }

  .team-pick-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4px;
  }

  .team-pick {
    font-size: 12px;
    gap: 5px;
    padding: 4px 2px;
  }

  .team-pick-div {
    margin-bottom: 8px;
  }

  .team-pick-div h3 {
    font-size: 12px;
    margin: 0 0 4px;
  }

  .mobile-hide {
    display: none !important;
  }

  .status-full {
    display: none;
  }

  .status-short {
    display: inline;
  }

  .roster-table-pro {
    font-size: 12px;
  }

  .roster-table-pro thead th {
    padding: 3px 5px;
    font-size: 9px;
  }

  .roster-table-pro td {
    padding: 2px 5px;
  }

  .roster-table-pro tr.pos-group-head td {
    padding: 2px 5px;
    font-size: 8px;
  }

  .roster-table-pro td.player {
    max-width: 7.5em;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .fa-table th,
  .fa-table td {
    font-size: 12px;
    padding: 2px 4px;
  }

  .fa-table.roster-table td {
    padding: 2px 4px;
  }

  .fa-table input[type='checkbox'] {
    width: 22px;
    height: 22px;
  }

  .renew-toggle {
    width: 100%;
  }

  .renew-opt {
    flex: 1;
    padding: 8px 12px;
    font-size: 13px;
    min-height: 40px;
  }

  .renew-actions {
    min-width: 9.5em;
  }

  .standings {
    font-size: 11px;
  }

  .standings th,
  .standings td {
    padding: 2px 3px;
  }

  .schedule-list li {
    padding: 5px 6px;
    font-size: 12px;
  }

  .preview-board {
    gap: 8px;
    margin-top: 8px;
  }

  .week-log {
    font-size: 12px;
    max-width: 100%;
  }

  .score-table {
    font-size: 12px;
  }

  .sidebar {
    order: 2;
    padding: 8px 10px;
    font-size: 12px;
    line-height: 1.3;
    min-height: 0;
  }

  .sidebar p {
    margin: 0 0 4px;
  }

  .sidebar ol {
    margin: 0 0 6px;
    padding-left: 16px;
  }

  .sidebar-right {
    order: 3;
    border-top: 2px solid #001f4a;
  }

  /* Thumb-zone primary CTA — always reachable one-handed */
  .action-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: calc(64px + env(safe-area-inset-bottom, 0px));
    z-index: 50;
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 8px 10px;
    margin: 0;
    background: rgba(255, 255, 255, 0.97);
    border-top: 1px solid var(--border);
    box-shadow: 0 -4px 18px rgba(0, 26, 58, 0.12);
  }

  .action-bar-inline {
    position: static;
    left: auto;
    right: auto;
    bottom: auto;
    z-index: auto;
    flex-direction: column;
    margin: 8px 0 10px;
    padding: 0;
    background: transparent;
    border-top: none;
    box-shadow: none;
  }

  .action-bar .btn {
    width: 100%;
    min-height: 46px;
    padding: 12px 14px;
    font-size: 15px;
    border-radius: 8px;
    -webkit-tap-highlight-color: transparent;
  }

  .action-bar-renew {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }

  .action-bar-renew .btn {
    width: 100%;
  }

  .renew-fa-hint {
    font-size: 14px;
    text-align: center;
  }

  .btn {
    min-height: 40px;
    padding: 10px 14px;
    font-size: 14px;
    touch-action: manipulation;
  }

  .footer {
    padding: 10px 10px 8px;
    font-size: 11px;
  }

  .footer .btn {
    width: 100%;
    max-width: 280px;
  }
}

@media (max-width: 480px) {
  .stat-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .content {
    padding: 8px 8px 72px;
  }

  .content h1,
  .page-header h1 {
    font-size: 1.1rem;
  }

  .roster-table-pro td.player {
    max-width: 6.2em;
  }

  .action-bar {
    bottom: calc(58px + env(safe-area-inset-bottom, 0px));
    padding: 6px 8px;
  }

  .action-bar .btn {
    min-height: 48px;
    font-size: 15px;
  }

  .banner img {
    max-height: 40px;
  }
}

@media (hover: none) {
  .btn:hover {
    background: #fff;
    border-color: #c5ccd6;
  }

  .btn-primary:hover {
    background: var(--navy);
    border-color: var(--navy);
  }

  .btn-season:hover {
    background: var(--red);
    border-color: var(--red);
  }

  .renew-opt:hover {
    filter: none;
  }
}
