/* University Template over-ride
   Launched: 2026-09-18
   Author: Notre Dame Web Team
   ----------------------------------------------------*/
@layer site {
   @media only screen {

   }
   /* 480px
   ----------------------------------------------------*/
   @media only screen and (min-width:30em) {

   }

   /* 768px
   ----------------------------------------------------*/
   @media only screen and (min-width:48em) {

   }

   /* 960px
   ----------------------------------------------------*/
   @media only screen and (min-width:60em) {

   }

   /* 1280px
   ----------------------------------------------------*/
   @media only screen and (min-width:80em) {

   }

   /* 1600px
   ----------------------------------------------------*/
   @media only screen and (min-width:100em) {

   }

   /* 1920px
   ----------------------------------------------------*/
   @media only screen and (min-width:120em) {

   }

   /* Print
   ----------------------------------------------------*/
   @media print {

   }
}

/* Homepage Hero */
body.home main.site-content,
body.sessions main.site-content {
  padding-top: 0;
}
/*.site-content p {
  max-width: 100%;
}*/
section.homepage-hero {
  /*--section-margin: clamp(3rem, 8vw, 8rem);*/
}
body[data-theme="light"] .section.homepage-hero .section-title {
  color: var(--brand-blue-dark);
}
body[data-theme="light"] .section.homepage-hero .bg--gradient:before {
  background: linear-gradient(var(--gradient-angle), var(--warm-white-dark) 5%, transparent 80%);
}
body[data-theme="light"] .section.homepage-hero p {
  color: var(--gray);
}

/* Language select */
.language_select_wrapper {
  display: inline-block;
  margin: 0;
  padding: 0;
  position: relative;
}
.language_select_wrapper .language_globe {
  width: 20px;
  height: 20px;
  position: absolute;
  z-index: 1;
  left: 4px;
  top: calc(50% - 10px);
}
body[data-theme="light"] .language_select_wrapper .language_globe path {
  fill: var(--brand-blue-dark);
}
body[data-theme="dark"] .language_select_wrapper #language_select option {
  background: var(--brand-blue-dark);
}

.language_select_wrapper .language_caret {
  position: absolute;
  width: 12px;
  height: 12px;
  z-index: 1;
  top: calc(50% - 6px);
  right: 4px;
}
#language_select {
  border: 1px solid transparent;
  background: transparent;
  background-color: transparent;
  appearance: none;
  padding: 4px 20px 4px 30px;
  margin: 0;
  position: relative;
  z-index: 2;
  width: 80px;
  max-width: 800px;
  overflow: hidden;
  outline: transparent;
}
select#language_select:focus {
  outline: var(--border-primary);
  box-shadow: none;
}
body[data-theme="dark"] #language_select {
  color: white;
}
/*
@media screen and (max-width:960px) {
  .language_select_wrapper {
    display: none;
  }
}
*/
@media screen and (max-width: 59.999em) {
  .language_select_wrapper {
    position: fixed;
    bottom: -1px; /* Offset border to sit seamlessly on the screen edge */
    right: var(--gutter-width, 1rem);
    z-index: 1000;
    background-color: light-dark(#fff, var(--brand-blue));
    border: var(--border-primary, 1px solid #ccc);
    border-radius: var(--border-radius, 4px) var(--border-radius, 4px) 0 0;
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.1);
  }

  /* Adjust icon alignment within the fixed container */
  .language_select_wrapper .language_globe {
    left: 0.6rem;
  }

  .language_select_wrapper .language_caret {
    right: 0.6rem;
  }

  #language_select {
    padding: 0.325rem 1.5rem 0.325rem 2rem;
    max-width: 5.4rem;
    width: auto;
    height: auto;
  }
}


/* About Page */
body[data-theme="light"] .notice.bg--dark {
  background: white;
  color: black;
}

/* FAQ */
body[data-theme="dark"] .faq-item:target .link-top a {
  color: black;
}
.faq-item blockquote {
    font-size: 24px;
}
