/* ==========================================================
   EMERGENCY MANAGEMENT SUBPAGES
   Reusable base for interior pages
========================================================== */

/* ------------------------------
   Tokens
------------------------------ */
:root {
  --em-navy: #1c3552;
  --em-navy-dark: #13283f;
  --em-blue: #78b1dc;
  --em-blue-soft: #eaf4fb;
  --em-gold: #c9a24a;
  --em-text: #27384a;
  --em-text-soft: #5b7086;
  --em-border: rgba(28, 53, 82, 0.12);
  --em-border-strong: rgba(28, 53, 82, 0.2);
  --em-surface: #ffffff;
  --em-surface-soft: #f5f9fc;
  --em-shadow: 0 12px 30px rgba(28, 53, 82, 0.08);
  --em-radius: 1rem;
  --em-radius-sm: 0.75rem;
  --em-max: 1180px;
}

/* ------------------------------
   Page shell
------------------------------ */
body {
  background:
    linear-gradient(180deg, #f5f9fc 0%, #eef3f8 100%);
}

.homeland-layout::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 320px;
  pointer-events: none;
}

.homeland-layout {
  position: relative;
  padding: 2.5rem 0 4rem;
}

.homeland-container {
  max-width: var(--em-max);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.homeland-content {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
}

/* ------------------------------
   Page title bar
------------------------------ */
.page-title-bar {
  margin: 0 0 1.5rem;
  padding: 1.35rem 1.5rem;
  border-radius: .5rem;
  background: linear-gradient(135deg, var(--em-navy) 0%, var(--em-navy-dark) 100%);
  box-shadow: 0 16px 34px rgba(19, 40, 63, 0.16);
  position: relative;
  overflow: hidden;
}

.page-title-bar::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.08), transparent 35%);
  pointer-events: none;
}

.page-title-bar h1 {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #fff;
  font-family: "Oswald", sans-serif;
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.page-title-bar i {
  color: var(--em-blue);
  font-size: 0.9em;
}

/* ------------------------------
   Generic content wrappers
------------------------------ */
.content-section,
.content-card {
  background: var(--em-surface);
  border: 1px solid var(--em-border);
  border-radius: var(--em-radius);
  box-shadow: var(--em-shadow);
  padding: 1.75rem;
  margin: 0 0 1.5rem;
}

.content-section > *:first-child,
.content-card > *:first-child {
  margin-top: 0;
}

.content-section > *:last-child,
.content-card > *:last-child {
  margin-bottom: 0;
}

/* top accent */
.content-section::before,
.content-card::before {
  content: "";
  display: block;
  width: 78px;
  height: 4px;
  margin: 0 0 1rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--em-navy), var(--em-blue));
}

/* ------------------------------
   Headings / type
------------------------------ */
.section-title {
  margin: 0 0 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--em-navy);
  font-family: "Oswald", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  line-height: 1.15;
}

.section-title i {
  color: var(--em-blue);
  font-size: 0.9em;
}

.section-subtitle {
  margin: 2rem 0 0 0 !important;
  padding-bottom: 0;
  color: var(--em-text);
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.65;
}

.content-section p,
.content-card p {
  margin: 0 0 1rem;
  color: var(--em-text);
  font-size: 1rem;
  line-height: 1.75;
}

.content-section a,
.content-card a {
  color: var(--em-navy);
  font-weight: 700;
  text-decoration: none;
  transition: color 0.2s ease;
}

.content-section a:hover,
.content-card a:hover {
  color: #2f6d9b;
}

/* ------------------------------
   Reusable icon list
   Use for plan lists, info lists, contact items
------------------------------ */
.icon-list {
  list-style: none;
  margin: 0 0 1rem 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}

.icon-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  padding: 0.95rem 1rem;
  background: var(--em-surface-soft);
  border: 1px solid rgba(120, 177, 220, 0.22);
  border-radius: var(--em-radius-sm);
  color: var(--em-text);
  line-height: 1.55;
  font-weight: 600;
}

.icon-list li i {
  flex: 0 0 auto;
  color: var(--em-blue);
  font-size: 1rem;
  margin-top: 0.18rem;
}

/* link inside list item */
.icon-list li a {
  color: var(--em-navy);
  font-weight: 800;
}

.icon-list li a:hover {
  color: #2f6d9b;
}

/* ------------------------------
   Plans page enhancement
   Makes long plan lists easier to scan
------------------------------ */
.content-section .icon-list {
  grid-template-columns: repeat(2, minmax(260px, 1fr));
}

/* ------------------------------
   Contact card treatment
------------------------------ */
.content-card {
  position: relative;
}

.content-card .icon-list li {
  background: #fff;
  border: 1px solid var(--em-border);
}

.content-card .icon-list li:hover {
  border-color: rgba(120, 177, 220, 0.45);
  background: #fbfdff;
}

/* ------------------------------
   Optional utility classes
   Helpful for future subpages
------------------------------ */
.em-note {
  padding: 1rem 1.1rem;
  border-left: 4px solid var(--em-blue);
  background: var(--em-blue-soft);
  border-radius: 0 0.75rem 0.75rem 0;
  color: var(--em-text);
}

.em-warning {
  padding: 1rem 1.1rem;
  border-left: 4px solid var(--em-gold);
  background: #fff8ea;
  border-radius: 0 0.75rem 0.75rem 0;
  color: var(--em-text);
}

.em-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(260px, 1fr));
  gap: 1rem;
}

.em-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  gap: 1rem;
}

/* ------------------------------
   Spacing cleanup
------------------------------ */
#main.wrapper {
  border-top: 0;
}

.inner.homeland-container {
  width: 100%;
}

/* ------------------------------
   Responsive
------------------------------ */
@media (max-width: 980px) {
  .homeland-layout {
    padding: 2rem 0 3rem;
  }

  .content-section,
  .content-card {
    padding: 1.4rem;
  }

  .content-section .icon-list,
  .em-grid-2,
  .em-grid-3 {
    grid-template-columns: 1fr;
  }

  .page-title-bar {
    padding: 1.15rem 1.2rem;
  }
}

@media (max-width: 640px) {
  .homeland-container {
    padding: 0 0.9rem;
  }

  .page-title-bar h1 {
    font-size: 1.7rem;
    gap: 0.55rem;
  }

  .section-title {
    font-size: 1.3rem;
  }

  .section-subtitle,
  .content-section p,
  .content-card p,
  .icon-list li {
    font-size: 0.96rem;
  }

  .content-section,
  .content-card {
    padding: 1.15rem;
    border-radius: 0.85rem;
  }

  .icon-list li {
    padding: 0.85rem 0.9rem;
  }
}

/* ==========================================================
   VIDEO / MEDIA MODULE
   Reusable for PulsePoint and other media-heavy subpages
========================================================== */

/* optional intro paragraph spacing inside media pages */
.content-section + .content-section {
  margin-top: 0;
}

/* ---------------------------------
   Video card titles
---------------------------------- */
.video-title {
  margin: 0 0 1rem;
  color: var(--em-navy);
  font-family: "Oswald", sans-serif;
  font-size: 1.45rem;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

/* if section-subtitle is used as a media heading */
.content-section .section-subtitle {
  margin-bottom: 1rem;
}

/* ---------------------------------
   Embedded video wrapper
---------------------------------- */
.pp-container,
.video-embed {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: var(--em-radius);
  background: #0f1c2b;
  box-shadow: 0 16px 34px rgba(19, 40, 63, 0.16);
  aspect-ratio: 16 / 9;
}

/* fallback for older browsers */
.pp-container::before,
.video-embed::before {
  content: "";
  display: block;
  padding-top: 56.25%;
}

.pp-container iframe,
.video-embed iframe,
.responsive-iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  border-radius: inherit;
}

/* ---------------------------------
   Images inside content cards
---------------------------------- */
.pp-img,
.media-image {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
}

.pp-img img,
.media-image img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: var(--em-radius);
  border: 1px solid var(--em-border);
  box-shadow: 0 12px 28px rgba(28, 53, 82, 0.1);
  background: #fff;
}

/* if an inline width attribute exists, keep it from getting awkward */
.pp-img img[width] {
  max-width: min(100%, 780px);
}

/* ---------------------------------
   Two-up video/help layout
---------------------------------- */
.use-section,
.media-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(280px, 1fr));
  gap: 1.25rem;
  align-items: start;
  margin-top: 1rem;
}

/* smaller title inside split cards */
.use-section .section-title,
.media-grid-2 .section-title {
  font-size: 1.2rem;
  margin-bottom: 0.9rem;
}

/* remove inline-style dependency over time */
.use-section .section-title {
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--em-border);
}

/* ---------------------------------
   Horizontal rule cleanup
---------------------------------- */
.homeland-content hr {
  border: 0;
  height: 1px;
  margin: 1.25rem 0 1.5rem;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(28, 53, 82, 0.16),
    transparent
  );
}

/* ---------------------------------
   Media-heavy page rhythm
---------------------------------- */
.content-section > .pp-container,
.content-section > .video-embed,
.content-section > .pp-img,
.content-section > .media-image {
  margin-top: 1rem;
}

.content-section:has(.pp-container),
.content-section:has(.video-embed) {
  padding-bottom: 1.5rem;
}

/* ---------------------------------
   Optional helper classes
   For future video pages
---------------------------------- */
.media-stack {
  display: grid;
  gap: 1.25rem;
}

.media-caption {
  margin-top: 0.75rem;
  color: var(--em-text-soft);
  font-size: 0.95rem;
  line-height: 1.65;
}

.media-lead {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--em-text-soft);
}

/* ---------------------------------
   Responsive
---------------------------------- */
@media (max-width: 980px) {
  .use-section,
  .media-grid-2 {
    grid-template-columns: 1fr;
  }

  .video-title {
    font-size: 1.3rem;
  }
}

@media (max-width: 640px) {
  .video-title {
    font-size: 1.15rem;
  }

  .pp-container,
  .video-embed {
    border-radius: 0.85rem;
  }

  .pp-img img,
  .media-image img {
    border-radius: 0.85rem;
  }

  .homeland-content hr {
    margin: 1rem 0 1.2rem;
  }
}

/* ==========================================================
   LINKS PAGE (MINIMAL / CLEAN)
========================================================== */

/* target the table without needing new classes */
.homeland-content table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 0.75rem;
}

/* each row becomes a "card" */
.homeland-content table tr {
  background: #ffffff;
  border: 1px solid var(--em-border);
  border-radius: 0.85rem;
  box-shadow: 0 8px 20px rgba(28, 53, 82, 0.06);
  overflow: hidden;
}

/* cells */
.homeland-content table td {
  padding: 0.9rem 1rem;
  vertical-align: middle;
}

/* logo column */
.homeland-content table td:first-child {
  width: 90px;
  text-align: center;
}

/* images */
.homeland-content table img {
  max-width: 70px;
  height: auto;
  object-fit: contain;
}

/* link column */
.homeland-content table td:last-child {
  width: 100%;
}

/* links */
.homeland-content table a {
  display: inline-block;
  font-weight: 800;
  color: var(--em-navy);
  text-decoration: none;
  line-height: 1.4;
  transition: color 0.2s ease;
}

.homeland-content table a:hover {
  color: #2f6d9b;
}

/* hover effect for whole row */
.homeland-content table tr:hover {
  background: #f7fbff;
  border-color: rgba(120, 177, 220, 0.35);
}

/* ----------------------------------------------------------
   Mobile
---------------------------------------------------------- */
@media (max-width: 640px) {
  .homeland-content table tr {
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }

  .homeland-content table td {
    padding: 0.75rem;
  }

  .homeland-content table td:first-child {
    width: 70px;
  }

  .homeland-content table img {
    max-width: 55px;
  }
}

/* ==========================================================
   SUBPAGE WITH SIDEBAR
========================================================== */
.em-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 1.5rem;
  align-items: start;
}

.em-main-content,
.em-sidebar {
  min-width: 0;
}

.em-sidebar .info-card-container {
  margin: 0;
  position: sticky;
  top: 7rem;
}

/* ==========================================================
   TRAINING INFO CARD
========================================================== */

.info-card {
  background: #f4f6f8;
  border: 1px solid rgba(28, 53, 82, 0.1);
  border: 2px solid var(--em-blue);
  border-radius: 0.75rem;
  box-shadow: 0 8px 18px rgba(28, 53, 82, 0.06);
  padding: 1.1rem 1.2rem;
}

.info-card .card-body {
  padding: 0;
}

.info-card .card-title {
  margin: 0 0 0.85rem;
  font-family: "Oswald", sans-serif;
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-align: left;
  color: var(--em-navy);
}

.info-card .card-text {
  margin: 0 0 0.75rem;
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--em-text);
}

.info-card .dates-title {
  margin: 1rem 0 0.5rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--em-text-soft);
}

.info-card ul {
  margin: 0 0 1rem;
  padding-left: 1.1rem;
}

.info-card ul li {
  margin-bottom: 0.3rem;
  font-size: 0.93rem;
  color: var(--em-navy);
}

.info-card .button-container {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-top: 1rem;
}

.info-card .btn {
  display: block;
  width: 100%;
  padding: 0.55rem 0.85rem;
  border: none;
  border-radius: 0.45rem;
  background: var(--em-navy);
  color: #fff;
  font-size: 0.84rem;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
  transition: all 0.2s ease;
}

.info-card .btn:first-child {
  background: #e9eef3;
  color: var(--em-navy);
}

.info-card .btn:hover {
  background: #2f6d9b;
  color: #fff;
  transform: translateY(-1px);
}

.info-card .btn:first-child:hover {
  background: #d8e6f2;
  color: var(--em-navy);
}

/* ==========================================================
   RESPONSIVE
========================================================== */

@media (max-width: 980px) {
  .em-page-grid {
    grid-template-columns: 1fr;
  }

  .em-sidebar .info-card-container {
    position: static;
    top: auto;
  }
}

@media (max-width: 640px) {
  .info-card {
    padding: 1rem;
  }

  .info-card .card-title {
    font-size: 1rem;
  }

  .info-card .card-text,
  .info-card ul li {
    font-size: 0.9rem;
  }
}

/* ==========================================================
   CONTACT CARDS
========================================================== */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.contact-card {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbfe 100%);
  border: 1px solid rgba(28, 53, 82, 0.1);
  border-radius: 1rem;
  padding: 1.35rem 1.2rem;
  box-shadow: 0 10px 26px rgba(28, 53, 82, 0.06);
  width: fit-content;
}

.contact-card h3,
.contact-card-name {
  margin: 0 0 0.35rem;
  color: #1c3552 !important;
  font-size: 1.12rem;
  font-weight: 900;
  line-height: 1.3;
}

.contact-card em {
  display: inline-block;
  margin-bottom: 0.75rem;
  color: #5b7390 !important;
  font-style: normal;
  font-weight: 700;
  font-size: 0.95rem;
}

.contact-card p {
  margin: 0;
  color: #33475b !important;
  line-height: 1.75;
}

.contact-card a {
  color: #1c5a90 !important;
  font-weight: 700;
}

.phone-num {
  white-space: nowrap;
}


.full-width-section {
  width: 50%;
  margin: auto;
}

/* ==========================================================
   EMERGENCY MANAGEMENT FORM SYSTEM
========================================================== */

/* form wrapper */
form {
  margin-top: 1rem;
}

/* form card (overrides bootstrap card) */
form .card {
  border: 1px solid rgba(28, 53, 82, 0.1);
  border-radius: 0.9rem;
  box-shadow: 0 12px 28px rgba(28, 53, 82, 0.08);
  overflow: hidden;
}

/* card body */
form .card-body {
  background: #f4f7fb !important;
  padding: 1.5rem 1.6rem;
}

/* labels */
.form-label {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--em-text-soft);
  margin-bottom: 0.35rem;
}

/* inputs */
.form-control,
.form-select {
  border-radius: 0.5rem;
  border: 1px solid rgba(28, 53, 82, 0.15);
  padding: 0.55rem 0.65rem;
  font-size: 0.95rem;
  transition: all 0.2s ease;
}

/* focus */
.form-control:focus,
.form-select:focus {
  border-color: var(--em-blue);
  box-shadow: 0 0 0 3px rgba(120, 177, 220, 0.25);
  outline: none;
}

/* textarea */
textarea.form-control {
  min-height: 110px;
  resize: vertical;
}

/* spacing */
.mb-3 {
  margin-bottom: 1rem !important;
}

/* ==========================================================
   BUTTONS
========================================================== */

.actions {
  display: flex;
  gap: 0.6rem;
  justify-content: flex-end;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

/* primary submit */
.actions .special {
  background: var(--em-navy);
  color: #fff;
  border: none;
  padding: 0.55rem 1.1rem;
  font-weight: 800;
  font-size: 0.85rem;
  border-radius: 0.45rem;
  transition: all 0.2s ease;
}

.actions .special:hover {
  background: #2f6d9b;
  transform: translateY(-1px);
}

/* disabled */
.actions .special:disabled {
  background: #bfc7d1;
  cursor: not-allowed;
  transform: none;
}

/* reset button */
.actions input[type="reset"] {
  background: #e9eef3;
  color: var(--em-navy);
  border: none;
  padding: 0.55rem 1rem;
  border-radius: 0.45rem;
  font-weight: 700;
}

.actions input[type="reset"]:hover {
  background: #d8e6f2;
}

/* ==========================================================
   ALERT MESSAGES
========================================================== */

.alert {
  border-radius: 0.6rem;
  font-weight: 700;
  padding: 0.7rem 0.9rem;
  margin-bottom: 1rem;
}

.alert-success {
  background: #e7f6ec;
  color: #1e6b3a;
  border: 1px solid #b8e3c6;
}

.alert-danger {
  background: #fdeaea;
  color: #8b1f1f;
  border: 1px solid #f3bcbc;
}

/* ==========================================================
   CAPTCHA ROW FIX
========================================================== */

.row.uniform {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
}

.row.uniform .col {
  flex: 1;
}

/* ==========================================================
   MOBILE
========================================================== */

@media (max-width: 640px) {

  form .card-body {
    padding: 1.2rem;
  }

  .actions {
    flex-direction: column;
    align-items: stretch;
  }

  .actions .special,
  .actions input[type="reset"] {
    width: 100%;
    text-align: center;
  }

  .row.uniform {
    flex-direction: column;
    align-items: stretch;
  }
}

/* ==========================================================
   FORM ADD-ONS FOR CERT REGISTRATION PAGE
========================================================== */

/* page title with logo */
.page-title-bar h1 .title-img {
  height: 42px;
  width: auto;
  margin-right: 0.65rem;
  vertical-align: middle;
  object-fit: contain;
}

/* success / error messages used by cert form */
.success-message,
.error-message {
  margin: 0 0 1rem;
  padding: 0.8rem 1rem;
  border-radius: 0.6rem;
  font-weight: 700;
  line-height: 1.5;
}

.success-message {
  background: #e7f6ec;
  color: #1e6b3a;
  border: 1px solid #b8e3c6;
}

.error-message {
  background: #fdeaea;
  color: #8b1f1f;
  border: 1px solid #f3bcbc;
}

/* tighter standalone form layout */
.homeland-content > form {
  max-width: 860px;
}

/* make this form feel like the card-based one too */
.homeland-content > form {
  background: #f4f7fb;
  border: 1px solid rgba(28, 53, 82, 0.1);
  border-radius: 0.9rem;
  box-shadow: 0 12px 28px rgba(28, 53, 82, 0.08);
  padding: 1.5rem 1.6rem;
}

/* visual separator at top */
.homeland-content > form::before {
  content: "";
  display: block;
  height: 4px;
  width: 100%;
  margin: -1.5rem -1.6rem 1.25rem;
  width: calc(100% + 3.2rem);
  background: linear-gradient(90deg, var(--em-navy), var(--em-blue));
  border-radius: 0.9rem 0.9rem 0 0;
}

/* placeholders */
.form-control::placeholder,
textarea.form-control::placeholder {
  color: #8a99aa;
  opacity: 1;
}

/* selects */
.form-select {
  background-color: #fff;
  min-height: 44px;
}

/* checkbox honeypot stays hidden even without bootstrap */
.d-none {
  display: none !important;
}

/* recaptcha area */
.g-recaptcha {
  max-width: 100%;
}

.mb-4.text-center .g-recaptcha {
  transform-origin: center top;
}

/* old layout helper classes used on this page */
.row.uniform.text-center {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}

.row.uniform.text-center .12u {
  width: 100%;
}

/* center button row on this form */
.row.uniform.text-center .actions {
  justify-content: center;
}

/* button sizing */
#register,
input[name="submit"].special {
  min-width: 140px;
}

/* hover/focus for reset */
.actions input[type="reset"]:focus,
.actions .special:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(120, 177, 220, 0.25);
}

/* text blocks between fields */
form br {
  display: none;
}

/* spacing cleanup for this form */
form .mb-4.text-center {
  margin-bottom: 1rem !important;
}

/* mobile recaptcha scaling */
@media (max-width: 640px) {
  .homeland-content > form {
    padding: 1.2rem;
  }

  .homeland-content > form::before {
    margin: -1.2rem -1.2rem 1rem;
    width: calc(100% + 2.4rem);
  }

  .page-title-bar h1 .title-img {
    height: 34px;
    margin-right: 0.5rem;
  }

  .mb-4.text-center .g-recaptcha {
    transform: scale(0.92);
  }
}

@media (max-width: 420px) {
  .mb-4.text-center .g-recaptcha {
    transform: scale(0.82);
  }
}

.parent-guardian-wrap {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(-8px);
  transition:
    max-height 0.55s ease,
    opacity 0.4s ease,
    transform 0.55s ease,
    margin-top 0.55s ease;
  margin-top: 0;
}

.parent-guardian-wrap.is-open {
  max-height: 140px;
  opacity: 1;
  transform: translateY(0);
  margin-top: 0.5rem;
}

.contact-info-list {
  list-style-type: none;
  margin-left: 1rem;
}

.contact-info-list li {
  margin: 1rem auto;
}

.contact-info-list li a {
  text-decoration: underline;
}

.contact-info-list span {
  font-weight: 600;
}

