@import url("https://fonts.googleapis.com/css2?family=Fira+Sans:wght@200;400;700;800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700;800;900&display=swap");
/* theme styles */
.light {
  background-color: #e6ebef;
}
.light h2,
.light h3,
.light h4 {
  color: #632738;
}
.light a {
  color: #632738 !important;
}
.light a:hover, .light a:active, .light a:focus {
  color: #ffcfcf !important;
}
.light .modular-button a {
  background-color: #632738 !important;
}
.light .card-body a {
  color: #ffcfcf !important;
}

.dark {
  background-color: #632738;
  color: #ffffff;
}
.dark a {
  color: #632738 !important;
}
.dark a:hover, .dark a:active, .dark a:focus {
  color: #ffcfcf !important;
}
.dark .card-body {
  background-color: #4db0db;
}
.dark .card-body a {
  color: #ffcfcf !important;
}

.blue {
  background-color: #4db0db;
  color: #ffffff;
}
.blue h2,
.blue h3,
.blue h4 {
  color: #632738 !important;
}
.blue .modular-button a {
  background-color: #632738 !important;
}
.blue a {
  color: #632738 !important;
}
.blue a:hover, .blue a:active, .blue a:focus {
  color: #ffcfcf !important;
}

#main {
  background-color: #f7eee6;
  color: #632738;
}
#main h1,
#main h2,
#main h3,
#main h4 {
  color: #e95b30;
}
#main a {
  color: #632738;
  text-decoration-color: #632738;
  background-color: none;
}
#main a:hover, #main a:active, #main a:focus {
  color: #ffcfcf;
  background-color: #632738;
  background-image: none;
}

#latest-articles .cards .card {
  width: 17rem !important;
  min-width: 17rem !important;
}
#latest-articles .cards .card h3 {
  font-size: 2rem !important;
}

.modular-staff .staff-card .avatar-container {
  background-color: #632738 !important;
}
.modular-staff .staff-card .staff-info-container .staff-card-name {
  color: #632738 !important;
}

.article-gallery .gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1rem;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .article-gallery .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
  }
}
.article-gallery .gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background-color: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.article-gallery .gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}
.article-gallery .gallery-link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.article-gallery .gallery-link:hover {
  background-color: transparent !important;
}
.article-gallery .gallery-thumbnail {
  width: 100%;
  height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.article-gallery .gallery-caption {
  padding: 0.75rem;
  font-size: 0.875rem;
  color: #666;
  background-color: #fff;
  border-top: 1px solid #eee;
}

.gallery-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-lightbox .lightbox-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
}
.gallery-lightbox .lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.gallery-lightbox #lightboxImage {
  max-width: 100%;
  max-height: 80vh;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 4px;
}
.gallery-lightbox .lightbox-caption {
  color: #fff;
  margin-top: 1rem;
  text-align: center;
  font-size: 1rem;
  max-width: 600px;
}
.gallery-lightbox .lightbox-counter {
  color: #fff;
  margin-top: 0.5rem;
  font-size: 0.875rem;
  opacity: 0.8;
}
.gallery-lightbox .lightbox-close,
.gallery-lightbox .lightbox-prev,
.gallery-lightbox .lightbox-next {
  position: absolute;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  padding: 0.5rem 1rem;
  transition: background-color 0.3s ease;
  border-radius: 4px;
  z-index: 10001;
}
.gallery-lightbox .lightbox-close:hover,
.gallery-lightbox .lightbox-prev:hover,
.gallery-lightbox .lightbox-next:hover {
  background: rgba(255, 255, 255, 0.3);
}
.gallery-lightbox .lightbox-close {
  top: 1rem;
  right: 1rem;
  font-size: 2.5rem;
  line-height: 1;
  padding: 0.25rem 0.75rem;
}
.gallery-lightbox .lightbox-prev {
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
}
.gallery-lightbox .lightbox-next {
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
}

@media (max-width: 768px) {
  .gallery-lightbox .lightbox-prev,
  .gallery-lightbox .lightbox-next {
    font-size: 1.5rem;
    padding: 0.25rem 0.5rem;
  }
  .gallery-lightbox .lightbox-close {
    font-size: 2rem;
  }
}/*# sourceMappingURL=wavelength.css.map */