:root {
  --red: #c0152a;
  --red-dark: #ff4b5e;
  --gold: #e8a020;
  --charcoal: #1a1a1a;
  --ink: #f8f5f0;
  --ink-soft: #e8dfd2;
  --muted: #aaa095;
  --line: #38322d;
  --paper: #101010;
  --white: #f8f5f0;
  --surface: #1f1f1f;
  --surface-soft: #262323;
  --teal: #63d5c8;
  --blue: #8fb0ff;
  --amber: #f0bd55;
  --green: #66d596;
  --shadow: 0 18px 44px rgba(0, 0, 0, 0.35);
  --radius: 8px;
  --display: "Barlow Condensed", Inter, system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

h1,
h2,
h3,
.brand-copy strong,
.hero-stats strong {
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 112px;
  padding: 12px clamp(18px, 5vw, 72px);
  background: rgba(26, 26, 26, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

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

.brand-logo {
  display: block;
  width: 84px;
  height: 84px;
  flex: 0 0 84px;
  object-fit: cover;
  object-position: center;
  border: 2px solid var(--ink);
  border-radius: 50%;
  box-shadow: 8px 8px 0 var(--gold);
}

.brand-copy {
  display: grid;
  line-height: 1.15;
}

.brand-copy strong {
  font-size: 1.2rem;
  line-height: 0.9;
}

.brand-copy span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  padding: 10px 12px;
  color: var(--ink-soft);
  border-radius: var(--radius);
  font-size: 0.94rem;
  font-weight: 700;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--red-dark);
  background: rgba(192, 21, 42, 0.16);
  outline: none;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  padding: 10px;
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 3px 0;
  background: var(--ink);
}

.section {
  padding: 76px clamp(18px, 5vw, 72px);
}

.hero {
  position: relative;
  min-height: calc(100vh - 112px);
  overflow: hidden;
  color: var(--white);
  background: #151515;
  border-bottom: 1px solid var(--line);
}

.hero::before {
  position: absolute;
  top: 0;
  left: 0;
  width: clamp(8px, 1vw, 14px);
  height: 100%;
  content: "";
  background: var(--red);
}

.hero::after {
  position: absolute;
  top: clamp(34px, 6vw, 82px);
  right: clamp(-120px, -6vw, -54px);
  width: clamp(190px, 22vw, 350px);
  aspect-ratio: 1;
  content: "";
  border: 1px solid rgba(248, 245, 240, 0.12);
  transform: rotate(14deg);
}

.hero-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(360px, 0.72fr);
  gap: clamp(42px, 7vw, 112px);
  max-width: 1380px;
  min-height: calc(100vh - 264px);
  align-items: center;
  margin: 0 auto;
}

.hero-content {
  min-width: 0;
}

.hero-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: clamp(34px, 6vh, 68px);
  color: var(--red-dark);
  font-family: var(--display);
  font-size: clamp(1.65rem, 2.7vw, 2.4rem);
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.hero-kicker span:last-child {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-family: Inter, system-ui, sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
}

.hero-kicker span:last-child::before {
  width: 36px;
  height: 1px;
  content: "";
  background: var(--line);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  line-height: 0.8;
}

.hero-name,
.hero-title {
  display: block;
}

.hero-name {
  color: var(--white);
  font-size: clamp(7.2rem, 15vw, 13.5rem);
}

.hero-title {
  max-width: 760px;
  margin-top: 18px;
  color: var(--red-dark);
  font-size: clamp(2.4rem, 5.2vw, 5rem);
  line-height: 0.86;
}

.hero-copy {
  max-width: 690px;
  margin: 30px 0 0;
  color: #d8d1c8;
  font-size: clamp(1rem, 1.5vw, 1.14rem);
}

.hero-routes {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 34px;
}

.hero-routes a {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  padding: 8px 0;
  border-bottom: 1px solid #625a51;
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-routes a span {
  color: var(--gold);
  font-family: Inter, system-ui, sans-serif;
  font-size: 0.65rem;
}

.hero-routes a:hover,
.hero-routes a:focus-visible {
  color: var(--gold);
  border-color: var(--gold);
  outline: none;
}

.hero-desk {
  min-width: 0;
  padding: clamp(24px, 3vw, 38px);
  color: var(--charcoal);
  background: var(--white);
  border-top: 9px solid var(--red);
  box-shadow: 18px 18px 0 var(--red);
}

.hero-desk-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.desk-number {
  color: #746c64;
  font-size: 0.69rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-desk h2 {
  margin: 8px 0 0;
  font-size: clamp(2.25rem, 3.6vw, 3.4rem);
  line-height: 0.86;
}

.desk-status {
  flex: 0 0 auto;
  padding: 6px 8px;
  color: #12613d;
  background: #dceee2;
  border-radius: 4px;
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
}

.desk-status::before {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 6px;
  content: "";
  background: #188553;
  border-radius: 50%;
}

.hero-desk > p {
  margin: 22px 0 0;
  color: #615a53;
  font-size: 0.92rem;
}

.hero-search {
  display: grid;
  grid-template-columns: 1fr auto;
  margin-top: 18px;
  background: #151515;
  border: 2px solid #151515;
  border-radius: 4px;
}

.hero-search input {
  width: 100%;
  min-width: 0;
  padding: 16px 18px;
  color: var(--white);
  background: transparent;
  border: 0;
  outline: none;
}

.hero-search input::placeholder {
  color: #938a81;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 10px 18px;
  color: var(--white);
  background: var(--red);
  border: 2px solid var(--red);
  border-radius: var(--radius);
  font-weight: 800;
  text-transform: uppercase;
}

.hero-search .button {
  border-radius: 0;
}

.button:hover,
.button:focus-visible {
  background: #9f1022;
  border-color: #9f1022;
  outline: none;
}

.button-light {
  background: var(--red);
}

.button-secondary {
  color: var(--ink);
  background: var(--surface);
  border-color: var(--line);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  color: var(--gold);
  background: rgba(232, 160, 32, 0.11);
  border-color: rgba(232, 160, 32, 0.42);
}

.button[disabled],
.button[aria-disabled="true"] {
  color: #827a70;
  background: #2a2723;
  border-color: #2a2723;
  cursor: not-allowed;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 34px;
  border-top: 1px solid #cfc7bd;
  border-bottom: 1px solid #cfc7bd;
}

.hero-stats div {
  min-width: 0;
  padding: 18px 12px;
  border-right: 1px solid #cfc7bd;
}

.hero-stats div:first-child {
  padding-left: 0;
}

.hero-stats div:last-child {
  padding-right: 0;
  border-right: 0;
}

.hero-stats strong {
  display: block;
  color: var(--red);
  font-size: 2.5rem;
  line-height: 1;
}

.hero-stats span {
  display: block;
  margin-top: 6px;
  color: #615a53;
  font-size: 0.72rem;
  font-weight: 700;
}

.hero-desk-foot {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 20px;
  color: #746c64;
  font-size: 0.66rem;
  font-weight: 800;
  text-transform: uppercase;
}

.quick-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.feature-link {
  display: grid;
  gap: 12px;
  min-height: 176px;
  padding: 22px;
  background: var(--surface);
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.feature-link:hover,
.feature-link:focus-visible {
  color: var(--gold);
  background: #24201d;
  outline: none;
}

.feature-icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  color: var(--red-dark);
  background: rgba(192, 21, 42, 0.18);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.feature-papers .feature-icon {
  color: var(--charcoal);
  background: rgba(232, 160, 32, 0.18);
}

.feature-syllabus .feature-icon {
  color: var(--red-dark);
  background: rgba(255, 75, 94, 0.14);
}

.feature-scholarships .feature-icon {
  color: var(--charcoal);
  background: rgba(232, 160, 32, 0.22);
}

.feature-link strong {
  font-family: var(--display);
  font-size: 1.6rem;
  line-height: 0.95;
  text-transform: uppercase;
}

.feature-link span:last-child {
  color: var(--muted);
  font-size: 0.93rem;
}

.section-header {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-header h2,
.about-copy h2 {
  margin: 0;
  font-size: clamp(2.7rem, 7vw, 5.2rem);
  line-height: 0.86;
  letter-spacing: 0;
  text-wrap: balance;
}

.section-header p:not(.eyebrow),
.about-copy p:not(.eyebrow) {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.resource-section {
  background: var(--paper);
}

.filter-panel {
  padding: 18px;
  background: var(--surface);
  border: 2px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 8px 8px 0 rgba(192, 21, 42, 0.45);
}

.search-field {
  display: grid;
  gap: 8px;
}

.search-field label,
.filter-grid label {
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.search-field input,
.filter-grid select {
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  outline: none;
}

.search-field input:focus,
.filter-grid select:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(192, 21, 42, 0.13);
}

.category-tabs,
.scholarship-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0;
}

.tab-button,
.status-button {
  min-height: 40px;
  padding: 9px 13px;
  color: var(--ink-soft);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 800;
  text-transform: uppercase;
}

.tab-button[aria-pressed="true"],
.status-button[aria-pressed="true"] {
  color: var(--white);
  background: var(--charcoal);
  border-color: var(--charcoal);
}

.filter-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.filter-grid label {
  display: grid;
  gap: 8px;
}

.result-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 18px 0;
  color: var(--muted);
}

.result-meta p {
  margin: 0;
}

.text-button {
  min-height: 36px;
  padding: 6px 0;
  color: var(--red-dark);
  background: transparent;
  border: 0;
  font-weight: 800;
}

.text-button:hover,
.text-button:focus-visible {
  color: var(--ink);
  outline: none;
}

.resource-grid,
.scholarship-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.resource-card,
.scholarship-card,
.contact-card,
.about-grid article {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 20px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: none;
}

.resource-card {
  min-height: 328px;
}

.card-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 9px;
  border-radius: var(--radius);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.badge-notes {
  color: var(--red-dark);
  background: rgba(192, 21, 42, 0.18);
}

.badge-papers {
  color: var(--gold);
  background: rgba(232, 160, 32, 0.16);
}

.badge-syllabus {
  color: var(--red-dark);
  background: rgba(255, 75, 94, 0.14);
}

.badge-active {
  color: var(--green);
  background: rgba(102, 213, 150, 0.14);
}

.badge-watch {
  color: var(--amber);
  background: rgba(232, 160, 32, 0.14);
}

.updated {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.resource-card h3,
.scholarship-card h3,
.contact-card h3,
.about-grid h3 {
  margin: 0;
  font-size: 1.55rem;
  line-height: 0.98;
}

.resource-card p,
.scholarship-card p,
.contact-card p,
.about-grid p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.meta-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 16px 0;
}

.meta-list div {
  min-width: 0;
  padding: 10px;
  background: var(--paper);
  border-radius: var(--radius);
}

.meta-list dt {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.meta-list dd {
  margin: 3px 0 0;
  font-size: 0.9rem;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: auto;
}

.tag-row span {
  padding: 4px 8px;
  color: var(--muted);
  background: var(--paper);
  border-radius: var(--radius);
  font-size: 0.75rem;
  font-weight: 700;
}

.card-actions {
  display: flex;
  gap: 8px;
  margin-top: 18px;
}

.card-actions .button {
  flex: 1;
}

.icon-button {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--ink-soft);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.icon-button:hover,
.icon-button:focus-visible {
  color: var(--red-dark);
  border-color: rgba(255, 75, 94, 0.48);
  outline: none;
}

.empty-state {
  grid-column: 1 / -1;
  padding: 32px;
  color: var(--muted);
  background: var(--paper);
  border: 1px dashed #5b5148;
  border-radius: var(--radius);
  text-align: center;
}

.scholarship-section {
  background: var(--charcoal);
  color: var(--white);
}

.scholarship-section .section-header p:not(.eyebrow) {
  color: #ddd6cb;
}

.scholarship-card {
  color: var(--ink);
  border-color: transparent;
}

.scholarship-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.scholarship-meta span {
  padding: 7px 9px;
  color: var(--ink-soft);
  background: var(--paper);
  border-radius: var(--radius);
  font-size: 0.78rem;
  font-weight: 800;
}

.about-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 28px;
  background: var(--paper);
}

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

.about-grid article span {
  color: var(--red);
  font-family: var(--display);
  font-size: 1.45rem;
  line-height: 1;
  font-weight: 900;
}

.contact-section {
  background: var(--paper);
}

.contact-grid {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 18px;
}

.contact-card {
  position: relative;
  min-height: 184px;
  overflow: hidden;
  padding: 24px 24px 22px;
  background: #1b1a18;
  border-color: #403832;
  box-shadow: inset 0 1px 0 rgba(248, 245, 240, 0.05);
}

.contact-card::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  content: "";
  background: var(--red);
}

.contact-card::after {
  position: absolute;
  right: 18px;
  bottom: 76px;
  width: 42px;
  height: 3px;
  content: "";
  background: var(--gold);
}

.contact-card h3 {
  max-width: calc(100% - 44px);
  color: var(--white);
  font-size: clamp(1.85rem, 2.4vw, 2.35rem);
  line-height: 0.9;
}

.contact-card p {
  margin-top: 12px;
  color: #d7bc86;
  font-size: 1.02rem;
  font-weight: 600;
}

.contact-card .button {
  margin-top: auto;
  min-height: 48px;
  color: var(--white);
  background: transparent;
  border-color: #4b4038;
  border-radius: 6px;
}

.contact-card .button:hover,
.contact-card .button:focus-visible {
  color: var(--charcoal);
  background: var(--gold);
  border-color: var(--gold);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px clamp(18px, 5vw, 72px);
  color: #ddd6cb;
  background: var(--charcoal);
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--white);
  font-weight: 800;
}

.toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  max-width: min(360px, calc(100vw - 36px));
  padding: 12px 14px;
  color: var(--white);
  background: var(--charcoal);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1040px) {
  .hero-shell {
    grid-template-columns: minmax(0, 1fr) minmax(330px, 0.8fr);
    gap: 42px;
  }

  .hero-name {
    font-size: clamp(6.5rem, 14vw, 10rem);
  }

  .quick-links,
  .resource-grid,
  .scholarship-grid,
  .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: 86px;
  }

  .brand-logo {
    width: 60px;
    height: 60px;
    flex-basis: 60px;
    box-shadow: 5px 5px 0 var(--gold);
  }

  .menu-toggle {
    display: grid;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 18px;
    left: 18px;
    display: none;
    padding: 10px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a {
    padding: 12px;
  }

  .section {
    padding: 52px 18px;
  }

  .hero {
    padding-top: 58px;
    padding-bottom: 70px;
  }

  .hero-shell {
    grid-template-columns: 1fr;
    gap: 48px;
    min-height: auto;
  }

  .hero::after {
    top: 18px;
    right: -130px;
    width: 240px;
  }

  .hero-kicker {
    margin-bottom: 42px;
  }

  .hero-name {
    font-size: clamp(6rem, 24vw, 10rem);
  }

  .hero-title {
    font-size: clamp(2.5rem, 10vw, 4.5rem);
  }

  .hero-desk {
    width: min(100% - 12px, 620px);
  }

  .hero-search {
    grid-template-columns: 1fr auto;
  }

  .hero-search .button {
    border-radius: 0;
  }

  .quick-links,
  .filter-grid,
  .resource-grid,
  .scholarship-grid,
  .contact-grid,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .result-meta,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .card-actions {
    flex-wrap: wrap;
  }

  .card-actions .button {
    flex-basis: calc(100% - 52px);
  }
}

@media (max-width: 430px) {
  .brand-copy span {
    display: none;
  }

  .hero-kicker {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 34px;
  }

  .hero-kicker span:last-child::before {
    display: none;
  }

  .hero-name {
    font-size: clamp(5.2rem, 28vw, 7.1rem);
  }

  .hero-title {
    margin-top: 12px;
    font-size: 2.55rem;
  }

  .hero-copy {
    margin-top: 24px;
  }

  .hero-routes {
    gap: 16px;
    margin-top: 24px;
  }

  .hero-routes a {
    font-size: 1.05rem;
  }

  .hero-desk {
    padding: 22px 18px;
    box-shadow: 10px 10px 0 var(--red);
  }

  .hero-desk-head {
    align-items: flex-start;
    flex-direction: column-reverse;
    gap: 12px;
  }

  .hero-search {
    grid-template-columns: 1fr;
  }

  .hero-search .button {
    width: 100%;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .hero-stats div,
  .hero-stats div:first-child,
  .hero-stats div:last-child {
    display: grid;
    grid-template-columns: 58px 1fr;
    align-items: center;
    padding: 12px 0;
    border-right: 0;
    border-bottom: 1px solid #cfc7bd;
  }

  .hero-stats div:last-child {
    border-bottom: 0;
  }

  .hero-stats span {
    margin-top: 0;
  }

  .hero-desk-foot {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

  .meta-list {
    grid-template-columns: 1fr;
  }
}
