@import url('https://fonts.googleapis.com/css2?family=Georgia:wght@400;500;600&family=Cormorant+Garamond:wght@400;600&display=swap');



:root {
  --width: clamp(48rem, 55vw, 72rem);
  --text-color: #f4c430;
  --bg-color: #7B1113;
  --hf-color: #7B1113;
  --font-family: 'Georgia', sans-serif;
  --heading-font: 'Cormorant Garamond', serif;
  --gutter-x: 2.5rem;     
  --gutter-x-mobile: 1rem;
  --section-gap: 4rem;    
  --stack-gap: 1.25rem;   
  --edge-gap: 1rem;
  color-scheme: light dark;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

main {
  position: relative;
  justify-self: center;
  justify-content: center;
  justify-items: center;
  align-items: center;
  align-self: center;
  align-content: center;
  margin-top: 6rem;
  width: 100%;   
  flex: 1 0 auto;
}

header .container,
footer .container {
  margin: 0 auto;
  padding: 0 1rem 2rem;
  max-width: none;
}


body {
  font-family: var(--font-family);
  font-weight: 400;
  font-style: normal;
  color: var(--text-color);
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  z-index: 1;
    --overlay-offset: 0px;
  background-color: #7B1113;
  background-image:
    linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.35) 0%,
      rgba(0, 0, 0, 0.10) 20%,
      rgba(0, 0, 0, 0.00) 50%,
      rgba(0, 0, 0, 0.10) 80%,
      rgba(0, 0, 0, 0.35) 100%
    ),

    radial-gradient(
      ellipse at center,
      rgba(244, 196, 48, 0.06) 0%,
      rgba(244, 196, 48, 0.03) 25%,
      rgba(0, 0, 0, 0.00) 60%
    );
  background-repeat: no-repeat, no-repeat;
  background-size: 100% 200%, 150% 150%;
  background-position:
    center calc(50% + var(--overlay-offset)),
    center calc(50% + var(--overlay-offset));

  background-attachment: scroll;

}

header {
  position: fixed;
  top: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1.5rem;
  background-color: var(--hf-color);
  width: 100%;
  flex-wrap: wrap;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 5;
  padding-block: .75rem;
  padding-inline: var(--gutter-x);
}

footer {
  margin-top: 2rem;
  position: relative;
  min-height: 200px;
  padding: 2rem 1rem;
  background-color: var(--hf-color);
  color: var(--text-color);
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 5;
}

nav ul {
  list-style: none;
  display: flex;
}

nav ul li + li {
  margin-left: 1rem;
}

nav ul li a {
  color: var(--text-color);
  text-decoration: none;
  font-weight: 500;
}

footer .logo-center {
  position: absolute;
  left: 50%;
  top: 40%;
  transform: translate(-50%, -50%) scale(180%);
  width: 200px;
  z-index: 6;
}

h1{
  font-weight: normal;
  margin-bottom: .75rem;
  font-family: var(--heading-font);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  letter-spacing: .5ch;
  font-kerning: normal;
  font-feature-settings: "kern";
}

h2{
  font-weight: normal;
  margin-bottom: .75rem;
  font-family: var(--heading-font);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  letter-spacing: .5ch;
  font-kerning: normal;
  font-feature-settings: "kern";
}

h1::after,
h2::after{
  content: "";
  display: block;
  width: 10rem;
  height: 2px;
  background: linear-gradient(
    to right,
    transparent,
    var(--text-color) 20%,
    var(--text-color) 80%,
    transparent
  );
  margin: 0.5rem auto 0;
}

.box{
  max-width: var(--width);
  width: var(--width);
  align-items: center;
  justify-content: center;
  text-align:center; 
  margin-inline: auto;
  background-color: rgb(0,0,0,0.5); 
  padding:2rem; 
  width: var(--width);
}

.box + .box{
  margin-top: var(--section-gap);
}

.box + .doc-iframe{
  margin-top: 0;
}

.doc-frame + .box{
  margin-top: var(--section-gap);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.5rem;
  margin-bottom: 1rem;
  border: 1px solid var(--text-color);
  background-color: var(--bg-color);
  color: var(--text-color);
}


html {
  font-size: 100%;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  height: 100%;
  background: #7B1113;
}

img, embed {
  max-width: 100%;
}

footer .logo-center {
  width: clamp(100px, 20vw, 200px);
  top: 45%;
}

#bulletin-text {
  white-space: pre-wrap;
}
#terms-text {
  white-space: pre-wrap;
}
#privacy-text {
  white-space: pre-wrap;
}

.nav-toggle {
  display: none;
  font-size: 1.5rem;
  line-height: 1;
  background: transparent;
  border: 0;
  padding: .5rem .75rem;
  color: var(--text-color);
  cursor: pointer;
}

nav a {
  position: relative;
  color: inherit;
  text-decoration: none;
}

nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -0.25em;
  width: 0;       
  height: 2px;    
  background-color: currentColor; 
  transform: translateX(-50%);    
  transition: width 0.25s ease-out;
}

nav a:hover::after,
nav a:focus-visible::after {
  width: 100%;
}

nav a.active::after {
  width: 100%;
}

.doc-frame {
  margin-inline: auto;
  width: var(--width);
  background: rgba(0,0,0,0.5);
  border-top: 2px solid var(--text-color);
  border-bottom: 2px solid var(--text-color);
  overflow: hidden;
}

.doc-frame iframe {
  height: 100%;
  width: var(--width);
  border: 0;
  display: block;
}

.ratio-letter { aspect-ratio: 8.5 / 11; }

footer .links {
  display: flex;
  gap: 1rem;
  position: absolute;
  bottom: var(--edge-gap);
  left: var(--gutter-x);
  margin-left: 0;
}

footer .links a {
  position: relative;
  color: var(--text-color);
  text-decoration: none;
  font-weight: 500;
  padding: 0.25rem 0;
}

footer .links a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -0.2em;
  width: 0;
  height: 2px;
  background-color: currentColor;
  transform: translateX(-50%);
  transition: width 0.25s ease-out;
}

footer .links a:hover::after,
footer .links a:focus-visible::after {
  width: 100%;
}

footer .links a.active::after {
  width: 100%;
}

footer .copyright{
  position: absolute;
  bottom: var(--edge-gap);
  right: var(--gutter-x);
  text-align: right
}

header .logo{
  height: 50px;
  display: block;      
  height: 50px;        
  margin-block: .25rem;
}


.box,
.doc-frame {
  position: relative;
  background-color: rgba(0,0,0,0.5);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.06),
    inset 0 -2px 0 rgba(0,0,0,0.45);
  
  border: 1px solid rgba(244,196,48,0.35);
}

header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;

  background:
    linear-gradient(
      to right,
      transparent -10%,
      rgba(244,196,48,0.5) 1%,
      rgba(244,196,48,0.85) 50%,
      rgba(244,196,48,0.5) 99%,
      transparent 110%
    );

  pointer-events: none;
}

footer::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 4px;

  background:
    linear-gradient(
      to right,
      transparent -10%,
      rgba(244,196,48,0.5) 1%,
      rgba(244,196,48,0.85) 50%,
      rgba(244,196,48,0.5) 99%,
      transparent 110%
    );

  pointer-events: none;
}

ul {
  list-style: none;
  padding-left: 0;
  margin-left: 0;
}

main a:not(nav a):not(footer a) {
  position: relative;
  color: var(--text-color);
  text-decoration: none; 
}

main a:not(nav a):not(footer a)::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.2em;
  height: 2px;
  background-color: currentColor;
  opacity: 0.6;
}

main a:not(nav a):not(footer a)::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -0.2em;
  width: 0;
  height: 2px;
  background-color: currentColor;
  transform: translateX(-50%);
  transition: width 0.25s ease-out;
}

main a:not(nav a):not(footer a):hover::after,
main a:not(nav a):not(footer a):focus-visible::after {
  width: 100%;
}

.login-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-width: 100%;
}

.login-form h2 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.login-form input[type="text"],
.login-form input[type="email"],
.login-form input[type="tel"],
.login-form input[type="password"],
.login-form textarea,
.login-form input[type="file"] {
  font-family: var(--font-family);
  border: 1px solid rgba(244,196,48,0.55);
  color: var(--text-color);
  padding: 0.75rem 0.85rem;
  font-size: 1rem;
  background-color: rgba(0, 0, 0, 0.55);
  border-color: rgba(244,196,48,0.6);
}

.login-form textarea {
  resize: vertical;
  min-height: 8rem;
  line-height: 1.55;
}

.login-form input[type="file"] {
  padding: 0.6rem;
  cursor: pointer;
}

.login-form ::placeholder {
  color: rgba(244,196,48,0.75);
  font-family: var(--font-family);
  font-weight: 400;
  font-style: normal;
}

.login-form label {
  font-size: 0.95rem;
  line-height: 1.4;
  cursor: pointer;
}

.login-form button {
  margin-top: 1.75rem;
  align-self: center;
  align-content: center;
  padding: 0.75rem 2.5rem;
  font-family: var(--heading-font);
  font-size: 1.1rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 1px solid rgba(244,196,48,0.85);
  color: var(--text-color);
  background-color: #5e0d0f;
  cursor: pointer;
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease,
    background-color 0.15s ease;
}

.login-form button:hover {
  box-shadow:
    0 0 18px rgba(244,196,48,0.35),
    inset 0 1px 0 rgba(255,255,255,0.15);
  transform: translateY(-1px);
}

.login-form button:active {
  transform: translateY(0);
  box-shadow:
    0 0 8px rgba(244,196,48,0.25),
    inset 0 2px 4px rgba(0,0,0,0.4);
}

.login-form input[type="file"]::-webkit-file-upload-button {
  background: rgba(123,17,19,0.9);
  color: var(--text-color);
  border: 1px solid rgba(244,196,48,0.7);
  padding: 0.4rem 0.75rem;
  cursor: pointer;
}

.login-form label input[type="checkbox"] {
  margin-right: 0.5rem;
}

#submissionConfirmation pre {
  background: rgba(0, 0, 0, 0.05);
  padding: 0.75rem 1rem;
  border-radius: 6px;
  font-size: 0.95rem;
  line-height: 1.4;
  white-space: pre-wrap;
  word-break: break-all;
  overflow-wrap: anywhere;
}

.checkbox-field {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  cursor: pointer;
  font-size: 0.95rem;
  line-height: 1.4;
}

.checkbox-field input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.checkbox-custom {
  flex-shrink: 0;
  width: 1.05rem;
  height: 1.05rem;
  margin-top: 0.15rem;
  border: 1px solid rgba(244,196,48,0.85);
  background: rgba(0,0,0,0.45);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.08),
    inset 0 -1px 2px rgba(0,0,0,0.5);
  position: relative;
  transition:
    background-color 0.15s ease,
    box-shadow 0.15s ease,
    border-color 0.15s ease;
}

.checkbox-custom::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 48%;
  width: 0.35rem;
  height: 0.6rem;
  border-right: 2px solid var(--text-color);
  border-bottom: 2px solid var(--text-color);
  transform: translate(-50%, -50%) rotate(45deg);
  opacity: 0;
}

.checkbox-field input[type="checkbox"]:checked + .checkbox-custom {
  background: rgba(244,196,48,0.15);
  box-shadow:
    0 0 8px rgba(244,196,48,0.35),
    inset 0 1px 0 rgba(255,255,255,0.15);
}

.checkbox-field input[type="checkbox"]:checked + .checkbox-custom::after {
  opacity: 1;
}

.checkbox-field input[type="checkbox"]:focus-visible + .checkbox-custom {
  outline: 2px solid rgba(244,196,48,0.8);
  outline-offset: 2px;
}

.doc-content {
  all: revert;
  background: #ffffff !important;
  color: #000000 !important;

  font-family: var(--font-family);
  font-size: 12pt;
  line-height: 1.6;

  max-width: 800px;
  margin: 0 auto;
  padding: clamp(1.5rem, 4vw, 3rem) clamp(1.25rem, 5vw, 3.5rem);

  border-radius: 2px;

  box-shadow:
    0 0 0 1px rgba(0,0,0,0.08),
    0 8px 22px rgba(0,0,0,0.12);
}

.doc-content p.title {
  text-align: center !important;

  font-family: var(--heading-font);
  font-weight: 700;
  letter-spacing: 0.35ch;
  text-transform: uppercase;

  font-size: clamp(1.75rem, 5vw, 2.75rem);
  line-height: 1.15;

  margin: 0 auto 2.5rem;
  padding-inline: 1rem;

  max-width: 100%;
  white-space: normal;
  overflow-wrap: break-word;
  word-break: break-word;
  hyphens: auto;
}

.doc-content h1 {
  font-size: 20pt;
  font-weight: 700;
  margin: 3rem 0 1.25rem 0;
}

.doc-content h2 {
  font-size: 15pt;
  font-weight: 600;
  margin: 2.5rem 0 1rem 0;
}

.doc-content p + h1,
.doc-content p + h2 {
  margin-top: 3.5rem;
}

.doc-content h1::after,
.doc-content h2::after {
  content: none !important;
}

.doc-content ul,
.doc-content ol {
  list-style-type: decimal !important;
  margin: 1rem 0 1.5rem 2rem;
  padding: 0;
}

.doc-content li {
  list-style-position: outside;
  margin-bottom: 0.5rem;
}

.doc-content ul ul,
.doc-content ol ol {
  margin-top: 0.5rem;
  margin-bottom: 0.75rem;
  margin-left: 2.25rem;
}

.doc-content ul + ul,
.doc-content ol + ol {
  margin-left: 3rem;
  margin-top: 0.5rem;
}


.doc-footer {
  position: static;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.25rem;
  margin: 0 auto 1rem;
  margin-top: 4rem;
  padding-top: 2rem;
  text-align: center;
}

.doc-footer img {
  max-width: 180px;
  height: auto;
}

.doc-content::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.04);
}

.doc-content h1,
.doc-content h2 {
  cursor: pointer;
  position: relative;
  padding-right: 1.75rem;
}

.doc-content h1::before,
.doc-content h2::before {
  content: "▾";
  position: absolute;
  right: 0;
  top: 0.15em;
  font-size: 0.85em;
  transition: transform 0.2s ease;
}

.doc-content h1[aria-expanded="false"]::before,
.doc-content h2[aria-expanded="false"]::before {
  transform: rotate(-90deg);
}

.doc-content div:nth-last-child(2) {
  display: none;
}

.hero-panel {
  grid-area: 1 / 1;
  opacity: 0;
  transform: translateX(20px);
  transition:
    opacity 750ms cubic-bezier(.4,0,.2,1),
    transform 750ms cubic-bezier(.4,0,.2,1);
  pointer-events: none;
}

.hero-panel.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}


.hero-panel.animating-out {
  opacity: 0;
  transform: translateX(-24px);
  transition: opacity 700ms cubic-bezier(.4,0,.2,1),
              transform 700ms cubic-bezier(.4,0,.2,1);
}

.hero-panel.animating-in {
  opacity: 1;
  transform: translateX(0);
  transition: opacity 700ms cubic-bezier(.4,0,.2,1),
              transform 700ms cubic-bezier(.4,0,.2,1);
}
.hero-panel.pre-enter {
  opacity: 0;
  transform: translateX(24px);
}


.hero-next {
  background: none;
  border: none;
  color: var(--text-color);
  font-size: 3rem;
  cursor: pointer;
  opacity: 0.6;
  position: static;
  display: block;
  margin: 0.25rem auto 0;
  font-size: 2.25rem;
  transition: opacity 200ms ease;
  text-shadow: -1px 2px 0 rgba(0,0,0,0.8);
}

.hero-next:hover {
  opacity: 1;
}

.hero {
  position: relative;
  height: 100vh;
  max-width: 100vw;
  width: 100%;
  background-image: url('/assets/images/render.jpg');
  background-size: cover;
  background-position: left center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  opacity: 1;
  transition: opacity 0.1s linear;
  margin-top: -6rem;
  padding-top: 6rem;
}


.hero-content {
  position: relative;
  width: 28rem;
  margin-left: 60%;
  display: grid; 
  text-align: center;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;

  background:
    linear-gradient(
      to right,
      transparent -10%,
      rgba(244,196,48,0.5) 1%,
      rgba(244,196,48,0.85) 50%,
      rgba(244,196,48,0.5) 99%,
      transparent 110%
    );

  pointer-events: none;
}
.card {
  position: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 0;
  margin-top: 6rem;
}
.card h1 {
  margin-bottom: -0.5rem;
}
.card h1::after {
  height: 0px;
}

.motto {
  max-width: 65ch;
  margin: 5rem auto 3rem;
  padding: 0 1.5rem;

  font-family: var(--heading-font);
  font-style: italic;
  font-size: clamp(1.25rem, 2.5vw, 1.6rem);
  line-height: 1.6;

  text-align: center;
  color: rgba(244,196,48,0.9);

  position: relative;
}
.role {
  font-style: italic;
}
.boxes {
  padding-top: 2rem;
}
.board {
  column-count: 3;
  column-gap: 3rem;
}
.board li {
  break-inside: avoid;
  margin-bottom: 0.5rem;
}
.profile-pfp {
  position: static; 
  display: block;
  left: unset;
  top: unset;
  width: clamp(2rem, 33vh, 32rem);
  height: auto;
  transform: translateY(-50%);
  margin: 0 auto;
  margin-bottom: calc(-1 * clamp(2rem, 33vh, 32rem) * 0.5);
}

.card.box {
  padding-top: 0;
  overflow: visible;
  position: relative;
}
main > .doc-content {
  margin-top: 0;
}

@media (prefers-color-scheme: dark) {
  .doc-content {
    background: #121212 !important;
    color: #ffffff !important;

    box-shadow:
      0 0 0 1px rgba(255,255,255,0.08),
      0 12px 30px rgba(0,0,0,0.6);
  }

  .doc-content h1,
  .doc-content h2,
  .doc-content p.title {
    color: #ffffff !important;
  }

  .doc-content p,
  .doc-content li {
    color: #ffffff !important;
  }

  .doc-content ul,
  .doc-content ol {
    color: #ffffff !important;
  }

  .doc-content h1::before,
  .doc-content h2::before {
    color: #ffffff;
  }
}

@media (max-width: 768px) {
  :root {
    --width: 90vw;
    --gutter-x: var(--gutter-x-mobile); 
  }
  .profile-pfp {
    height: clamp(5rem, 40dvh, 18rem);
  }
  .board {
    column-count: 1;
  }
  .hero {
    align-items: flex-start;
    padding-top: 18dvh;
    position: fixed;
    top: -64px;
    min-height: calc(100dvh + 64px);
    background-image: none;
    z-index: 0;
    margin-top: 0;
  }
  .hero::before {
    content: "";
    position: fixed;
    inset: 0;
    background-image: url('/assets/images/sm-render.jpg');
    background-size: cover;
    background-position: center top;
    z-index: -1;
  }
  .hero::after {
    height: 0px;
  }
  .hero-content { 
    width: 90%;
    margin: 0 auto;
    margin-top: 4rem;
    text-shadow:
      0 2px 12px rgba(0,0,0,0.8),
      0 -1px 8px rgba(0,0,0,0.9);
  }
  .hero-panel h1 {
    font-size: clamp(1.75rem, 6vw, 2.25rem);
    letter-spacing: 0.35ch;
  }

  .hero-panel p {
    font-size: 1rem;
    line-height: 1.7;
    max-width: 28rem;
    margin: 0 auto;
  }
  .hero + * {
    margin-top: 100svh;
  }
  .nav-toggle {
    --size: 24px;
    --thickness: 2px;
    --gap: 6px;

    width: var(--size);
    height: var(--size);
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: var(--gap);

    background: none;
    border: 0;
    padding: 0;
    cursor: pointer;
  }

  .nav-toggle .bar {
    width: 100%;
    height: var(--thickness);
    background: currentColor;
    border-radius: 0;

    transition:
      transform 200ms ease,
      opacity 200ms ease;
  }

  .doc-frame {
    width: 100vw;
    margin-inline: calc(50% - 50vw);
    border-left: 0;
    border-right: 0;
  }

  .doc-frame iframe {
    width: 100%;
    border: 0;
    display: block;
  }
  html.nav-open .nav-toggle .bar:nth-child(1) {
    transform: translateY(calc(var(--gap) + var(--thickness))) rotate(45deg);
  }

  html.nav-open .nav-toggle .bar:nth-child(2) {
    opacity: 0;
  }

  html.nav-open .nav-toggle .bar:nth-child(3) {
    transform: translateY(calc(-1 * (var(--gap) + var(--thickness)))) rotate(-45deg);
  }
  
  header nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    max-height: 0;
    overflow: hidden;
    z-index: 4;
    opacity: 0;
    background: rgba(0,0,0,.85);
    backdrop-filter: blur(6px);
    transition:
      max-height 220ms ease,
      opacity 180ms ease;
  }

  header nav.open {
    max-height: 60vh; 
    opacity: 1;
  }

  header nav ul {
    display: flex;
    flex-direction: column;
    align-items: center;     
    justify-content: center; 
    gap: 0.5rem;
    padding: 1rem 0;
    margin: 0;
    list-style: none;
    text-align: center;
    width: 100%;
  }

  header nav a {
    display: block;
    padding: .75rem;
  }

  header nav ul li {
    text-align: center;
  }

  header nav ul li a {
    width: 100%;
    text-align: center;
  }
  
  header nav ul li + li {
    margin-left: 0;
  }

  .doc-frame.ratio-letter {
    max-height: 90vh;
  }

  #terms, #privacy,
  #terms-text, #privacy-text {
    position: static !important;
    float: none !important;
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    flex: 1 1 100% !important;
    margin: 0 0 1.5rem 0 !important;
    overflow-wrap: anywhere;
    word-break: break-word;
    white-space: normal;
  }
  h1,
  h2 {
    letter-spacing: 0.25ch;
  }
  footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem 1rem 3rem;
  }

  footer .logo-center {
    position: static;
    transform: none;
    width: clamp(240px, 60vw, 360px);
    margin-bottom: 1.5rem; 
  }

  footer .links {
    position: static;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.25rem;
    margin: 0 auto 1rem;
  }

  footer .copyright {
    position: static;
    margin: 0 auto;
    padding-top: 0.5rem;
    text-align: center;
  }
}
