:root {
  --orange: #ff5f05;
  --orange-dark: #b83b00;
  --navy: #13294b;
  --ink: #101820;
  --green: #17452e;
  --fairway: #e7eee5;
  --paper: #fff8ef;
  --white: #ffffff;
  --muted: #65717d;
  --line: rgba(16, 24, 32, 0.14);
  --shadow: 0 18px 48px rgba(16, 24, 32, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-padding-top: 80px;
}

body {
  margin: 0;
  padding-top: 74px;
  color: var(--ink);
  background: var(--navy);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 74px;
  padding: 12px clamp(18px, 4vw, 56px);
  color: #fff;
  background: rgba(19, 41, 75, 0.96);
  border-bottom: 4px solid var(--orange);
  backdrop-filter: blur(14px);
}

main {
  background: linear-gradient(180deg, #fff 0, var(--fairway) 48%, #fff 100%);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 230px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: #fff;
  background: var(--orange);
  border: 2px solid rgba(255, 255, 255, 0.7);
  font-weight: 900;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.74rem;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  flex-wrap: wrap;
}

.nav-links a {
  padding: 10px 12px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.86rem;
  font-weight: 800;
  text-transform: uppercase;
}

.nav-links a:hover,
.nav-links a.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.hero {
  position: relative;
  min-height: min(76vh, 760px);
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(9, 17, 30, 0.86) 0%, rgba(9, 17, 30, 0.42) 48%, rgba(9, 17, 30, 0.12) 100%),
    linear-gradient(0deg, rgba(9, 17, 30, 0.72) 0%, rgba(9, 17, 30, 0) 56%);
}

.hero-content {
  position: relative;
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: 118px 0 52px;
}

.kicker {
  margin: 0 0 12px;
  color: #ffd6c0;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.kicker.dark {
  color: var(--orange-dark);
}

h1,
h2,
h3 {
  margin: 0;
}

h1 {
  max-width: 760px;
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(3.4rem, 8vw, 8.5rem);
  line-height: 0.9;
  text-shadow: 0 10px 34px rgba(0, 0, 0, 0.38);
}

h2 {
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
  color: var(--navy);
}

.hero-countdown {
  display: grid;
  gap: 10px;
  width: min(620px, 100%);
  margin-top: 28px;
}

.countdown-label,
.hero-countdown small {
  color: #ffd6c0;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.countdown-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid rgba(255, 255, 255, 0.26);
  background: rgba(19, 41, 75, 0.38);
}

.countdown-grid span {
  display: grid;
  gap: 3px;
  padding: 12px 14px;
  color: rgba(255, 255, 255, 0.82);
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.countdown-grid span:last-child {
  border-right: 0;
}

.countdown-grid strong {
  color: #fff;
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(1.75rem, 4vw, 3rem);
  line-height: 1;
}

.ticker {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  color: #fff;
  background: var(--green);
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 5px solid var(--orange);
}

.ticker-heading {
  display: grid;
  align-content: center;
  gap: 4px;
  padding: 16px clamp(18px, 3vw, 38px);
  background: var(--navy);
}

.ticker-heading span,
.label {
  color: var(--orange);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.ticker-heading strong {
  font-size: 0.86rem;
}

.leaderboard {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 224px;
  overflow-x: auto;
  scrollbar-width: none;
}

.leaderboard::-webkit-scrollbar {
  display: none;
}

.leaderboard button {
  min-height: 104px;
  padding: 12px 14px;
  color: #fff;
  background: transparent;
  border: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  cursor: pointer;
  text-align: left;
}

.leaderboard button:hover {
  background: rgba(255, 255, 255, 0.1);
}

.board-row {
  display: grid;
  grid-template-columns: 42px 18px minmax(0, 1fr) auto;
  gap: 8px;
  align-items: center;
  width: 100%;
}

.board-photo {
  width: 42px;
  height: 42px;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.64);
}

.board-rank {
  color: #ffd3ba;
  font-weight: 900;
}

.board-name {
  font-weight: 900;
  line-height: 1.1;
  white-space: normal;
  overflow-wrap: anywhere;
}

.board-score {
  color: #fff;
  font-family: "Libre Baskerville", Georgia, serif;
  font-weight: 700;
}

.section {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
  padding: 72px 0;
  content-visibility: auto;
  contain-intrinsic-size: 1px 860px;
}

.section-head {
  margin-bottom: 26px;
}

.about-classic {
  width: 100%;
  margin: 0;
  padding: 34px 0 36px;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(9, 17, 30, 0.96), rgba(15, 42, 74, 0.98)),
    var(--navy);
  border-top: 5px solid var(--orange);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  content-visibility: visible;
  contain-intrinsic-size: auto;
}

.about-panel {
  display: grid;
  grid-template-columns: minmax(260px, 0.58fr) minmax(0, 1fr);
  gap: 28px;
  width: min(1120px, calc(100% - 36px));
  max-width: none;
  margin: 0 auto;
  align-items: start;
}

.about-panel:has(h2[hidden]) {
  grid-template-columns: minmax(0, 920px);
  justify-content: center;
}

.about-panel h2 {
  max-width: 560px;
  color: #fff;
  font-size: clamp(1.85rem, 4vw, 3.3rem);
}

.about-panel > p,
.history-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.7;
}

.about-panel > p {
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 1.6vw, 1.24rem);
  line-height: 1.62;
}

.history-panel {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.05fr);
  gap: 28px;
  align-items: start;
}

.history-media {
  display: grid;
  gap: 16px;
}

.history-media figure {
  margin: 0;
}

.history-media img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.history-media figcaption {
  margin-top: 8px;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.35;
  text-transform: uppercase;
}

.history-copy {
  display: grid;
  gap: 18px;
  padding-top: 4px;
}

.section-head.split {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 22px;
}

.table-wrap {
  overflow-x: auto;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

th,
td {
  padding: 18px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

th {
  color: #fff;
  background: var(--navy);
  font-size: 0.76rem;
  text-transform: uppercase;
}

td {
  font-weight: 650;
  overflow-wrap: anywhere;
}

td small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-weight: 500;
}

.lodging-grid,
.attendee-grid,
.guest-grid,
.alumni-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.lodging-grid {
  grid-template-columns: 1fr;
}

.lodging-card,
.attendee-card,
.guest-card,
.alumni-card,
.event-item,
.course-panel {
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.lodging-card,
.attendee-card,
.guest-card {
  min-height: 260px;
  padding: 22px;
}

.alumni-card {
  display: flex;
  gap: 14px;
  min-height: 0;
  padding: 18px;
}

.lodging-card:has(.card-photo) {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1.08fr);
  align-items: stretch;
  padding: 0;
  overflow: hidden;
}

.lodging-card:has(.card-photo) > :not(.card-photo) {
  margin-left: 28px;
  margin-right: 28px;
}

.lodging-card:has(.card-photo) > .kicker {
  align-self: end;
  margin-top: 28px;
}

.lodging-card:has(.card-photo) .fact-list {
  margin-bottom: 28px;
}

.card-photo {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  border-right: 5px solid var(--orange);
  grid-row: 1 / span 5;
}

.lodging-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 14px;
}

.lodging-actions a {
  display: inline-flex;
  align-items: center;
  color: var(--orange-dark);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.lodging-actions a:hover {
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.lodging-card h3,
.attendee-card h3,
.guest-card h3,
.alumni-card h3,
.event-item h3 {
  color: var(--navy);
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 1.35rem;
}

.lodging-card p,
.attendee-card p,
.guest-card p,
.alumni-card p,
.event-item p,
.course-copy {
  color: var(--muted);
  line-height: 1.58;
}

.alumni-card p {
  margin: 6px 0 0;
  font-size: 0.9rem;
}

.alumni-card small {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.45;
}

.fact-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.fact {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
}

.fact span:first-child {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.fact span:last-child {
  color: var(--ink);
  font-weight: 800;
  text-align: right;
}

.course-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 14px;
  overflow-x: auto;
}

.tab {
  flex: 0 0 auto;
  min-width: 108px;
  padding: 12px 16px;
  color: var(--navy);
  background: #fff;
  border: 1px solid var(--line);
  cursor: pointer;
  font-weight: 900;
  text-transform: uppercase;
}

.tab.active,
.tab:hover {
  color: #fff;
  background: var(--orange);
  border-color: var(--orange);
}

.course-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 580px;
  overflow: hidden;
}

.course-visual {
  min-height: 0;
  position: relative;
  overflow: hidden;
  background: var(--green);
}

.course-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.course-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(19, 41, 75, 0) 38%, rgba(19, 41, 75, 0.34) 100%);
  border: 12px solid rgba(255, 255, 255, 0.16);
  pointer-events: none;
}

.course-details {
  display: flex;
  flex-direction: column;
  min-height: 0;
  padding: 28px;
  overflow-y: auto;
}

.course-details h3 {
  margin-bottom: 6px;
  color: var(--navy);
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
}

.course-status {
  width: fit-content;
  margin: 2px 0 10px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.course-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 12px 0 4px;
}

.course-links a {
  color: var(--orange-dark);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.course-links a:hover {
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.course-facts {
  display: grid;
  gap: 8px;
  margin-top: 8px;
}

.course-facts div {
  display: grid;
  gap: 4px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
}

.course-facts span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.course-facts strong {
  color: var(--ink);
  font-size: 0.98rem;
}

.copy-address {
  display: inline-flex;
  align-items: baseline;
  flex-wrap: wrap;
  cursor: pointer;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.copy-address:hover,
.copy-address:focus-visible,
.copy-address.copied {
  color: var(--orange-dark);
  outline: none;
}

.event-list {
  display: grid;
  gap: 18px;
}

.event-day {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 20px;
  align-items: stretch;
}

.event-day-items {
  display: grid;
  gap: 10px;
}

.event-item {
  display: grid;
  gap: 8px;
  padding: 20px;
}

.event-meta {
  margin: 0;
  color: var(--orange-dark);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.event-item p:not(.event-meta) {
  margin: 0;
}

.event-link {
  display: inline-flex;
  width: fit-content;
  margin-top: 10px;
  color: var(--orange-dark);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.event-link:hover {
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.date-chip {
  display: grid;
  place-items: center;
  min-height: 100%;
  padding: 18px;
  color: #fff;
  background: var(--navy);
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.attendee-card {
  display: grid;
  gap: 16px;
  overflow: hidden;
  cursor: pointer;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.attendee-card:hover,
.attendee-card:focus-visible {
  border-color: rgba(255, 95, 5, 0.58);
  box-shadow: 0 20px 54px rgba(16, 24, 32, 0.2);
  outline: none;
  transform: translateY(-2px);
}

.guest-card {
  min-height: 210px;
  overflow: hidden;
}

.guest-photo {
  display: block;
  width: calc(100% + 44px);
  max-width: none;
  aspect-ratio: 16 / 10;
  margin: -22px -22px 18px;
  object-fit: cover;
  border-bottom: 5px solid var(--orange);
}

.guest-photo.contain {
  object-fit: contain;
  background: var(--navy);
}

.subhead {
  margin-top: 46px;
}

.alumni-head {
  margin-top: 46px;
}

.attendee-top {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.attendee-top span {
  display: inline-block;
  margin-top: 8px;
  color: var(--orange-dark);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.avatar {
  display: grid;
  place-items: center;
  flex: 0 0 54px;
  width: 54px;
  height: 54px;
  object-fit: cover;
  background: var(--orange);
  border: 3px solid var(--navy);
}

.alumni-card .avatar {
  flex-basis: 44px;
  width: 44px;
  height: 44px;
}

.avatar-fallback {
  color: #fff;
  font-size: 0.78rem;
  font-weight: 900;
}

.player-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.player-meta span {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 5px 8px;
  color: var(--navy);
  background: var(--fairway);
  font-size: 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
}

.bio-dialog {
  width: min(860px, calc(100% - 30px));
  padding: 0;
  border: 0;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}

.bio-dialog::backdrop {
  background: rgba(9, 17, 30, 0.68);
}

.dialog-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 38px;
  height: 38px;
  color: #fff;
  background: rgba(19, 41, 75, 0.84);
  border: 0;
  cursor: pointer;
  font-size: 1.6rem;
}

.dialog-hero {
  display: grid;
  grid-template-columns: 128px 1fr;
  gap: 22px;
  align-items: end;
  padding: 36px;
  color: #fff;
  background: linear-gradient(135deg, var(--navy), var(--green));
  border-bottom: 5px solid var(--orange);
}

.dialog-action {
  display: block;
  width: 128px;
  height: 128px;
  object-fit: cover;
  object-position: center;
  border: 4px solid rgba(255, 255, 255, 0.82);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
  grid-row: span 2;
}

.dialog-hero h2 {
  color: #fff;
  align-self: start;
}

.dialog-subtitle {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.9rem;
  font-weight: 700;
}

.dialog-title {
  margin: 0 0 8px;
  color: #ffd6c0;
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.dialog-body {
  padding: 28px 36px 36px;
  background: #fff;
}

.dialog-body p {
  color: var(--muted);
  line-height: 1.6;
}

.dialog-body blockquote {
  margin: 0 0 18px;
  padding-left: 18px;
  color: var(--navy);
  border-left: 5px solid var(--orange);
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 1.28rem;
  line-height: 1.35;
}

.dialog-fallback {
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--orange);
  font-size: 1.4rem;
  font-weight: 900;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1px;
  margin-top: 22px;
  background: var(--line);
}

.stat-grid div {
  grid-column: span 2;
  padding: 16px;
  background: var(--paper);
  min-width: 0;
}

.stat-grid .stat-trait {
  grid-column: span 3;
}

.stat-grid span {
  display: block;
  color: var(--orange-dark);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.stat-grid strong {
  display: block;
  margin-top: 6px;
  color: var(--navy);
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.18;
  overflow-wrap: anywhere;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 30px clamp(18px, 4vw, 56px);
  color: #fff;
  background: var(--navy);
  border-top: 5px solid var(--orange);
}

.footer span {
  color: rgba(255, 255, 255, 0.72);
}

@media (max-width: 860px) {
  html {
    scroll-padding-top: 118px;
  }

  body {
    padding-top: 136px;
  }

  .topbar {
    align-items: flex-start;
    flex-direction: column;
    backdrop-filter: none;
  }

  .nav-links {
    justify-content: flex-start;
  }

  .ticker,
  .course-panel,
  .event-day {
    grid-template-columns: 1fr;
  }

  .date-chip {
    min-height: 56px;
  }

  .about-classic {
    padding: 28px 0 30px;
  }

  .about-panel {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .about-panel h2 {
    max-width: 720px;
  }

  .course-panel {
    height: auto;
    grid-template-rows: 260px auto;
  }

  .course-details {
    padding: 22px;
    overflow: visible;
  }

  .lodging-card:has(.card-photo) {
    grid-template-columns: 1fr;
  }

  .lodging-card:has(.card-photo) > :not(.card-photo) {
    margin-left: 22px;
    margin-right: 22px;
  }

  .lodging-card:has(.card-photo) > .kicker {
    margin-top: 22px;
  }

  .card-photo {
    width: 100%;
    height: auto;
    min-height: 280px;
    max-height: 340px;
    border-right: 0;
    border-bottom: 5px solid var(--orange);
    grid-row: auto;
  }

  .lodging-grid,
  .attendee-grid,
  .guest-grid,
  .alumni-grid {
    grid-template-columns: 1fr;
  }

  .history-panel {
    grid-template-columns: 1fr;
  }

  .section-head.split {
    align-items: stretch;
    flex-direction: column;
  }
}

@media (max-width: 540px) {
  .section {
    padding: 24px 0 42px;
  }

  th,
  td {
    padding: 12px 10px;
    font-size: 0.82rem;
    line-height: 1.25;
  }

  th {
    font-size: 0.64rem;
  }

  .brand {
    min-width: 0;
  }

  .brand small {
    display: none;
  }

  .nav-links a {
    padding: 6px 4px;
    font-size: 0.66rem;
    line-height: 1.2;
    white-space: nowrap;
  }

  .nav-links {
    width: 100%;
    flex-wrap: nowrap;
    gap: 4px;
    overflow-x: hidden;
  }

  .hero {
    min-height: 620px;
  }

  .hero-image {
    object-position: 82% center;
  }

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

  .countdown-grid span:nth-child(2) {
    border-right: 0;
  }

  .countdown-grid span:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .leaderboard {
    grid-auto-columns: minmax(210px, 76vw);
  }

  .stat-grid {
    grid-template-columns: 1fr;
  }

  .stat-grid div,
  .stat-grid .stat-trait {
    grid-column: auto;
  }

  .dialog-hero {
    grid-template-columns: 96px 1fr;
    gap: 16px;
    padding: 24px;
  }

  .dialog-action {
    width: 96px;
    height: 96px;
  }

  .footer {
    flex-direction: column;
  }
}
