body.is-preload #banner:after {
  opacity: 0 !important;
}

#banner:after {
  transition: none !important;
}

@media screen and (max-width: 768px) {

  .inner,
  .wrapper .inner,
  section .inner,
  .spotlight .content {
    width: 100% !important;
    max-width: 100% !important;
    padding: 1.25rem 1rem !important;
    box-sizing: border-box !important;
  }

  h2, h3 {
    font-size: 1.6rem !important;
    letter-spacing: 0.08em !important;
    line-height: 1.3 !important;
  }

  p {
    font-size: 1rem !important;
    line-height: 1.5 !important;
    max-width: 100% !important;
  }

  .spotlight,
  .spotlight .content,
  .spotlight .image {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .spotlight .image img {
    width: 100% !important;
    height: auto !important;
  }
}


@media screen and (max-width: 360px) {

  #banner .inner,
  .spotlight .content,
  .wrapper .inner {
    padding-left: 0.75rem !important;
    padding-right: 0.75rem !important;
  }

  h2, h3 {
    font-size: 1.25rem !important;
    letter-spacing: 0.05em !important;
    line-height: 1.25 !important;
  }

  p {
    font-size: 0.95rem !important;
    line-height: 1.45 !important;
  }

  .button {
    display: inline-block !important;
    width: auto !important;
    max-width: 100% !important;
    white-space: normal !important;
    text-align: center !important;
    padding: 0.75em 1em !important;
    font-size: 0.85rem !important;
    letter-spacing: 0.06em !important;
    letter-spacing: 0.06em !important;
    height: 3.75em;
    line-height: 3.75em;
  }
}


.logo {
  /* width: 140px;   default desktop */
}

@media (max-width: 768px) {
  .logo {
    width: 250px;  /* bigger on mobile */
    display: block;
    margin: auto;
  }
}

.grid-2x2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px; /* thickness of lines */
    /* background-color: white;  */
    /* grid line color */
}

.grid-2x2 .cell {
    /* your section color */
    /* background-color: #2D3A46;  */
    padding: 30px;
}

#banner .logo-wrap {
  display: block;
  margin: 0 auto 1.5rem auto;
  opacity: 0;
  animation: materializeLogo 0.5s ease-out 0.2s forwards !important;
}


@media screen and (max-width: 768px) {

  #banner .inner h1,
  #banner .inner h2 {
    font-size: 1.6rem !important;
    letter-spacing: 0.05em !important;
    line-height: 1.4 !important;
  }

  #banner .inner p {
    font-size: 1rem !important;
    letter-spacing: 0.05em !important;
    line-height: 1.4 !important;
  }

  #banner .inner {
    padding: 0 20px !important;
  }
}

#banner .logo {
  max-width: 600px;
  height: auto;
  /* display: block; */
}
@keyframes materializeLogo {
  0% {
    opacity: 0;
    transform: scale(0.85) translateY(10px);
    filter: blur(6px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
    filter: blur(0);
  }
}
/* body.is-loaded #banner .logo-wrap {
  opacity: 1;
  transform: translateX(0);
} */
.button.inline {
    width: auto;
     max-width: none;
    overflow: visible;
    text-overflow: unset;
    padding: 0 1.75em;
}
.actions {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap; /* allows stacking on small screens */
}

.actions .button.inline {
    width: auto;
    max-width: none;
    overflow: visible;
    text-overflow: unset;
    white-space: nowrap;
}

.grid-2x2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start; /* 🔥 important */
}

.grid-2x2 .cell {
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* 🔥 key fix */
}

/* Button alignment */
.grid-2x2 .cell .button {
    margin-top: 20px;
    align-self: center; /* center horizontally */
}
/* Mobile: stack into 1 column */
@media (max-width: 768px) {
    .grid-2x2 {
        grid-template-columns: 1fr;
    }
}


select option {
  /* Dropdown option styling color */
    background-color: #3b4252;
}

.alt.left-align li {
    text-align: left;
    padding-left: 0.9em;
}