.hero-section {
  /* min-height: 579px; — disabled while the intro section is commented out (see index.html) */
  padding: 35px 0 0;
  background: var(--off-white);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 91px;
  text-align: center;
}

.eyebrow {
  margin: 0 0 24px;
  color: var(--rose);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.27;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow span {
  color: var(--gold);
}

.hero-copy h1 {
  width: 1055px;
  margin: 0;
  color: var(--navy);
  font-family: "Faculty Glyphic", Georgia, serif;
  font-size: 47px;
  font-weight: 400;
  line-height: 60px;
}

.hero-lede {
  width: 824px;
  margin: 28px 0 0;
  color: var(--black);
  font-size: 20px;
  line-height: 34px;
}

.notices-section {
  padding: 68px 0 63px;
  background: var(--light-blue);
}

.notices-section h2 {
  margin: 0;
  color: var(--navy);
  font-size: 34px;
  font-weight: 700;
  line-height: 1.27;
  text-align: center;
}

.notice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 62px;
}

.notice-panel {
  display: contents;
}

.notice-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 34px 38px;
  border-radius: 32px;
  background: var(--navy);
  color: var(--white);
}

.notice-icon {
  width: 47px;
  height: 47px;
  margin-bottom: 25px;
  background: url("assets/important-yellow-icon.png") center / contain no-repeat;
  filter: drop-shadow(0.25px 0 0 var(--gold)) drop-shadow(-0.25px 0 0 var(--gold)) drop-shadow(0 0.25px 0 var(--gold)) drop-shadow(0 -0.25px 0 var(--gold));
}

.question-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 47px;
  height: 47px;
  margin-bottom: 0;
  border: 4px solid var(--rose);
  border-radius: 50%;
  color: var(--rose);
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
}

.notice-card h3 {
  margin: 0;
  color: inherit;
  font-size: 18px;
  font-weight: 900;
  line-height: 30px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.question-card h3 {
  margin: 0;
  color: var(--rose);
  font-size: 34px;
  font-weight: 700;
  line-height: 1.27;
  letter-spacing: 0;
  text-transform: none;
}

.notice-card p,
.notice-card li {
  margin: 0;
  color: inherit;
  font-size: 18px;
  line-height: 30px;
}

.notice-card p + p {
  margin-top: 0;
}

.notice-card ul {
  margin: 0;
  padding-left: 27px;
}

.notice-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  margin-top: 25px;
}

.question-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 34px 38px;
  border: 1.5px solid var(--navy);
  border-radius: 32px;
  background: transparent;
  color: var(--navy);
}

.question-card p {
  margin: 0;
  color: inherit;
  font-size: 18px;
  line-height: 30px;
}

.site-footer {
  padding: 45px 0 36px;
  background: var(--white);
}

.footer-top {
  display: grid;
  grid-template-columns: 177px 380px 1fr;
  gap: 112px;
  align-items: center;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--navy);
}

.footer-logo {
  width: 177px;
}

.watermark {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 12px;
  align-items: start;
  margin: 0;
  color: var(--navy);
  font-size: 14px;
  font-weight: 600;
  line-height: 24px;
}

.lock-icon {
  display: inline-flex;
  width: 26px;
  height: 37px;
  transform: translateY(1px);
}

.lock-icon svg {
  width: 26px;
  height: 37px;
}

.mobile-line-break {
  display: none;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, max-content);
  gap: 25px 72px;
  justify-content: end;
  color: var(--navy);
  font-size: 14px;
  font-weight: 600;
}

.footer-nav a:hover {
  color: var(--rose);
}

.footer-bottom {
  display: grid;
  grid-template-columns: 452px 1fr;
  gap: 11px;
  padding-top: 27px;
  color: var(--navy);
  font-size: 12px;
  font-weight: 600;
}

.footer-bottom p {
  margin: 0;
  line-height: 14px;
}

.footer-bottom p:last-child {
  text-align: right;
}

@media (max-width: 1400px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 24px;
  }

  .main-nav {
    flex-wrap: wrap;
    gap: 18px 28px;
  }

  .hero-copy h1,
  .hero-lede {
    width: 100%;
  }

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

  .notice-card,
  .notice-card.tall,
  .notice-card.wide {
    width: auto;
    height: auto;
    min-height: 360px;
  }

  .notice-bottom {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .footer-top,
  .footer-bottom {
    grid-template-columns: 1fr;
  }

  .footer-top {
    gap: 28px;
  }

  .footer-nav {
    justify-content: start;
  }

  .footer-bottom p:last-child {
    text-align: left;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 32px, var(--container));
  }

  .hero-section {
    padding-top: 24px;
  }

  .brand img {
    width: 184px;
  }

  .hero-copy {
    padding-top: 72px;
  }

  .hero-copy h1 {
    font-size: 38px;
    line-height: 48px;
  }

  .hero-lede {
    margin-top: 40px;
  }

  .notice-grid,
  .notice-bottom {
    grid-template-columns: 1fr;
  }

  .notice-card,
  .notice-card.tall,
  .notice-card.wide {
    min-height: 0;
    padding: 30px;
  }

  .notice-card p,
  .notice-card li {
    font-size: 16px;
    line-height: 26px;
  }

  .footer-nav {
    grid-template-columns: repeat(2, max-content);
    gap: 18px 36px;
  }
}

@media (max-width: 820px) {
  .container {
    width: min(100% - 40px, var(--container));
  }

  .page-shell {
    width: min(100%, 390px);
  }

  .hero-section {
    /* min-height: 444px; — disabled while the intro section is commented out (see index.html) */
    padding: 20px 0 0;
  }

  .site-header {
    position: relative;
    z-index: 20;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0;
    min-height: 44px;
  }

  .site-header.menu-open::before {
    position: absolute;
    z-index: -1;
    top: -20px;
    left: -20px;
    width: 390px;
    height: 421px;
    background: var(--off-white);
    content: "";
  }

  .brand img {
    width: 177px;
  }

  .menu-toggle {
    position: relative;
    z-index: 2;
    display: block;
    width: 44px;
    height: 40px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
  }

  .menu-toggle span {
    position: absolute;
    right: 0;
    display: block;
    width: 44px;
    height: 4px;
    border-radius: 13px;
    background: var(--black);
    transition:
      transform 180ms ease,
      opacity 180ms ease;
  }

  .menu-toggle span:nth-child(1) {
    top: 0;
  }

  .menu-toggle span:nth-child(2) {
    top: 18px;
  }

  .menu-toggle span:nth-child(3) {
    top: 36px;
  }

  .site-header.menu-open .menu-toggle span:nth-child(1) {
    top: 18px;
    transform: rotate(45deg);
  }

  .site-header.menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .site-header.menu-open .menu-toggle span:nth-child(3) {
    top: 18px;
    transform: rotate(-45deg);
  }

  .main-nav {
    position: absolute;
    top: 72px;
    left: 33px;
    right: 33px;
    display: grid;
    width: auto;
    gap: 0;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition:
      opacity 180ms ease,
      transform 180ms ease;
  }

  .site-header.menu-open .main-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 46px;
    padding: 0;
    border-bottom: 1px solid var(--navy);
    color: var(--black);
    font-size: 20px;
    font-weight: 400;
    line-height: 1.2;
    text-align: left;
  }

  .main-nav a:hover,
  .main-nav .active {
    color: var(--black);
    font-weight: 600;
  }

  .main-nav a::after {
    display: inline-block;
    width: 18px;
    height: 18px;
    background: currentColor;
    color: var(--black);
    content: "";
    -webkit-mask: url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 14 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M-6.2212e-05 7.95429V5.91425H9.93812L5.03453 1.42242L6.43823 3.24784e-06L13.1011 6.26985V7.57997L6.43823 13.8498L5.01582 12.4087L9.90068 7.95429H-6.2212e-05Z' fill='%23000'/%3E%3C/svg%3E") center / contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 14 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M-6.2212e-05 7.95429V5.91425H9.93812L5.03453 1.42242L6.43823 3.24784e-06L13.1011 6.26985V7.57997L6.43823 13.8498L5.01582 12.4087L9.90068 7.95429H-6.2212e-05Z' fill='%23000'/%3E%3C/svg%3E") center / contain no-repeat;
  }

  .main-nav a:last-child {
    border-bottom: 0;
  }

  .sign-in {
    min-width: 0;
    margin-top: 0;
    padding: 0 !important;
    border-radius: 0;
    background: transparent;
    color: var(--black) !important;
    text-align: left !important;
  }

  .sign-in:hover {
    background: transparent;
    color: var(--black) !important;
    font-weight: 600;
  }

  .hero-copy {
    align-items: flex-start;
    padding-top: 43px;
    text-align: left;
  }

  .eyebrow {
    display: none;
  }

  .hero-copy h1 {
    width: 345px;
    font-size: 27.944px;
    line-height: 37.617px;
  }

  .hero-lede {
    width: 345px;
    margin: 8px 0 0;
    font-size: 16px;
    line-height: 26px;
  }

  .notices-section {
    padding: 38px 0 31px;
    background: var(--light-blue);
  }

  .notices-section > .container {
    width: 100%;
  }

  .notices-section h2 {
    font-size: 20px;
    font-weight: 700;
    line-height: 30.4px;
  }

  .notice-panel {
    position: relative;
    display: block;
    width: min(369px, calc(100vw - 20px));
    margin: 26px auto 0;
    padding: 62px 26px 25px;
    border-radius: 20px;
    background: var(--navy);
    color: var(--white);
  }

  .notice-panel::after {
    position: absolute;
    top: 25px;
    right: 22px;
    width: 47px;
    height: 47px;
    background: url("assets/important-yellow-icon.png") center / contain no-repeat;
    content: "";
    filter: drop-shadow(0.25px 0 0 var(--gold)) drop-shadow(-0.25px 0 0 var(--gold)) drop-shadow(0 0.25px 0 var(--gold)) drop-shadow(0 -0.25px 0 var(--gold));
  }

  .notice-grid {
    display: block;
    margin: 0;
  }

  .notice-bottom {
    display: block;
    width: min(369px, calc(100vw - 20px));
    margin: 0 auto;
    padding: 0 26px;
  }

  .notice-card,
  .notice-card.tall,
  .notice-card.wide {
    display: block;
    width: auto;
    height: auto;
    min-height: 0;
    margin: 0;
    padding: 0;
    border-radius: 0;
    background: transparent;
    color: inherit;
  }

  .notice-card + .notice-card,
  .notice-card.wide.evolving-card {
    margin-top: 24px;
  }

  .notice-icon {
    display: none;
  }

  .notice-card h3 {
    font-size: 16px;
    font-weight: 900;
    line-height: 24px;
    letter-spacing: 0.05em;
  }

  .notice-panel h3,
  .notice-panel p,
  .notice-panel li {
    font-size: 16px;
    line-height: 24px;
  }

  .notice-card p,
  .notice-card li {
    font-size: 16px;
    line-height: 24px;
  }

  .notice-card ul {
    padding-left: 22px;
  }

  .question-card {
    display: block;
    width: auto;
    height: auto;
    min-height: 0;
    margin: 46px auto 0;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--navy);
    text-align: center;
  }

  .question-icon {
    width: 47px;
    height: 47px;
    margin: 0 auto 18px;
    border: 4px solid var(--rose);
    color: var(--rose);
    font-size: 28px;
  }

  .question-card h3 {
    margin: 0;
    color: var(--rose);
    font-size: 20px;
    font-weight: 700;
    line-height: 26px;
    letter-spacing: 0;
    text-transform: none;
  }

  .question-card p {
    margin: 0;
    color: var(--navy);
    font-size: 16px;
    line-height: 26px;
  }

  .site-footer {
    padding: 32px 0 31px;
  }

  .footer-top {
    display: flex;
    flex-direction: column;
    gap: 31px;
    align-items: stretch;
    padding-bottom: 0;
    border-bottom: 0;
  }

  .footer-logo {
    order: 2;
    width: 147px;
  }

  .watermark {
    order: 1;
    min-height: 67px;
    padding: 12px 8px;
    border: 0.5px solid var(--navy);
    border-radius: 9.339px;
    grid-template-columns: 26px 1fr;
    gap: 8px;
    align-items: center;
    font-size: 13px;
    line-height: 22px;
  }

  .mobile-line-break {
    display: block;
  }

  .footer-nav {
    order: 3;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    font-size: 14px;
  }

  .footer-nav a {
    display: flex;
    justify-content: space-between;
    padding: 0;
    border-top: 0.75px solid var(--navy);
    line-height: 35px;
  }

  .footer-nav a::after {
    content: "→";
  }

  .footer-nav a:last-child {
    border-bottom: 0.75px solid var(--navy);
  }

  .footer-bottom {
    display: flex;
    flex-direction: column-reverse;
    gap: 22px;
    padding-top: 24px;
    font-size: 12px;
  }

  .footer-bottom p {
    line-height: 16px;
    text-align: left;
  }

  .footer-bottom p:last-child {
    text-align: center;
  }
}
