*, *:before, *:after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --main-width: 1200px;
}

.hide { display: none !important; }

html, body {
  font-family: helvetica, arials, sans-serif;
  font-size: 18px;
  line-height: 26px;
}

h2, h3 { font-weight: bold; }
h2 { font-size: 27px; }
h3 { font-size: 21px; }
a { color: #0000ff; }
ol { list-style-position: inside; margin: 12px 0; }

.NOTE { position: relative; font-weight: bold; background: #ffff00; }
.NOTE-SUPER { position: absolute; top: -9px; right: -15px; display: flex; justify-content: center; align-items: center; height: 16px; padding: 0 2px; font-weight: bold; font-size: 10px; font-style: normal; color: hsl(0 0% 100%); background: hsl(0 0% 0%); }
.NOTE-SUPER:hover { opacity: 0.1; }

.std-header h2 { margin-bottom: 40px; }
.std-header h3 { margin-bottom: 16px; }
.std-description { margin: 80px 0; }
.std-description h2 { margin-bottom: 32px; }
.std-description h3 { margin: 24px 0 4px; }
.std-description p { font-size: 17px; line-height: 24px; }

.main {}
.main-content { margin: 0 auto; }

.main-header { height: 80px; border-bottom: 1px solid hsl(0 0% 0%); }

@media (max-width: 1200px) {
  .main-header { height: 80px; padding: 0 20px;}
}

.main-header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: var(--main-width);
  height: 100%;
  margin: 0 auto;
}

.main-header-logo { display: block; height: 100%; }
.main-header-logo img { display: block; height: 100%; padding: 16px 0; }
.main-header-links {}
.main-header-links a { text-decoration: none; color: #3d4a5c; }
.main-header-links a + a { margin-left: 16px; }

.main-body {}

@media (max-width: 1200px) {
  .main-body { padding: 0 20px; }
}

.main-body-content {
  max-width: var(--main-width);
  margin: 0 auto;
  padding-top: 40px;
}

.alert { padding: 28px 30px 26px; font-size: 16px; line-height: 24px; background: hsl(0 0% 93%); border-radius: 10px; }
.alert h2 { margin-bottom: 10px; font-size: 1.2rem; }
.main-alert { margin-bottom: 40px; }
.main-alert h2 { margin-bottom: 16px; }

.carousel {
  position: relative; height: 600px;
  overflow: hidden;
  border-radius: 28px;
}

@media (max-width: 1200px) {
  .carousel { height: 400px; }
}

.carousel-window { width: 100%; height: 100%; }

.carousel-dots {
  position: absolute; bottom: 24px; width: 100%;
  line-height: 0; text-align: center;
}

.carousel-dot {
  display: inline-block;
  width: 16px; height: 16px;
  margin: 5px;
  background: hsl(0 0% 0%);
  border-radius: 100px;
  transition: all ease-out 1s;
  cursor: pointer;
}

.carousel-dot-active {
  transform: scale(1.2);
  background: hsl(0 0% 100%);
  cursor: default;
  pointer-events: none;
}

.carousel-nav {
  position: absolute; z-index: 1000;
  top: calc(50% - 80px / 2);
  width: 80px; padding: 12px;
  background: hsl(0 0% 100%); border-radius: 28px;
  cursor: pointer;
  opacity: 0.2;
}

.carousel-nav:hover { opacity: 0.5; }
.carousel-nav-prev { left: 28px; }
.carousel-nav-next { right: 28px; }

@media (max-width: 700px) {
  .carousel-nav {
    top: unset; bottom: 10px;
    width: 60px;
    border-radius: 22px;
  }
  .carousel-nav-prev { left: 10px; }
  .carousel-nav-next { right: 10px; }
}

.carousel-slide {
  position: absolute; display: block;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 50%;
  background-color: hsl(0 0% 0%);
  opacity: 0;
  pointer-events: none;
  cursor: default;
  transition: all ease-out 2s;
}

.carousel-slide-active { opacity: 1; cursor: pointer; pointer-events: all; }
.carousel-slide:hover { filter: brightness(0.85); }

.carousel-fg { max-width: 70%; }
@media (max-width: 700px) {
  .carousel-fg { max-width: 85%; }
}

.carousel-layout-x-center-y-center { display: flex; flex-direction: column; justify-content: center; align-items: center; }
.carousel-layout-x-center-y-top { display: flex; flex-direction: column; justify-content: flex-start; align-items: center; }
.carousel-layout-x-center-y-bottom { display: flex; flex-direction: column; justify-content: flex-end; align-items: center; }

.events { margin-top: 80px; }
.events h2 { margin-bottom: 22px; }
.event + .event { margin-top: 12px; }
.event-container { position: relative; display: grid; grid-template-columns: 240px 1fr; }
.event-feature-image { background-size: cover; background-position: 50% 50%; border-radius: 12px 0 0 12px; }

.event-content {
  padding: 20px 20px 20px 24px;
  background: hsl(0 0% 99%);
  border: 1px solid hsl(0deg 0% 55%);
  border-radius: 0 12px 12px 0;
}

.event header { margin-bottom: 6px; font-weight: bold; }

.event-info {
  position: relative;
  display: grid; grid-template-columns: 140px 1fr; grid-gap: 4px 10px;
  font-size: 16px; line-height: 21px;
}

.event-info > div:nth-child(odd) { text-align: right; color: hsl(0 0% 55%); }
.event-content p { margin-top: 4px; }

@media (max-width: 700px) {
  .event + .event { margin-top: 16px; }
  .event-container { grid-template-columns: 1fr; }
  .event-feature-image { height: 160px; border-radius: 12px 12px 0 0; }
  .event-content { padding: 16px 16px; border-radius: 0 0 12px 12px; }
  .event header { margin-bottom: 14px; }
  .event-info { grid-template-columns: 1fr; grid-gap: 0 0; }
  .event-info > div:nth-child(odd) { text-align: left; }
  .event-info > div:nth-child(even) { margin-bottom: 8px; }
}

.key-links { margin-top: 80px; }

.key-links-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 60px 40px;
}

.key-links-grid { margin-bottom: 100px; }
.key-links-grid:last-of-type { margin-bottom: 0; }

@media (max-width: 700px) {
  .key-links-grid { grid-template-columns: repeat(1, 1fr);  grid-gap: 0 0; }
}

@media (min-width: 701px) and (max-width: 900px) {
  .key-links-grid { grid-template-columns: repeat(2, 1fr);  grid-gap: 60px 16px; }
}

.key-link header { margin-bottom: 20px; }
.key-link header img { height: 32px; filter: invert(1); margin-left: 1px; }

.key-link header a {
  position: relative;
  display: inline-flex; justify-content: space-between; align-items: center;
  width: 100%; min-height: 90px; padding: 12px 20px;
  font-weight: bold; color: hsl(0 0% 100%);
  background: hsl(0 62% 30% / 1);
  border-radius: 10px;
  text-decoration: none;
  transition: all 200ms ease-out;
}

.key-link-body { margin-bottom: 32px; }

.key-links-students .key-link header a { background: hsl(226 62% 34%); }
.key-links-locations .key-link header a { background: hsl(266 52% 24%); }
.key-links-registrar .key-link header a { background: hsl(129 65% 29%); }

.key-link header a[href]:hover { filter: brightness(1.33); box-shadow: 0 0 16px hsl(0 0% 0% / 30%); }

.key-link-text { line-height: 20px; }
.key-link-subtitle { font-size: 12px; line-height: 0; }

.contact-info { margin-top: 120px; }
.contact-info h2 { margin-bottom: 24px; }
.contact-info li { margin-top: 12px; font-size: 14px; line-height: 19px; list-style-type: disclosure-closed; }
.contact-info header { font-size: 13px; font-weight: bold; text-transform: uppercase; }

.more-info {
  max-width: var(--main-width); margin: 130px auto 0;
  font-size: 16px; line-height: 26px;
  padding: 40px 20px; border: 1px solid hsl(0deg 0% 50%);
}

.more-info h2 { margin-bottom: 32px; }

@media (max-width: 1200px) {
  .more-info { margin-left: 20px; margin-right: 20px; padding-left: 20px; padding-right: 20px; }
}

footer {
  max-width: var(--main-width);
  margin: 120px auto 200px;
  padding: 60px 52px 160px;
  font-size: 12px;
  line-height: 25px;
  text-transform: uppercase;
  color: hsl(0 0% 100%);
  background: #42196F;
  border-radius: 22px;
}

.footer-logo { height: 40px; margin-bottom: 12px; }

@media (max-width: 1200px) {
  footer { margin-bottom: 0; border-radius: 0px; padding-left: 34px; padding-right: 34px; }
}

.page-header {
  position: relative; height: 600px;
  margin-bottom: 80px;
  overflow: hidden;
  border-radius: 28px;
}

@media (max-width: 1200px) {
  .page-header { height: 400px; }
}

.page-header-bg {
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 50%;
}

.page-header-fg {
  position: relative;
  display: flex; justify-content: center; align-items: center;
  width: 100%; height: 100%;
}

.page-header-fg img { max-width: 100%; max-height: 100%; }


/* Accordions on static home page. */

.faq-section { margin: 80px 0;}
.faq-section h2 { margin-bottom: 22px; }
.faq-section button { font-size: 16px; line-height: 23px; }

/* Style the buttons that are used to open and close the accordion panel. */
.accordion {
  width: 100%; padding: 18px 18px 16px;
  text-align: left;
  color: hsl(0 0% 15%); background: #eee;
  border: none; outline: none;
  border-bottom: 1px solid #9e9e9e;
  cursor: pointer;
  transition: 0.4s;
}

.active, .accordion:hover { background-color: #ccc; }

.panel {
  display: none;
  overflow: hidden;
  padding: 20px 18px;
  font-size: 16px; line-height: 24px;
  background: hsl(0 0% 100%);
}

/* SLIDES */
@media (max-width: 700px) {
  #student-orientation-2025-06-11 { background-size: cover !important; }
}
