:root {
  --bg: #05090d;
  --bg-raised: #0a1117;
  --panel: rgba(9, 17, 24, 0.92);
  --panel-soft: rgba(11, 22, 30, 0.76);
  --line: rgba(147, 188, 211, 0.32);
  --line-bright: rgba(64, 200, 255, 0.8);
  --cyan: #20bfff;
  --cyan-dark: #0878b7;
  --blue: #0a62e6;
  --orange: #dc762c;
  --green: #3ce5a0;
  --yellow: #ffad32;
  --red: #ff5d68;
  --text: #f3f7fa;
  --muted: #9aaab5;
  --shadow: 0 26px 70px rgba(0, 0, 0, 0.46);
  --cut: 14px;
  --max-width: 1530px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  color-scheme: dark;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at 20% 0%, rgba(0, 163, 255, 0.08), transparent 32rem),
    radial-gradient(circle at 82% 15%, rgba(221, 101, 29, 0.07), transparent 30rem),
    linear-gradient(180deg, #071018 0%, #04080b 42%, #030609 100%);
  font-family: "Arial Narrow", "Roboto Condensed", "Segoe UI", Arial, sans-serif;
  letter-spacing: 0.035em;
}

body.modal-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button,
input,
textarea,
select {
  font: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: -5rem;
  z-index: 1000;
  padding: 0.85rem 1rem;
  color: #00111b;
  background: var(--cyan);
  font-weight: 800;
  text-decoration: none;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  padding: 0.7rem clamp(1rem, 4vw, 4.5rem);
}

.nav-shell {
  width: min(100%, var(--max-width));
  min-height: 64px;
  margin: 0 auto;
  padding: 0 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(3, 9, 14, 0.72);
  border: 1px solid rgba(148, 185, 205, 0.28);
  box-shadow: 0 13px 35px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(16px);
  clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
}

.small-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.93rem;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.brand-mark {
  display: grid;
  width: 38px;
  aspect-ratio: 1;
  place-items: center;
  color: #fff;
  background: linear-gradient(145deg, rgba(18, 191, 255, 0.92), rgba(3, 68, 151, 0.95));
  border: 1px solid rgba(121, 225, 255, 0.8);
  clip-path: polygon(18% 0, 82% 0, 100% 18%, 100% 82%, 82% 100%, 18% 100%, 0 82%, 0 18%);
  box-shadow: 0 0 25px rgba(29, 181, 255, 0.35);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.4vw, 2.4rem);
}

.main-nav a {
  position: relative;
  padding: 1.35rem 0 1.2rem;
  color: #c8d2d8;
  font-size: 0.88rem;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  transition: color 180ms ease;
}

.main-nav a::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.74rem;
  height: 2px;
  content: "";
  background: var(--cyan);
  transform: scaleX(0);
  transform-origin: center;
  box-shadow: 0 0 15px rgba(32, 191, 255, 0.85);
  transition: transform 180ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible,
.main-nav a.active {
  color: var(--cyan);
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after,
.main-nav a.active::after {
  transform: scaleX(1);
}

.main-nav .nav-discord {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-left: 1rem;
  padding: 0.7rem 1rem;
  color: #edf7fd;
  border: 1px solid rgba(115, 197, 239, 0.52);
  background: rgba(11, 25, 34, 0.76);
  clip-path: polygon(9px 0, calc(100% - 9px) 0, 100% 9px, 100% calc(100% - 9px), calc(100% - 9px) 100%, 9px 100%, 0 calc(100% - 9px), 0 9px);
}

.nav-discord svg,
.button svg {
  width: 1.1rem;
  fill: #4fc4ff;
}

.main-nav .nav-discord::after {
  display: none;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 40px;
  border: 1px solid rgba(135, 195, 226, 0.38);
  background: rgba(4, 13, 19, 0.88);
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 22px;
  height: 2px;
  margin: 4px auto;
  background: #dcebf3;
}

.hero {
  position: relative;
  min-height: 720px;
  padding: 7.5rem 1.25rem 4.5rem;
  display: grid;
  place-items: center;
  isolation: isolate;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(2, 7, 11, 0.08), rgba(2, 7, 11, 0.2) 52%, #05090d 100%),
    url("assets/background.png") center / cover no-repeat;
  border-bottom: 1px solid rgba(63, 167, 220, 0.22);
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.24), transparent 23%, transparent 77%, rgba(0, 0, 0, 0.24)),
    radial-gradient(ellipse at center 38%, rgba(2, 12, 18, 0.22), rgba(2, 8, 12, 0.72) 68%);
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 190px;
  z-index: -1;
  content: "";
  background: linear-gradient(transparent, #05090d 75%);
}

.hero-glow {
  position: absolute;
  z-index: -1;
  width: 22rem;
  aspect-ratio: 1;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.18;
}

.hero-glow-blue {
  left: 8%;
  top: 28%;
  background: #00aeff;
}

.hero-glow-orange {
  right: 8%;
  top: 28%;
  background: #f27a21;
}

.hero-content {
  width: min(780px, 100%);
  margin-top: 1.5rem;
  text-align: center;
}

.hero-logo {
  width: min(530px, 84vw);
  max-height: 345px;
  object-fit: contain;
  margin: 0 auto -0.35rem;
  filter:
    drop-shadow(0 18px 34px rgba(0, 0, 0, 0.7))
    drop-shadow(0 0 22px rgba(0, 160, 255, 0.16));
}

.eyebrow,
.section-kicker {
  margin: 0;
  color: #cfd8dd;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.22em;
}

.eyebrow {
  font-size: clamp(1rem, 2vw, 1.5rem);
  text-shadow: 0 2px 18px #000;
}

.hero h1 {
  max-width: 720px;
  margin: 0.5rem auto 0;
  color: #aab7c0;
  font-size: clamp(0.95rem, 1.45vw, 1.15rem);
  font-weight: 600;
  line-height: 1.65;
  letter-spacing: 0.04em;
}

.hero-copy {
  max-width: 650px;
  margin: 0.7rem auto 0;
  color: #8e9da6;
  font-size: 0.96rem;
  line-height: 1.7;
}

.hero-actions {
  margin-top: 1.35rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.button {
  min-width: 220px;
  min-height: 46px;
  padding: 0.82rem 1.4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: #f5fbff;
  border: 1px solid rgba(154, 206, 232, 0.58);
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  clip-path: polygon(11px 0, calc(100% - 11px) 0, 100% 11px, 100% calc(100% - 11px), calc(100% - 11px) 100%, 11px 100%, 0 calc(100% - 11px), 0 11px);
  transition: transform 180ms ease, filter 180ms ease, border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  filter: brightness(1.15);
}

.button-primary {
  background:
    linear-gradient(180deg, rgba(21, 177, 239, 0.92), rgba(5, 82, 135, 0.94)),
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);
  border-color: rgba(96, 211, 255, 0.92);
  box-shadow: 0 0 30px rgba(0, 167, 255, 0.17), inset 0 1px rgba(255, 255, 255, 0.25);
}

.button-secondary {
  background: linear-gradient(180deg, rgba(22, 33, 41, 0.88), rgba(6, 12, 17, 0.94));
}

.servers-section,
.about-section {
  position: relative;
  width: min(100% - 2rem, var(--max-width));
  margin: 0 auto;
}

.servers-section {
  padding: 4.3rem 0 5.4rem;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 2.25rem;
  text-align: center;
}

.section-kicker {
  color: var(--cyan);
  font-size: 0.76rem;
}

.section-heading h2,
.about-panel h2 {
  margin: 0.4rem 0 0.65rem;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.section-heading > p:last-child,
.about-copy p {
  color: var(--muted);
  line-height: 1.75;
}

.server-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.server-card {
  position: relative;
  min-height: 220px;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(12, 23, 31, 0.98), rgba(5, 11, 16, 0.98));
  border: 1px solid rgba(175, 0, 0, 0.54);
  box-shadow: var(--shadow);
  clip-path: polygon(var(--cut) 0, calc(100% - var(--cut)) 0, 100% var(--cut), 100% calc(100% - var(--cut)), calc(100% - var(--cut)) 100%, var(--cut) 100%, 0 calc(100% - var(--cut)), 0 var(--cut));
  isolation: isolate;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, filter 180ms ease;
}

.server-card::before {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(90deg, rgba(32, 191, 255, 0.05), transparent 35%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 1px);
  border: 1px solid transparent;
}

.server-card:hover,
.server-card:focus-within {
  transform: translateY(-4px);
  border-color: rgba(66, 195, 255, 0.76);
  filter: brightness(1.08);
}

.server-card.is-online {
  border-color: rgba(46, 187, 255, 0.92);
  box-shadow:
    0 0 0 1px rgba(0, 120, 255, 0.34),
    0 0 32px rgba(0, 156, 255, 0.16),
    var(--shadow);
}

.server-card.is-online::after {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  content: "";
  box-shadow: inset 0 0 0 2px rgba(41, 178, 255, 0.2);
}

.card-art {
  position: absolute;
  inset: 0 auto 0 0;
  z-index: -1;
  width: 47%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.88) contrast(1.06);
}

.card-art-shade {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(4, 9, 13, 0.05) 0%, rgba(5, 11, 16, 0.22) 33%, rgba(5, 11, 16, 0.92) 48%, rgba(5, 11, 16, 0.98) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.3));
}

.card-content {
  position: relative;
  z-index: 2;
  min-height: 220px;
  margin-left: 43%;
  padding: 1.15rem 1.15rem 1rem 0.25rem;
  display: flex;
  flex-direction: column;
}

.card-title {
  margin: 0 0 0.65rem;
  color: var(--cyan);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.15rem, 1.6vw, 1.45rem);
  line-height: 1.15;
  letter-spacing: 0.01em;
  text-shadow: 0 2px 16px #000;
}

.card-meta {
  display: grid;
  gap: 0.52rem;
  color: #c9d3d9;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.meta-row {
  display: grid;
  grid-template-columns: 1.15rem minmax(0, 1fr);
  align-items: center;
  gap: 0.5rem;
}

.meta-icon {
  color: #b8c5cc;
  text-align: center;
  font-size: 0.95rem;
}

.status-dot {
  display: inline-block;
  width: 0.52rem;
  height: 0.52rem;
  margin-right: 0.45rem;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 10px currentColor;
}

.status-online .status-dot {
  color: var(--green);
  background: var(--green);
}

.status-coming-soon .status-dot,
.status-maintenance .status-dot {
  color: var(--yellow);
  background: var(--yellow);
}

.status-offline .status-dot {
  color: var(--red);
  background: var(--red);
}

.card-more {
  margin-top: auto;
  padding-top: 0.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  color: #dbe5ea;
  border: 0;
  background: transparent;
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  cursor: pointer;
}

.card-more span:last-child {
  color: var(--cyan);
  font-size: 1.25rem;
}

.about-section {
  padding-bottom: 5rem;
}

.about-panel {
  position: relative;
  padding: clamp(1.7rem, 4vw, 3.5rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(6, 22, 31, 0.98), rgba(8, 12, 17, 0.97)),
    radial-gradient(circle at 15% 30%, rgba(0, 174, 255, 0.2), transparent 20rem);
  border: 1px solid rgba(88, 182, 229, 0.34);
  clip-path: polygon(18px 0, calc(100% - 18px) 0, 100% 18px, 100% calc(100% - 18px), calc(100% - 18px) 100%, 18px 100%, 0 calc(100% - 18px), 0 18px);
  box-shadow: var(--shadow);
}

.about-panel::after {
  position: absolute;
  width: 260px;
  height: 260px;
  right: -100px;
  bottom: -140px;
  content: "";
  border: 1px solid rgba(32, 191, 255, 0.23);
  transform: rotate(45deg);
}

.text-link {
  display: inline-flex;
  gap: 0.65rem;
  color: var(--cyan);
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.site-footer {
  padding: 1.25rem clamp(1rem, 4vw, 4rem) 1.5rem;
  background: rgba(4, 12, 18, 0.92);
  border-top: 1px solid rgba(66, 165, 216, 0.25);
}

.footer-line {
  width: min(100%, 1120px);
  margin: 0 auto 1.2rem;
  display: grid;
  grid-template-columns: minmax(40px, 1fr) auto auto auto minmax(40px, 1fr);
  align-items: center;
  gap: 1rem;
  color: #91a1ab;
  font-size: 0.76rem;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.25em;
}

.footer-line > span {
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan));
}

.footer-line > span:last-child {
  background: linear-gradient(90deg, var(--cyan), transparent);
}

.footer-line i {
  color: var(--cyan);
  font-size: 1.15rem;
  font-style: normal;
}

.footer-bottom {
  width: min(100%, 1120px);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 2rem;
  color: #71828d;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
}

.footer-bottom a {
  color: #8ea2ad;
  text-decoration: none;
}

.footer-values {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.7rem 1.25rem;
  text-transform: uppercase;
}

.footer-values span:not(:last-child)::after {
  margin-left: 1.25rem;
  color: #41525c;
  content: "|";
}

.server-modal {
  width: min(920px, calc(100% - 1.5rem));
  max-height: calc(100vh - 1.5rem);
  padding: 0;
  color: var(--text);
  background: transparent;
  border: 0;
  overflow: visible;
}

.server-modal::backdrop {
  background: rgba(1, 5, 8, 0.86);
  backdrop-filter: blur(8px);
}

.modal-panel {
  position: relative;
  max-height: calc(100vh - 1.5rem);
  overflow: auto;
  background: #071017;
  border: 1px solid rgba(96, 193, 239, 0.5);
  clip-path: polygon(18px 0, calc(100% - 18px) 0, 100% 18px, 100% calc(100% - 18px), calc(100% - 18px) 100%, 18px 100%, 0 calc(100% - 18px), 0 18px);
  box-shadow: 0 36px 100px rgba(0, 0, 0, 0.75);
}

.modal-close {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  z-index: 10;
  width: 42px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  color: #fff;
  background: rgba(4, 10, 14, 0.78);
  border: 1px solid rgba(183, 220, 237, 0.4);
  font-size: 1.6rem;
  cursor: pointer;
}

.modal-hero {
  position: relative;
  min-height: 300px;
  overflow: hidden;
}

.modal-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 10, 15, 0.45), rgba(4, 10, 15, 0.85) 72%),
    linear-gradient(0deg, #071017, transparent 75%);
}

.modal-heading {
  position: relative;
  z-index: 2;
  max-width: 650px;
  padding: 7.5rem 3rem 2.3rem;
}

.modal-heading h2 {
  margin: 0.55rem 0;
  color: #f5fbff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1;
}

.modal-heading p {
  margin: 0;
  color: #b7c3ca;
  line-height: 1.7;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.75rem;
  color: #d9e5eb;
  background: rgba(6, 13, 18, 0.7);
  border: 1px solid rgba(168, 209, 228, 0.36);
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.status-pill::before {
  width: 0.55rem;
  height: 0.55rem;
  content: "";
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 12px currentColor;
}

.status-pill.status-online {
  color: var(--green);
}

.status-pill.status-coming-soon,
.status-pill.status-maintenance {
  color: var(--yellow);
}

.status-pill.status-offline {
  color: var(--red);
}

.modal-content {
  padding: 0 3rem 2.7rem;
}

.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.detail-grid article {
  padding: 1.35rem;
  background: rgba(12, 24, 32, 0.74);
  border: 1px solid rgba(118, 169, 194, 0.22);
}

.detail-grid h3 {
  margin: 0 0 1rem;
  color: var(--cyan);
  text-transform: uppercase;
  font-size: 0.83rem;
  letter-spacing: 0.15em;
}

.detail-grid dl {
  margin: 0;
}

.detail-grid dl > div {
  display: grid;
  grid-template-columns: minmax(90px, 0.45fr) 1fr;
  gap: 1rem;
  padding: 0.72rem 0;
  border-top: 1px solid rgba(123, 164, 184, 0.15);
}

.detail-grid dt {
  color: #758894;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.detail-grid dd {
  margin: 0;
  color: #d7e1e6;
  line-height: 1.5;
  overflow-wrap: anywhere;
}

.modal-actions {
  margin-top: 1.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

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

  .main-nav {
    gap: 1.2rem;
  }

  .main-nav .nav-discord {
    margin-left: 0;
  }
}

@media (max-width: 780px) {
  .site-header {
    position: fixed;
    padding: 0.5rem;
  }

  .nav-shell {
    position: relative;
    min-height: 58px;
  }

  .small-brand {
    font-size: 0.8rem;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 0.45rem);
    left: 0;
    right: 0;
    display: none;
    padding: 0.8rem 1rem 1rem;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(3, 9, 14, 0.97);
    border: 1px solid rgba(148, 185, 205, 0.28);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.5);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    padding: 0.9rem 0.25rem;
  }

  .main-nav a::after {
    bottom: 0.45rem;
  }

  .main-nav .nav-discord {
    margin-top: 0.5rem;
    justify-content: center;
  }

  .hero {
    min-height: 660px;
    padding-top: 7.2rem;
  }

  .hero-logo {
    width: min(500px, 96vw);
  }

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

  .about-panel,
  .detail-grid {
    grid-template-columns: 1fr;
  }

  .footer-line {
    grid-template-columns: 1fr auto 1fr;
  }

  .footer-line strong,
  .footer-line i:last-of-type {
    display: none;
  }

  .footer-bottom {
    justify-content: center;
    text-align: center;
  }

  .modal-heading {
    padding: 6.5rem 1.4rem 1.8rem;
  }

  .modal-content {
    padding: 0 1.4rem 1.8rem;
  }
}

@media (max-width: 520px) {
  .small-brand span:last-child {
    display: none;
  }

  .hero {
    min-height: 620px;
  }

  .hero-copy {
    display: none;
  }

  .button {
    width: 100%;
    min-width: 0;
  }

  .server-card {
    min-height: 410px;
  }

  .card-art {
    inset: 0 0 auto;
    width: 100%;
    height: 48%;
  }

  .card-art-shade {
    background: linear-gradient(180deg, rgba(4, 10, 14, 0.03), rgba(5, 11, 16, 0.96) 49%, rgba(5, 11, 16, 1) 100%);
  }

  .card-content {
    min-height: 410px;
    margin-left: 0;
    padding: 12.7rem 1.2rem 1.15rem;
  }

  .card-title {
    font-size: 1.5rem;
  }

  .footer-values {
    display: none;
  }

  .modal-hero {
    min-height: 330px;
  }

  .detail-grid dl > div {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
