/*!
JAG Theme - Custom Styles
Custom stylesheet for JAG Companies theme
*/
/* ==========================================================================
   CSS Custom Properties - Brand Colors
   ========================================================================== */
:root {
  --color-light-gray: #EFEFEF;
  --color-black: #000000;
  --color-medium-gray: #505050;
  --color-blue: #00519F;
  --color-orange: #DF5327;
  --color-yellow: #FBAB18;
  --color-dark-gray: #343434;
  --color-white: #FFFFFF;
  --font-primary: "neue-haas-grotesk-display", sans-serif;
  --font-weight-light: 500;
  --font-weight-regular: 500;
  --font-weight-medium: 600;
  --font-weight-bold: 700;
}

/* ==========================================================================
   Universal Container
   ========================================================================== */
.container {
  max-width: 1620px;
  margin: 0 auto;
  padding: 0 2rem;
}
@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }
}

/* ==========================================================================
   Typography
   ========================================================================== */
body {
  font-family: var(--font-primary);
  font-weight: var(--font-weight-regular);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  font-weight: var(--font-weight-bold);
  line-height: 1.2;
}

/* ==========================================================================
   Footer Styles
   ========================================================================== */
.site-footer {
  background-color: var(--color-dark-gray);
  color: var(--color-light-gray);
  padding: 3rem 0 2rem;
}
.site-footer .footer-columns {
  display: grid;
  grid-template-columns: 3fr 3fr;
  gap: 6rem;
  align-items: start;
}
@media (max-width: 1024px) {
  .site-footer .footer-columns {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    gap: 3rem;
  }
}
@media (max-width: 480px) {
  .site-footer .footer-columns {
    gap: 2rem;
  }
}
.site-footer .company-info {
  display: flex;
  align-items: center;
  gap: 2rem;
}
@media (max-width: 1024px) {
  .site-footer .company-info {
    justify-content: center;
    gap: 1.5rem;
  }
}
@media (max-width: 480px) {
  .site-footer .company-info {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
  }
}
.site-footer .company-info img {
  max-width: 200px;
  height: auto;
  flex-shrink: 0;
}
@media (max-width: 1024px) {
  .site-footer .company-info img {
    max-width: 150px;
  }
}
@media (max-width: 480px) {
  .site-footer .company-info img {
    max-width: 120px;
  }
}
.site-footer .company-info .company-links {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.site-footer .company-info .company-links a {
  color: var(--color-light-gray);
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s ease;
  font-weight: 700;
}
.site-footer .company-info .company-links a:hover {
  color: var(--color-orange);
}
.site-footer .company-info .company-links a:focus {
  color: var(--color-orange);
  outline: 2px solid var(--color-yellow);
  outline-offset: 2px;
  border-radius: 4px;
}
.site-footer .company-info .company-links a:focus:not(:focus-visible) {
  outline: none;
}
.site-footer .company-info .company-links a:focus-visible {
  color: var(--color-orange);
  outline: 2px solid var(--color-yellow);
  outline-offset: 2px;
  border-radius: 4px;
}
.site-footer .footer-navigation {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 1024px) {
  .site-footer .footer-navigation {
    gap: 1.5rem;
  }
}
@media (max-width: 600px) {
  .site-footer .footer-navigation {
    grid-template-columns: 1fr 1fr !important;
    grid-template-rows: auto auto !important;
    gap: 2.5rem 1.5rem;
    text-align: center;
  }
  .site-footer .footer-navigation .menu-section {
    grid-column: 1 !important;
    grid-row: 1 !important;
  }
  .site-footer .footer-navigation .contact-section {
    grid-column: 1/-1 !important;
    grid-row: 2 !important;
  }
  .site-footer .footer-navigation .social-section {
    grid-column: 2 !important;
    grid-row: 1 !important;
  }
}
.site-footer .footer-navigation h5 {
  color: var(--color-light-gray);
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0 0 1rem 0;
}
@media (max-width: 600px) {
  .site-footer .footer-navigation .menu-section,
  .site-footer .footer-navigation .contact-section,
  .site-footer .footer-navigation .social-section {
    text-align: center;
  }
}
.site-footer .footer-navigation .menu-section ul,
.site-footer .footer-navigation .contact-section ul,
.site-footer .footer-navigation .social-section ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-footer .footer-navigation .menu-section ul li,
.site-footer .footer-navigation .contact-section ul li,
.site-footer .footer-navigation .social-section ul li {
  margin-bottom: 0.5rem;
}
.site-footer .footer-navigation .menu-section ul li a,
.site-footer .footer-navigation .contact-section ul li a,
.site-footer .footer-navigation .social-section ul li a {
  color: var(--color-light-gray);
  text-decoration: none;
  transition: color 0.3s ease;
}
.site-footer .footer-navigation .menu-section ul li a:hover,
.site-footer .footer-navigation .contact-section ul li a:hover,
.site-footer .footer-navigation .social-section ul li a:hover {
  color: var(--color-yellow);
}
.site-footer .footer-navigation .menu-section ul li a:focus,
.site-footer .footer-navigation .contact-section ul li a:focus,
.site-footer .footer-navigation .social-section ul li a:focus {
  color: var(--color-orange);
  outline: 2px solid var(--color-yellow);
  outline-offset: 2px;
  border-radius: 4px;
}
.site-footer .footer-navigation .menu-section ul li a:focus:not(:focus-visible),
.site-footer .footer-navigation .contact-section ul li a:focus:not(:focus-visible),
.site-footer .footer-navigation .social-section ul li a:focus:not(:focus-visible) {
  outline: none;
}
.site-footer .footer-navigation .menu-section ul li a:focus-visible,
.site-footer .footer-navigation .contact-section ul li a:focus-visible,
.site-footer .footer-navigation .social-section ul li a:focus-visible {
  color: var(--color-orange);
  outline: 2px solid var(--color-yellow);
  outline-offset: 2px;
  border-radius: 4px;
}
.site-footer .footer-navigation .contact-section address {
  font-style: normal;
  color: var(--color-light-gray);
  line-height: 1.5;
  margin-bottom: 0.5rem;
}
.site-footer .footer-navigation .contact-section a {
  color: var(--color-light-gray);
  text-decoration: none;
  display: block;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}
.site-footer .footer-navigation .contact-section a:hover {
  color: var(--color-yellow);
}
.site-footer .footer-navigation .contact-section a:focus {
  color: var(--color-orange);
  outline: 2px solid var(--color-yellow);
  outline-offset: 2px;
  border-radius: 4px;
}
.site-footer .footer-navigation .contact-section a:focus:not(:focus-visible) {
  outline: none;
}
.site-footer .footer-navigation .contact-section a:focus-visible {
  color: var(--color-orange);
  outline: 2px solid var(--color-yellow);
  outline-offset: 2px;
  border-radius: 4px;
}
@media (max-width: 600px) {
  .site-footer .footer-navigation .contact-section address {
    text-align: center;
  }
}
.site-footer .site-info {
  margin: 2rem auto 0;
  text-align: center;
}
.site-footer .site-info p {
  margin: 0;
  color: var(--color-light-gray);
  font-size: 0.875rem;
}
@media (max-width: 600px) {
  .site-footer .site-info {
    text-align: center;
  }
}

/* ==========================================================================
   Header Styles
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  transition: all 0.3s ease;
  padding: 1rem 0;
}
.site-header.scrolled {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.9) 0%, rgba(52, 52, 52, 0.6) 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.09);
  padding: 0.5rem 0;
}
.site-header .header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.site-header .site-branding .site-logo {
  display: block;
  z-index: 9999;
  position: relative;
  transition: all 0.3s ease;
  transform: scale(1.5);
  transform-origin: top left;
  margin: 0;
  height: 60px;
}
.site-header .site-branding .site-logo img {
  height: 60px;
  width: auto;
}
.site-header.scrolled .site-logo {
  transform: scale(1);
}

.main-navigation {
  position: relative;
}
.main-navigation .menu-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  position: relative;
  z-index: 10001;
  display: block;
  outline: none;
  border-radius: 4px;
  transition: all 0.3s ease;
}
.main-navigation .menu-toggle img {
  width: 40px;
  height: 40px;
  transition: opacity 0.3s ease;
  display: block;
}
.main-navigation .menu-toggle .hamburger-close {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.main-navigation .menu-toggle.active .hamburger-open {
  opacity: 0;
}
.main-navigation .menu-toggle.active .hamburger-close {
  opacity: 1;
}
.main-navigation .menu-toggle:focus {
  outline: 2px solid var(--color-yellow);
  outline-offset: 2px;
  background-color: rgba(255, 193, 7, 0.1);
}
.main-navigation .menu-toggle:focus:not(:focus-visible) {
  outline: none;
  background-color: transparent;
}
.main-navigation .menu-toggle:focus-visible {
  outline: 2px solid var(--color-yellow);
  outline-offset: 2px;
  background-color: rgba(255, 193, 7, 0.1);
}
@media (max-width: 768px) {
  .main-navigation .menu-toggle img {
    width: 35px;
    height: 35px;
  }
}
.main-navigation .menu-dropdown {
  position: fixed;
  top: 0;
  right: 0;
  width: 350px;
  background: var(--color-medium-gray);
  transform: translateY(-150%);
  transition: transform 0.4s ease;
  z-index: 9998;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), 0 8px 32px rgba(0, 0, 0, 0.2);
  padding-top: 100px;
  height: 500px;
}
.main-navigation .menu-dropdown.active {
  transform: translateY(0);
}
@media (min-width: 1660px) {
  .main-navigation .menu-dropdown {
    right: calc((100vw - 1700px) / 2);
  }
}
@media (max-width: 768px) {
  .main-navigation .menu-dropdown {
    left: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    padding-top: 120px;
    border-radius: 0;
  }
}
.main-navigation .menu-dropdown .menu-content {
  padding: 3rem 3rem 2rem;
  text-align: right;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
@media (min-width: 769px) {
  .main-navigation .menu-dropdown .menu-content {
    padding: 2rem 4.5rem 0 1.5rem;
  }
}
.main-navigation .menu-dropdown .menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
  flex-grow: 1;
  position: relative;
  z-index: 1;
}
.main-navigation .menu-dropdown .menu-list li {
  margin-bottom: 1rem;
}
@media (min-width: 769px) {
  .main-navigation .menu-dropdown .menu-list li {
    margin-bottom: 0.75rem;
  }
}
.main-navigation .menu-dropdown .menu-list li a {
  color: var(--color-yellow);
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 700;
  transition: all 0.3s ease;
  display: block;
  padding: 0.5rem 0;
  border-radius: 4px;
}
.main-navigation .menu-dropdown .menu-list li a:hover {
  color: var(--color-orange);
  transform: translateX(-5px);
}
.main-navigation .menu-dropdown .menu-list li a:focus {
  color: var(--color-orange);
  outline: 2px solid var(--color-yellow);
  outline-offset: 2px;
  background-color: rgba(255, 193, 7, 0.1);
}
.main-navigation .menu-dropdown .menu-list li a:focus:not(:focus-visible) {
  outline: none;
  background-color: transparent;
}
.main-navigation .menu-dropdown .menu-list li a:focus-visible {
  color: var(--color-orange);
  outline: 2px solid var(--color-yellow);
  outline-offset: 2px;
  background-color: rgba(255, 193, 7, 0.1);
}
@media (max-width: 768px) {
  .main-navigation .menu-dropdown .menu-list li a {
    font-size: 2rem;
    padding: 0.25rem 0;
    text-align: center;
    transform: none;
  }
  .main-navigation .menu-dropdown .menu-list li a:hover {
    transform: translateY(-2px);
  }
  .main-navigation .menu-dropdown .menu-list li a:focus {
    transform: translateY(-2px);
  }
  .main-navigation .menu-dropdown .menu-list li a:focus-visible {
    transform: translateY(-2px);
  }
}
.main-navigation .menu-dropdown .menu-decorative {
  position: absolute;
  bottom: -140px;
  left: 0;
  right: 0;
  text-align: center;
  margin-top: auto;
}
.main-navigation .menu-dropdown .menu-decorative img {
  max-width: 100%;
  height: auto;
  pointer-events: none;
}
@media (min-width: 769px) {
  .main-navigation .menu-dropdown .menu-decorative img {
    max-width: 100%;
  }
}

/* ==========================================================================
   Component Styles
   ========================================================================== */
.component {
  padding: 4rem 0;
}
@media (max-width: 768px) {
  .component {
    padding: 2rem 0;
  }
}
@media (max-width: 768px) {
  .component:first-of-type {
    padding-top: 6rem;
  }
}
.component:last-of-type {
  padding-bottom: 8rem;
}
.component.bg-light-gray {
  background-color: var(--color-light-gray);
}
.component.bg-dark-gray {
  background-color: var(--color-dark-gray);
}
.component.bg-dark-gray h1, .component.bg-dark-gray h2, .component.bg-dark-gray h3, .component.bg-dark-gray h4, .component.bg-dark-gray h5, .component.bg-dark-gray h6,
.component.bg-dark-gray .intro-title, .component.bg-dark-gray .contact-title, .component.bg-dark-gray .banner-title, .component.bg-dark-gray .team-title, .component.bg-dark-gray .faqs-title, .component.bg-dark-gray .video-title {
  color: #EDEDED !important;
}
.component.bg-dark-gray p, .component.bg-dark-gray span:not(.btn), .component.bg-dark-gray div:not(.btn):not(.form-submit):not(.plus-icon), .component.bg-dark-gray li, .component.bg-dark-gray label,
.component.bg-dark-gray .intro-text, .component.bg-dark-gray .contact-subtitle {
  color: #EDEDED;
}
.component.bg-dark-gray .intro-content, .component.bg-dark-gray .contact-content, .component.bg-dark-gray .team-content, .component.bg-dark-gray .faqs-content, .component.bg-dark-gray .video-content {
  color: #EDEDED !important;
}
.component.bg-dark-gray .contact-form label {
  color: #EDEDED !important;
}
.component.bg-dark-gray .contact-form input, .component.bg-dark-gray .contact-form select, .component.bg-dark-gray .contact-form textarea {
  background-color: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: #999 !important;
  border-radius: 4px;
  transition: all 0.3s ease;
  box-sizing: border-box;
}
.component.bg-dark-gray .contact-form input:focus, .component.bg-dark-gray .contact-form select:focus, .component.bg-dark-gray .contact-form textarea:focus {
  border-color: var(--color-yellow);
  background-color: rgba(255, 255, 255, 0.15);
  box-shadow: inset 0 0 0 2px rgba(255, 193, 7, 0.3);
}
.component.bg-dark-gray .contact-form input:focus:not(:focus-visible), .component.bg-dark-gray .contact-form select:focus:not(:focus-visible), .component.bg-dark-gray .contact-form textarea:focus:not(:focus-visible) {
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: none;
}
.component.bg-dark-gray .contact-form input:focus-visible, .component.bg-dark-gray .contact-form select:focus-visible, .component.bg-dark-gray .contact-form textarea:focus-visible {
  border-color: var(--color-yellow);
  background-color: rgba(255, 255, 255, 0.15);
  outline: 2px solid var(--color-yellow);
  outline-offset: 2px;
  box-shadow: inset 0 0 0 2px rgba(255, 193, 7, 0.3);
}
.component.bg-dark-gray .team-member .member-name {
  color: var(--color-yellow) !important;
}
.component.bg-dark-gray .team-member .member-title,
.component.bg-dark-gray .team-member .member-title-secondary {
  color: #EDEDED !important;
}
.component.bg-dark-gray .faq-item .faq-summary {
  background-color: var(--color-yellow);
  color: var(--color-light-gray) !important;
  border-radius: 4px;
  transition: all 0.3s ease;
}
.component.bg-dark-gray .faq-item .faq-summary:hover {
  background-color: var(--color-orange);
  color: var(--color-white) !important;
}
.component.bg-dark-gray .faq-item .faq-summary:focus {
  background-color: var(--color-orange);
  color: var(--color-white) !important;
  outline: 2px solid var(--color-yellow);
  outline-offset: 2px;
  box-shadow: 0 0 0 3px rgba(255, 193, 7, 0.2);
}
.component.bg-dark-gray .faq-item .faq-summary:focus:not(:focus-visible) {
  outline: none;
  box-shadow: none;
}
.component.bg-dark-gray .faq-item .faq-summary:focus-visible {
  background-color: var(--color-orange);
  color: var(--color-white) !important;
  outline: 2px solid var(--color-yellow);
  outline-offset: 2px;
  box-shadow: 0 0 0 3px rgba(255, 193, 7, 0.2);
}
.component.bg-dark-gray .faq-item .faq-content {
  background-color: var(--color-light-gray) !important;
  color: var(--color-dark-gray) !important;
}
.component.bg-dark-gray .faq-item .faq-content p, .component.bg-dark-gray .faq-item .faq-content li, .component.bg-dark-gray .faq-item .faq-content span {
  color: var(--color-dark-gray) !important;
}
.component.bg-dark-gray .video-title, .component.bg-dark-gray .video-intro {
  color: #EDEDED !important;
}
.component.bg-dark-gray .intro-title, .component.bg-dark-gray .intro-text {
  color: #EDEDED !important;
}
.component.bg-dark-gray .contact-intro-section .contact-title, .component.bg-dark-gray .contact-intro-section .contact-subtitle {
  color: #EDEDED !important;
}

/* ==========================================================================
   Intro Component
   ========================================================================== */
.intro-component .intro-content {
  max-width: 1080px;
  margin: 0 auto;
  text-align: center;
}
.intro-component .intro-content .intro-title {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.intro-component .intro-content .intro-title.animate-in {
  opacity: 1;
  transform: translateY(0);
}
.intro-component .intro-content .intro-text {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition-delay: 0.2s;
}
.intro-component .intro-content .intro-text.animate-in {
  opacity: 1;
  transform: translateY(0);
}
.intro-component .intro-content .intro-cta {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition-delay: 0.4s;
}
.intro-component .intro-content .intro-cta.animate-in {
  opacity: 1;
  transform: translateY(0);
}
.intro-component .intro-content.intro-content-with-cta .intro-title {
  text-align: center;
}
.intro-component .intro-content.intro-content-with-cta .intro-body {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
  text-align: left;
}
@media (max-width: 768px) {
  .intro-component .intro-content.intro-content-with-cta .intro-body {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
}
.intro-component .intro-content.intro-content-with-cta .intro-body .intro-text {
  text-align: right;
}
@media (max-width: 768px) {
  .intro-component .intro-content.intro-content-with-cta .intro-body .intro-text {
    text-align: center;
  }
}
.intro-component .intro-title {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: var(--color-black);
}
@media (max-width: 768px) {
  .intro-component .intro-title {
    font-size: 2rem;
  }
}
.intro-component .intro-text {
  font-size: 1.6rem;
  line-height: 1.5;
  color: var(--color-medium-gray);
}
.intro-component .intro-cta {
  display: flex;
  justify-content: center;
}
@media (max-width: 768px) {
  .intro-component .intro-cta {
    justify-content: center;
  }
}
.intro-component .intro-cta .btn {
  white-space: nowrap;
}

/* ==========================================================================
   Banner Component
   ========================================================================== */
.banner-component {
  position: relative;
  overflow: hidden;
  color: var(--color-white);
}
.banner-component .banner-clipped-content {
  position: relative;
  -webkit-mask-image: url("../images/banner-clip.svg");
          mask-image: url("../images/banner-clip.svg");
  -webkit-mask-position: bottom;
          mask-position: bottom;
  -webkit-mask-size: cover;
          mask-size: cover;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
}
.banner-component .banner-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  overflow: hidden;
}
.banner-component .banner-background img {
  width: 100%;
  height: 120%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: translateY(0);
  will-change: transform;
  -webkit-transform: translateY(0);
  -webkit-backface-visibility: hidden;
  -webkit-perspective: 1000px;
  backface-visibility: hidden;
  perspective: 1000px;
}
.banner-component .banner-background .banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(127deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0) 77%, rgba(0, 0, 0, 0) 100%);
}
.banner-component .banner-content {
  position: relative;
  z-index: 2;
  max-width: 850px;
}
.banner-component .banner-content .banner-title {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.banner-component .banner-content .banner-title.animate-in {
  opacity: 1;
  transform: translateY(0);
}
.banner-component .banner-content .banner-subtitle {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition-delay: 0.3s;
}
.banner-component .banner-content .banner-subtitle.animate-in {
  opacity: 1;
  transform: translateY(0);
}
.banner-component .banner-content .banner-cta {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition-delay: 0.5s;
}
.banner-component .banner-content .banner-cta.animate-in {
  opacity: 1;
  transform: translateY(0);
}
.banner-component .banner-title {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  font-weight: var(--font-weight-bold);
}
@media (max-width: 768px) {
  .banner-component .banner-title {
    font-size: 2.5rem;
  }
}
.banner-component .banner-subtitle {
  font-size: 1.25rem;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .banner-component .banner-subtitle {
    font-size: 1.125rem;
  }
}
.banner-component.banner-simple {
  padding: 0;
  margin: 0 -1px;
  width: 100%;
}
.banner-component.banner-simple .banner-clipped-content {
  display: flex;
  align-items: center;
  padding: 6.5rem 0;
}
.banner-component.banner-simple .banner-content {
  text-align: center;
  margin: 0 auto;
}
.banner-component.banner-simple .banner-title {
  font-size: 5rem;
}
@media (max-width: 768px) {
  .banner-component.banner-simple .banner-title {
    font-size: 2rem;
  }
}
.banner-component.banner-full {
  min-height: 100vh;
  padding: 0;
  margin: 0 -1px;
  width: 100%;
}
.banner-component.banner-full .banner-clipped-content {
  padding: 7rem 0 16rem 0;
  min-height: 100vh;
}
@media (max-width: 768px) {
  .banner-component.banner-full {
    min-height: unset;
  }
  .banner-component.banner-full .banner-clipped-content {
    padding: 5rem 0 8rem 0;
    min-height: unset;
    display: block;
  }
}
.banner-component.banner-full .banner-content {
  max-width: 850px;
  text-align: left;
  margin-left: 0;
}
.banner-component.banner-full .banner-title {
  font-size: 7rem;
  line-height: 0.9;
  margin-bottom: 1.5rem;
  max-width: 800px;
}
@media (max-width: 768px) {
  .banner-component.banner-full .banner-title {
    font-size: 4rem;
  }
}
.banner-component.banner-full .banner-subtitle {
  font-size: 28px;
  margin-bottom: 2rem;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .banner-component.banner-full .banner-subtitle {
    font-size: 1.5rem;
  }
}

/* ==========================================================================
   Contact Component
   ========================================================================== */
.contact-component {
  margin: 4rem 0;
}
.contact-component .contact-content {
  max-width: 1480px;
  margin: 0 auto;
}
.contact-component .contact-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: start;
}
@media (max-width: 768px) {
  .contact-component .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.contact-component .contact-grid-single {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}
@media (max-width: 768px) {
  .contact-component .contact-grid-single {
    gap: 2rem;
  }
}
.contact-component .contact-intro-section .contact-title {
  margin-top: 22px;
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: var(--color-black);
  font-weight: var(--font-weight-bold);
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.contact-component .contact-intro-section .contact-title.animate-in {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 768px) {
  .contact-component .contact-intro-section .contact-title {
    font-size: 2rem;
  }
}
.contact-component .contact-intro-section .contact-subtitle {
  font-size: 1.6rem;
  margin-bottom: 4rem;
  color: var(--color-medium-gray);
  line-height: 1.6;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition-delay: 0.2s;
}
.contact-component .contact-intro-section .contact-subtitle.animate-in {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 768px) {
  .contact-component .contact-intro-section .contact-subtitle {
    margin-bottom: 2rem;
  }
}
.contact-component .contact-form-section .contact-form {
  transition: opacity 0.3s ease, transform 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.3s ease, transform 0.3s ease;
  transition-delay: 0.4s;
}
.contact-component .contact-form-section .contact-form.animate-in {
  opacity: 1;
  transform: translateY(0);
}
.contact-component .contact-form-section .contact-form .form-field {
  margin-bottom: 1.5rem;
}
.contact-component .contact-form-section .contact-form .form-field label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--color-black);
  font-weight: var(--font-weight-light);
  font-size: 0.875rem;
}
.contact-component .contact-form-section .contact-form .form-field input, .contact-component .contact-form-section .contact-form .form-field select, .contact-component .contact-form-section .contact-form .form-field textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #707070;
  border-radius: 8px;
  font-size: 1rem;
  font-family: var(--font-primary);
  transition: all 0.3s ease;
  background-color: var(--color-white);
  box-sizing: border-box;
}
.contact-component .contact-form-section .contact-form .form-field input:focus, .contact-component .contact-form-section .contact-form .form-field select:focus, .contact-component .contact-form-section .contact-form .form-field textarea:focus {
  outline: none;
  border-color: var(--color-yellow);
  box-shadow: inset 0 0 0 2px rgba(255, 193, 7, 0.3);
}
.contact-component .contact-form-section .contact-form .form-field input:focus:not(:focus-visible), .contact-component .contact-form-section .contact-form .form-field select:focus:not(:focus-visible), .contact-component .contact-form-section .contact-form .form-field textarea:focus:not(:focus-visible) {
  border-color: #707070;
  box-shadow: none;
}
.contact-component .contact-form-section .contact-form .form-field input:focus-visible, .contact-component .contact-form-section .contact-form .form-field select:focus-visible, .contact-component .contact-form-section .contact-form .form-field textarea:focus-visible {
  border-color: var(--color-yellow);
  outline: 2px solid var(--color-yellow);
  outline-offset: 2px;
  box-shadow: inset 0 0 0 2px rgba(255, 193, 7, 0.3);
}
.contact-component .contact-form-section .contact-form .form-field textarea {
  resize: vertical;
  min-height: 120px;
}
.contact-component .contact-form-section .contact-form .form-field select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 0.5rem center;
  background-repeat: no-repeat;
  background-size: 1.5em 1.5em;
  padding-right: 2.5rem;
}
.contact-component .contact-form-section .contact-form .recaptcha-field {
  margin-bottom: 1.5rem;
}
.contact-component .contact-form-section .contact-form .form-submit {
  text-align: right;
}
.contact-component .contact-form-section .contact-form .form-submit .btn {
  background-color: var(--color-yellow);
  color: var(--color-black);
  padding: 0.55rem 2.5rem;
  font-size: 1.1rem;
  font-weight: var(--font-weight-medium);
}
.contact-component .contact-form-section .contact-form .form-submit .btn:hover {
  background-color: var(--color-orange);
  color: var(--color-white);
  transform: scale(1.05);
}
.contact-component .contact-form-section .contact-form .form-message {
  margin-bottom: 1rem;
  padding: 1rem;
  border-radius: 8px;
  font-weight: var(--font-weight-medium);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.contact-component .contact-form-section .contact-form .form-message.form-message-success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}
.contact-component .contact-form-section .contact-form .form-message.form-message-error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}
.contact-component .contact-form-section .contact-success-message {
  text-align: center;
  padding: 3rem 2rem;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.contact-component .contact-form-section .contact-success-message .success-content h3 {
  font-size: 2rem;
  font-weight: var(--font-weight-bold);
  color: var(--color-yellow);
  margin-bottom: 1rem;
}
.contact-component .contact-form-section .contact-success-message .success-content p {
  font-size: 1.25rem;
  color: var(--color-medium-gray);
  line-height: 1.6;
}
.contact-component .contact-info-section .contact-info .contact-details .contact-item p {
  margin: 0;
  color: var(--color-medium-gray);
  line-height: 1.6;
  font-size: 1.25rem;
}
.contact-component .contact-info-section .contact-info .contact-details .contact-item a {
  color: var(--color-medium-gray);
  text-decoration: none;
  transition: color 0.3s ease;
}
.contact-component .contact-info-section .contact-info .contact-details .contact-item a:hover {
  text-decoration: underline;
}
.contact-component .contact-info-section .contact-info .contact-details .contact-item .address-link {
  color: var(--color-medium-gray);
  text-decoration: none;
  transition: -webkit-text-decoration 0.3s ease;
  transition: text-decoration 0.3s ease;
  transition: text-decoration 0.3s ease, -webkit-text-decoration 0.3s ease;
}
.contact-component .contact-info-section .contact-info .contact-details .contact-item .address-link:hover {
  text-decoration: underline;
}
.contact-component .contact-info-section .contact-map img {
  width: 100%;
  height: auto;
  display: block;
}
.contact-component .contact-info-section .contact-map p {
  margin: 0;
  color: var(--color-medium-gray);
  text-align: center;
}
.contact-component .contact-info-section .contact-map .map-link {
  display: block;
}
.contact-component .contact-info-section.contact-info-with-map {
  display: grid;
  gap: 3rem;
  align-items: start;
  padding: 4rem 0;
  grid-template-columns: 1fr 3fr;
}
@media (max-width: 1024px) and (min-width: 769px) {
  .contact-component .contact-info-section.contact-info-with-map {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}
@media (max-width: 768px) {
  .contact-component .contact-info-section.contact-info-with-map {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.contact-component .contact-info-section.contact-info-with-map .contact-info {
  margin-bottom: 0;
}

/* ==========================================================================
   Button Styles
   ========================================================================== */
a.btn,
button.btn {
  display: inline-block;
  padding: 0.55rem 1.35rem;
  text-decoration: none;
  border-radius: 8px;
  font-weight: var(--font-weight-medium);
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1.25rem;
  background-color: var(--color-yellow);
  color: var(--color-black);
  line-height: 1.2;
}
a.btn:hover,
button.btn:hover {
  background-color: var(--color-orange);
  color: var(--color-white);
  transform: scale(1.05);
}
a.btn:focus,
button.btn:focus {
  background-color: var(--color-orange);
  color: var(--color-white);
  transform: scale(1.05);
  outline: 3px solid var(--color-yellow);
  outline-offset: 2px;
  box-shadow: 0 0 0 3px rgba(255, 193, 7, 0.3);
}
a.btn:focus:not(:focus-visible),
button.btn:focus:not(:focus-visible) {
  outline: none;
  box-shadow: none;
}
a.btn:focus-visible,
button.btn:focus-visible {
  background-color: var(--color-orange);
  color: var(--color-white);
  transform: scale(1.05);
  outline: 3px solid var(--color-yellow);
  outline-offset: 2px;
  box-shadow: 0 0 0 3px rgba(255, 193, 7, 0.3);
}

/* ==========================================================================
   Scroll Animation Base Styles
   ========================================================================== */
.scroll-animate {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.scroll-animate.animate-in {
  opacity: 1;
  transform: translateY(0);
}
.scroll-animate.divider-animate {
  transform: translateY(-30px);
}
.scroll-animate.divider-animate.animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   Divider Component
   ========================================================================== */
.divider-component {
  padding: 2rem 0;
}
.divider-component .divider-wrapper {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}
.divider-component .divider-wrapper .divider-image {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
}
.divider-component.decorative-divider {
  padding: 0;
  position: relative;
  z-index: -1;
  margin: 0;
  overflow: hidden;
}
.divider-component.decorative-divider .decorative-divider-svg {
  margin: -1px -2px 0;
  width: calc(100% + 4px);
  display: block;
  position: relative;
}
.divider-component.decorative-divider .decorative-divider-svg .divider-svg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
  display: block;
  position: relative;
  z-index: 2;
}
.divider-component.decorative-divider.divider-bottom-white {
  background-color: var(--color-white);
}
.divider-component.decorative-divider.divider-bottom-light-gray {
  background-color: var(--color-light-gray);
}
.divider-component.decorative-divider.divider-bottom-dark-gray {
  background-color: var(--color-dark-gray);
}
@media (max-width: 768px) {
  .divider-component.decorative-divider {
    margin-top: -24px;
  }
  .divider-component.decorative-divider .decorative-divider-svg {
    height: 200px;
  }
}

/* ==========================================================================
   FAQs Component
   ========================================================================== */
.faqs-component .faqs-content {
  max-width: 1400px;
  margin: 0 auto;
}
.faqs-component .faqs-empty {
  text-align: center;
  padding: 3rem 0;
}
.faqs-component .faqs-empty .empty-state-message {
  max-width: 600px;
  margin: 0 auto;
}
.faqs-component .faqs-empty .empty-state-message p {
  font-size: 1.25rem;
  color: var(--color-medium-gray);
  line-height: 1.6;
  margin: 0;
}
.faqs-component .faqs-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--color-black);
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.faqs-component .faqs-title.animate-in {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 768px) {
  .faqs-component .faqs-title {
    font-size: 2rem;
  }
}
.faqs-component .faqs-intro {
  font-size: 1.6rem;
  margin-bottom: 4rem;
  color: var(--color-medium-gray);
  line-height: 1.6;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition-delay: 0.2s;
}
.faqs-component .faqs-intro.animate-in {
  opacity: 1;
  transform: translateY(0);
}
.faqs-component .faqs-list .faq-item {
  margin-bottom: 1rem;
  border-radius: 8px;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.faqs-component .faqs-list .faq-item.animate-in {
  opacity: 1;
  transform: translateY(0);
}
.faqs-component .faqs-list .faq-item:nth-child(1) {
  transition-delay: 0.1s;
}
.faqs-component .faqs-list .faq-item:nth-child(2) {
  transition-delay: 0.2s;
}
.faqs-component .faqs-list .faq-item:nth-child(3) {
  transition-delay: 0.3s;
}
.faqs-component .faqs-list .faq-item:nth-child(4) {
  transition-delay: 0.4s;
}
.faqs-component .faqs-list .faq-item:nth-child(5) {
  transition-delay: 0.5s;
}
.faqs-component .faqs-list .faq-item:nth-child(6) {
  transition-delay: 0.6s;
}
.faqs-component .faqs-list .faq-item:nth-child(7) {
  transition-delay: 0.7s;
}
.faqs-component .faqs-list .faq-item:nth-child(8) {
  transition-delay: 0.8s;
}
.faqs-component .faqs-list .faq-item .faq-summary {
  background-color: var(--color-orange);
  color: white;
  padding: 1rem 1.5rem;
  cursor: pointer;
  font-weight: var(--font-weight-bold);
  font-size: 1.125rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  width: 100%;
  text-align: left;
  overflow: hidden;
  box-sizing: border-box;
  border-radius: 4px;
}
.faqs-component .faqs-list .faq-item .faq-summary:hover {
  background-color: var(--color-yellow);
  color: var(--color-black);
}
.faqs-component .faqs-list .faq-item .faq-summary:focus {
  background-color: var(--color-yellow);
  color: var(--color-black);
  border-color: var(--color-yellow);
  box-shadow: inset 0 0 0 2px rgba(255, 193, 7, 0.3);
}
.faqs-component .faqs-list .faq-item .faq-summary:focus:not(:focus-visible) {
  border-color: transparent;
  box-shadow: none;
}
.faqs-component .faqs-list .faq-item .faq-summary:focus-visible {
  background-color: var(--color-yellow);
  color: var(--color-black);
  border-color: var(--color-yellow);
  box-shadow: inset 0 0 0 2px rgba(255, 193, 7, 0.3);
}
.faqs-component .faqs-list .faq-item .faq-summary .faq-arrow {
  transition: transform 0.3s ease;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-left: 0.5rem;
  transform: rotate(180deg);
}
.faqs-component .faqs-list .faq-item .faq-content {
  background-color: var(--color-light-gray);
  color: var(--color-black);
  line-height: 1.6;
  overflow: hidden;
  padding: 0 2rem;
}
.faqs-component .faqs-list .faq-item .faq-content p {
  margin: 0 0 1rem 0;
  font-size: 1.25rem;
}
.faqs-component .faqs-list .faq-item .faq-content p:last-child {
  margin-bottom: 0;
}
.faqs-component .faqs-list .faq-item .faq-content ul, .faqs-component .faqs-list .faq-item .faq-content ol {
  margin: 0 0 1rem 0;
  padding-left: 1.5rem;
  font-size: 1.25rem;
}
.faqs-component .faqs-list .faq-item .faq-content li {
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
}
.faqs-component .faqs-list .faq-item .faq-content h1, .faqs-component .faqs-list .faq-item .faq-content h2, .faqs-component .faqs-list .faq-item .faq-content h3, .faqs-component .faqs-list .faq-item .faq-content h4, .faqs-component .faqs-list .faq-item .faq-content h5, .faqs-component .faqs-list .faq-item .faq-content h6 {
  font-size: 1.5rem;
  font-weight: var(--font-weight-bold);
  margin: 1.5rem 0 1rem 0;
  color: var(--color-black);
}
.faqs-component .faqs-list .faq-item .faq-content a {
  color: var(--color-orange);
  text-decoration: none;
  transition: color 0.3s ease;
}
.faqs-component .faqs-list .faq-item .faq-content a:hover {
  color: var(--color-yellow);
}
.faqs-component .faqs-list .faq-item[open] .faq-summary .faq-arrow {
  transform: rotate(0deg);
}
.faqs-component .faqs-list .faq-item[open] .faq-content {
  max-height: none;
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.faqs-component.bg-dark-gray .faqs-empty .empty-state-message p {
  color: #EDEDED !important;
}
.faqs-component.bg-dark-gray .faq-item .faq-summary {
  color: var(--color-light-gray) !important;
  border: 2px solid transparent;
}
.faqs-component.bg-dark-gray .faq-item .faq-summary:hover {
  color: var(--color-white) !important;
}
.faqs-component.bg-dark-gray .faq-item .faq-summary:focus {
  color: var(--color-white) !important;
  border-color: var(--color-yellow);
  box-shadow: inset 0 0 0 2px rgba(255, 193, 7, 0.3);
}
.faqs-component.bg-dark-gray .faq-item .faq-summary:focus:not(:focus-visible) {
  border-color: transparent;
  box-shadow: none;
}
.faqs-component.bg-dark-gray .faq-item .faq-summary:focus-visible {
  color: var(--color-white) !important;
  border-color: var(--color-yellow);
  box-shadow: inset 0 0 0 2px rgba(255, 193, 7, 0.3);
}
.faqs-component.bg-dark-gray .faq-item .faq-content {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--color-dark-gray) !important;
}
.faqs-component.bg-dark-gray .faq-item .faq-content p, .faqs-component.bg-dark-gray .faq-item .faq-content li, .faqs-component.bg-dark-gray .faq-item .faq-content span {
  color: var(--color-dark-gray) !important;
}

/* ==========================================================================
   Job Listings Component
   ========================================================================== */
.job-listings-component .job-listings-content {
  max-width: 1400px;
  margin: 0 auto;
}
.job-listings-component .job-listings-empty {
  text-align: center;
  padding: 3rem 0;
}
.job-listings-component .job-listings-empty .empty-state-message {
  max-width: 600px;
  margin: 0 auto;
}
.job-listings-component .job-listings-empty .empty-state-message p {
  font-size: 1.25rem;
  color: var(--color-medium-gray);
  line-height: 1.6;
  margin: 0;
}
.job-listings-component .job-listings-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--color-black);
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.job-listings-component .job-listings-title.animate-in {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 768px) {
  .job-listings-component .job-listings-title {
    font-size: 2rem;
  }
}
.job-listings-component .job-listings-intro {
  font-size: 1.6rem;
  margin-bottom: 4rem;
  color: var(--color-medium-gray);
  line-height: 1.6;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition-delay: 0.2s;
}
.job-listings-component .job-listings-intro.animate-in {
  opacity: 1;
  transform: translateY(0);
}
.job-listings-component .job-listings-list .job-company-group {
  margin-bottom: 3rem;
}
.job-listings-component .job-listings-list .job-company-group:last-child {
  margin-bottom: 0;
}
.job-listings-component .job-listings-list .job-company-group .job-company-title {
  font-size: 2rem;
  font-weight: var(--font-weight-bold);
  color: var(--color-black);
  margin: 0 0 1.5rem 0;
}
@media (max-width: 768px) {
  .job-listings-component .job-listings-list .job-company-group .job-company-title {
    font-size: 1.5rem;
  }
}
.job-listings-component .job-listings-list .job-item {
  margin-bottom: 1rem;
  border-radius: 8px;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.job-listings-component .job-listings-list .job-item.animate-in {
  opacity: 1;
  transform: translateY(0);
}
.job-listings-component .job-listings-list .job-item:nth-child(1) {
  transition-delay: 0.1s;
}
.job-listings-component .job-listings-list .job-item:nth-child(2) {
  transition-delay: 0.2s;
}
.job-listings-component .job-listings-list .job-item:nth-child(3) {
  transition-delay: 0.3s;
}
.job-listings-component .job-listings-list .job-item:nth-child(4) {
  transition-delay: 0.4s;
}
.job-listings-component .job-listings-list .job-item:nth-child(5) {
  transition-delay: 0.5s;
}
.job-listings-component .job-listings-list .job-item:nth-child(6) {
  transition-delay: 0.6s;
}
.job-listings-component .job-listings-list .job-item:nth-child(7) {
  transition-delay: 0.7s;
}
.job-listings-component .job-listings-list .job-item:nth-child(8) {
  transition-delay: 0.8s;
}
.job-listings-component .job-listings-list .job-item .job-summary {
  /* Keep Safari from rendering a default disclosure marker */
  list-style: none;
  padding: 1rem 1.5rem;
  cursor: pointer;
  font-weight: var(--font-weight-bold);
  font-size: 1.125rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  width: 100%;
  text-align: left;
  overflow: hidden;
  box-sizing: border-box;
  border-radius: 4px;
}
.job-listings-component .job-listings-list .job-item .job-summary::-webkit-details-marker {
  display: none;
}
.job-listings-component .job-listings-list .job-item .job-summary .job-info {
  flex: 1;
  display: inline-block;
}
.job-listings-component .job-listings-list .job-item .job-summary .job-title {
  font-weight: var(--font-weight-bold);
}
.job-listings-component .job-listings-list .job-item .job-summary .job-arrow {
  transition: transform 0.3s ease;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-left: 0.5rem;
  transform: rotate(180deg);
}
.job-listings-component .job-listings-list .job-item[data-company=jag-inc] .job-summary {
  background-color: var(--color-dark-gray);
  color: var(--color-white);
}
.job-listings-component .job-listings-list .job-item[data-company=jag-inc] .job-summary:hover, .job-listings-component .job-listings-list .job-item[data-company=jag-inc] .job-summary:focus, .job-listings-component .job-listings-list .job-item[data-company=jag-inc] .job-summary:focus-visible {
  background-color: rgba(52, 52, 52, 0.9);
  color: var(--color-white);
}
.job-listings-component .job-listings-list .job-item[data-company=jag-inc] .job-summary:focus {
  border-color: var(--color-yellow);
  box-shadow: inset 0 0 0 2px rgba(255, 193, 7, 0.3);
}
.job-listings-component .job-listings-list .job-item[data-company=jag-inc] .job-summary:focus:not(:focus-visible) {
  border-color: transparent;
  box-shadow: none;
}
.job-listings-component .job-listings-list .job-item[data-company=jag-inc] .job-summary:focus-visible {
  border-color: var(--color-yellow);
  box-shadow: inset 0 0 0 2px rgba(255, 193, 7, 0.3);
}
.job-listings-component .job-listings-list .job-item[data-company=remsco] .job-summary, .job-listings-component .job-listings-list .job-item[data-company=northeast-remsco-construction] .job-summary {
  background-color: var(--color-yellow);
  color: var(--color-black);
}
.job-listings-component .job-listings-list .job-item[data-company=remsco] .job-summary:hover, .job-listings-component .job-listings-list .job-item[data-company=remsco] .job-summary:focus, .job-listings-component .job-listings-list .job-item[data-company=remsco] .job-summary:focus-visible, .job-listings-component .job-listings-list .job-item[data-company=northeast-remsco-construction] .job-summary:hover, .job-listings-component .job-listings-list .job-item[data-company=northeast-remsco-construction] .job-summary:focus, .job-listings-component .job-listings-list .job-item[data-company=northeast-remsco-construction] .job-summary:focus-visible {
  background-color: rgba(251, 171, 24, 0.9);
  color: var(--color-black);
}
.job-listings-component .job-listings-list .job-item[data-company=remsco] .job-summary:focus, .job-listings-component .job-listings-list .job-item[data-company=northeast-remsco-construction] .job-summary:focus {
  border-color: var(--color-yellow);
  box-shadow: inset 0 0 0 2px rgba(255, 193, 7, 0.3);
}
.job-listings-component .job-listings-list .job-item[data-company=remsco] .job-summary:focus:not(:focus-visible), .job-listings-component .job-listings-list .job-item[data-company=northeast-remsco-construction] .job-summary:focus:not(:focus-visible) {
  border-color: transparent;
  box-shadow: none;
}
.job-listings-component .job-listings-list .job-item[data-company=remsco] .job-summary:focus-visible, .job-listings-component .job-listings-list .job-item[data-company=northeast-remsco-construction] .job-summary:focus-visible {
  border-color: var(--color-yellow);
  box-shadow: inset 0 0 0 2px rgba(255, 193, 7, 0.3);
}
.job-listings-component .job-listings-list .job-item[data-company=caldwell] .job-summary, .job-listings-component .job-listings-list .job-item[data-company=caldwell-marine-international] .job-summary {
  background-color: var(--color-blue);
  color: var(--color-white);
}
.job-listings-component .job-listings-list .job-item[data-company=caldwell] .job-summary:hover, .job-listings-component .job-listings-list .job-item[data-company=caldwell] .job-summary:focus, .job-listings-component .job-listings-list .job-item[data-company=caldwell] .job-summary:focus-visible, .job-listings-component .job-listings-list .job-item[data-company=caldwell-marine-international] .job-summary:hover, .job-listings-component .job-listings-list .job-item[data-company=caldwell-marine-international] .job-summary:focus, .job-listings-component .job-listings-list .job-item[data-company=caldwell-marine-international] .job-summary:focus-visible {
  background-color: rgba(0, 81, 159, 0.9);
  color: var(--color-white);
}
.job-listings-component .job-listings-list .job-item[data-company=caldwell] .job-summary:focus, .job-listings-component .job-listings-list .job-item[data-company=caldwell-marine-international] .job-summary:focus {
  border-color: var(--color-yellow);
  box-shadow: inset 0 0 0 2px rgba(255, 193, 7, 0.3);
}
.job-listings-component .job-listings-list .job-item[data-company=caldwell] .job-summary:focus:not(:focus-visible), .job-listings-component .job-listings-list .job-item[data-company=caldwell-marine-international] .job-summary:focus:not(:focus-visible) {
  border-color: transparent;
  box-shadow: none;
}
.job-listings-component .job-listings-list .job-item[data-company=caldwell] .job-summary:focus-visible, .job-listings-component .job-listings-list .job-item[data-company=caldwell-marine-international] .job-summary:focus-visible {
  border-color: var(--color-yellow);
  box-shadow: inset 0 0 0 2px rgba(255, 193, 7, 0.3);
}
.job-listings-component .job-listings-list .job-item[data-company=huxted-trenchless] .job-summary {
  background-color: var(--color-orange);
  color: var(--color-white);
}
.job-listings-component .job-listings-list .job-item[data-company=huxted-trenchless] .job-summary:hover, .job-listings-component .job-listings-list .job-item[data-company=huxted-trenchless] .job-summary:focus, .job-listings-component .job-listings-list .job-item[data-company=huxted-trenchless] .job-summary:focus-visible {
  background-color: rgba(223, 83, 39, 0.9);
  color: var(--color-white);
}
.job-listings-component .job-listings-list .job-item[data-company=huxted-trenchless] .job-summary:focus {
  border-color: var(--color-yellow);
  box-shadow: inset 0 0 0 2px rgba(255, 193, 7, 0.3);
}
.job-listings-component .job-listings-list .job-item[data-company=huxted-trenchless] .job-summary:focus:not(:focus-visible) {
  border-color: transparent;
  box-shadow: none;
}
.job-listings-component .job-listings-list .job-item[data-company=huxted-trenchless] .job-summary:focus-visible {
  border-color: var(--color-yellow);
  box-shadow: inset 0 0 0 2px rgba(255, 193, 7, 0.3);
}
.job-listings-component .job-listings-list .job-item .job-content {
  background-color: var(--color-light-gray);
  color: var(--color-black);
  line-height: 1.6;
  overflow: hidden;
  padding: 0 2rem;
}
.job-listings-component .job-listings-list .job-item .job-content p {
  margin: 0 0 1rem 0;
  font-size: 1.25rem;
}
.job-listings-component .job-listings-list .job-item .job-content p:last-child {
  margin-bottom: 0;
}
.job-listings-component .job-listings-list .job-item .job-content ul, .job-listings-component .job-listings-list .job-item .job-content ol {
  margin: 0 0 1rem 0;
  padding-left: 1.5rem;
  font-size: 1.25rem;
}
.job-listings-component .job-listings-list .job-item .job-content li {
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
}
.job-listings-component .job-listings-list .job-item .job-content h1, .job-listings-component .job-listings-list .job-item .job-content h2, .job-listings-component .job-listings-list .job-item .job-content h3, .job-listings-component .job-listings-list .job-item .job-content h4, .job-listings-component .job-listings-list .job-item .job-content h5, .job-listings-component .job-listings-list .job-item .job-content h6 {
  font-size: 1.5rem;
  font-weight: var(--font-weight-bold);
  margin: 1.5rem 0 1rem 0;
  color: var(--color-black);
}
.job-listings-component .job-listings-list .job-item .job-content a:not(.btn) {
  color: var(--color-orange);
  text-decoration: none;
  transition: color 0.3s ease;
}
.job-listings-component .job-listings-list .job-item .job-content a:not(.btn):hover {
  color: var(--color-yellow);
}
.job-listings-component .job-listings-list .job-item[open] .job-summary .job-arrow {
  transform: rotate(0deg);
}
.job-listings-component .job-listings-list .job-item[open] .job-content {
  max-height: none;
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.job-listings-component .job-listings-cta {
  text-align: center;
  margin-top: 3rem;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition-delay: 0.6s;
}
.job-listings-component .job-listings-cta.animate-in {
  opacity: 1;
  transform: translateY(0);
}
.job-listings-component .job-listings-cta .btn {
  background-color: var(--color-yellow);
  color: var(--color-black);
  padding: 0.75rem 2rem;
  font-size: 1.125rem;
  font-weight: var(--font-weight-medium);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  line-height: 1.2;
}
.job-listings-component .job-listings-cta .btn:hover {
  background-color: var(--color-orange);
  color: var(--color-white);
  transform: scale(1.05);
}
@media (max-width: 768px) {
  .job-listings-component .job-listings-cta .btn {
    padding: 0.625rem 1.75rem;
    font-size: 1rem;
  }
}
.job-listings-component.bg-dark-gray .job-listings-title {
  color: #EDEDED !important;
}
.job-listings-component.bg-dark-gray .job-listings-intro {
  color: #EDEDED !important;
}
.job-listings-component.bg-dark-gray .job-listings-empty .empty-state-message p {
  color: #EDEDED !important;
}
.job-listings-component.bg-dark-gray .job-company-group .job-company-title {
  color: #EDEDED !important;
}
.job-listings-component.bg-dark-gray .job-item .job-content {
  background-color: var(--color-light-gray);
  color: var(--color-dark-gray) !important;
}
.job-listings-component.bg-dark-gray .job-item .job-content p, .job-listings-component.bg-dark-gray .job-item .job-content li, .job-listings-component.bg-dark-gray .job-item .job-content span {
  color: var(--color-dark-gray) !important;
}

@media print {
  .faq-arrow,
  .job-arrow {
    display: none !important;
  }
}
/* ==========================================================================
   Team Members Component
   ========================================================================== */
.team-members-component .team-content {
  max-width: 1480px;
  margin: 0 auto;
}
.team-members-component .team-empty {
  text-align: center;
  padding: 3rem 0;
}
.team-members-component .team-empty .empty-state-message {
  max-width: 600px;
  margin: 0 auto;
}
.team-members-component .team-empty .empty-state-message p {
  font-size: 1.25rem;
  color: var(--color-medium-gray);
  line-height: 1.6;
  margin: 0;
}
.team-members-component .team-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  text-align: left;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.team-members-component .team-title.animate-in {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 768px) {
  .team-members-component .team-title {
    font-size: 2rem;
  }
}
.team-members-component .team-intro {
  font-size: 1.6rem;
  margin-bottom: 5rem;
  text-align: left;
  line-height: 1.6;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition-delay: 0.2s;
}
.team-members-component .team-intro.animate-in {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 768px) {
  .team-members-component .team-intro {
    margin-bottom: 4rem;
  }
}
.team-members-component .team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem 6rem;
}
.team-members-component .team-grid.team-grid-4-wide {
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem 4rem;
}
@media (max-width: 1024px) {
  .team-members-component .team-grid.team-grid-4-wide {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 3rem;
  }
}
@media (max-width: 1024px) {
  .team-members-component .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 3rem;
  }
}
@media (max-width: 768px) {
  .team-members-component .team-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .team-members-component .team-grid.team-grid-4-wide {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.team-members-component .team-member {
  cursor: pointer;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.team-members-component .team-member.animate-in {
  opacity: 1;
  transform: translateY(0);
}
.team-members-component .team-member:nth-child(1) {
  transition-delay: 0.1s;
}
.team-members-component .team-member:nth-child(2) {
  transition-delay: 0.2s;
}
.team-members-component .team-member:nth-child(3) {
  transition-delay: 0.3s;
}
.team-members-component .team-member:nth-child(4) {
  transition-delay: 0.4s;
}
.team-members-component .team-member:nth-child(5) {
  transition-delay: 0.5s;
}
.team-members-component .team-member:nth-child(6) {
  transition-delay: 0.6s;
}
.team-members-component .team-member:nth-child(7) {
  transition-delay: 0.7s;
}
.team-members-component .team-member:nth-child(8) {
  transition-delay: 0.8s;
}
.team-members-component .team-member:nth-child(9) {
  transition-delay: 0.9s;
}
.team-members-component .team-member .member-image {
  position: relative;
  margin-bottom: 1rem;
  width: 100%;
  height: 450px;
  overflow: hidden;
}
.team-members-component .team-member .member-image img, .team-members-component .team-member .member-image .placeholder-image, .team-members-component .team-member .member-image .placeholder-image svg {
  width: 100%;
  height: 100%;
  border-radius: 0;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.team-members-component .team-member .member-image .member-overlay {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 30px;
  height: 30px;
  background-color: var(--color-yellow);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.team-members-component .team-member .member-image .member-overlay .plus-icon {
  color: var(--color-black);
  font-size: 18px;
  font-weight: var(--font-weight-bold);
}
.team-members-component .team-member:hover .member-image img, .team-members-component .team-member:hover .member-image .placeholder-image, .team-members-component .team-member:hover .member-image .placeholder-image svg {
  transform: scale(1.05);
}
.team-members-component .team-member .member-info .member-name {
  font-size: 1.25rem;
  font-weight: var(--font-weight-bold);
  color: var(--color-yellow);
  margin-bottom: 0.5rem;
}
.team-members-component .team-member .member-info .member-title {
  font-size: 1rem;
  font-weight: var(--font-weight-regular);
  margin-bottom: 0.25rem;
  line-height: 1.4;
}
.team-members-component.bg-dark-gray .team-empty .empty-state-message p {
  color: #EDEDED !important;
}
.team-members-component.bg-dark-gray .team-member .member-name {
  color: var(--color-yellow) !important;
}
.team-members-component.bg-dark-gray .team-member .member-title {
  color: #EDEDED !important;
}

/* ==========================================================================
   Team Modal
   ========================================================================== */
.team-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  visibility: hidden;
  /* Right column container */
}
.team-modal.active {
  visibility: visible;
}
.team-modal .modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: opacity 0.3s ease;
}
.team-modal .modal-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 1620px;
  height: 80vh;
  max-height: 80vh;
  background-color: var(--color-dark-gray);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -webkit-transform: translate(-50%, -50%);
  -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: opacity, transform;
}
@media (max-height: 900px) {
  .team-modal .modal-container {
    height: 90vh;
    max-height: 90vh;
  }
}
@media (max-width: 900px) {
  .team-modal .modal-container {
    width: 95%;
    height: 90vh;
    max-height: 90vh;
  }
}
@media (max-width: 768px) {
  .team-modal .modal-container {
    width: 95%;
    height: 95vh;
    max-height: 95vh;
    top: 50%;
    left: 50%;
  }
}
.team-modal .modal-close {
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  background-color: var(--color-yellow);
  color: var(--color-black);
  border: none;
  border-radius: 0;
  font-size: 24px;
  font-weight: var(--font-weight-bold);
  cursor: pointer;
  z-index: 10001;
  line-height: 1;
  padding: 0;
  transition: background-color 0.3s ease;
}
.team-modal .modal-close:hover {
  background-color: var(--color-orange);
  color: var(--color-white);
}
.team-modal .modal-navigation {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  z-index: 10001;
}
.team-modal .modal-navigation .nav-prev, .team-modal .modal-navigation .nav-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: none;
  border: none;
  cursor: pointer;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  -moz-user-select: none;
       user-select: none;
  -webkit-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.team-modal .modal-navigation .nav-prev img, .team-modal .modal-navigation .nav-next img {
  width: 20px;
  height: 32px;
  filter: brightness(0) invert(1);
  pointer-events: none;
}
.team-modal .modal-navigation .nav-prev:hover, .team-modal .modal-navigation .nav-next:hover {
  opacity: 0.7;
}
.team-modal .modal-navigation .nav-prev:active, .team-modal .modal-navigation .nav-next:active {
  opacity: 0.5;
}
@media (max-width: 768px) {
  .team-modal .modal-navigation .nav-prev, .team-modal .modal-navigation .nav-next {
    width: 40px;
    height: 40px;
  }
  .team-modal .modal-navigation .nav-prev img, .team-modal .modal-navigation .nav-next img {
    width: 16px;
    height: 26px;
  }
}
.team-modal .modal-navigation .nav-prev {
  left: 0;
}
.team-modal .modal-navigation .nav-next {
  right: 0;
}
.team-modal .modal-navigation .nav-next img {
  transform: rotate(180deg);
}
.team-modal .modal-content {
  display: flex;
  flex-direction: row;
  gap: 3rem;
  padding: 6rem;
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  min-height: 0;
  max-height: 100%;
  -webkit-overflow-scrolling: touch; /* Enable smooth scrolling on iOS */
  scrollbar-width: thin; /* Firefox */
  /* Webkit scrollbar styling */
  /* Smooth transitions for content updates */
}
.team-modal .modal-content::-webkit-scrollbar {
  width: 8px;
}
.team-modal .modal-content::-webkit-scrollbar-track {
  background: transparent;
}
.team-modal .modal-content::-webkit-scrollbar-thumb {
  border-radius: 4px;
}
.team-modal .modal-content img, .team-modal .modal-content h2, .team-modal .modal-content div {
  transition: opacity 0.15s ease;
}
@media (max-height: 1000px) {
  .team-modal .modal-content {
    gap: 3rem;
    padding: 3rem;
  }
}
@media (max-width: 1200px) {
  .team-modal .modal-content {
    padding: 3rem;
    gap: 2rem;
  }
}
@media (max-width: 900px) {
  .team-modal .modal-content {
    flex-direction: column;
    gap: 2rem;
    padding: 2.5rem;
  }
}
@media (max-width: 768px) {
  .team-modal .modal-content {
    gap: 1.5rem;
    padding: 2.5rem;
  }
}
.team-modal .modal-left {
  width: 400px;
  flex-shrink: 0;
  flex-grow: 0;
}
@media (max-width: 900px) {
  .team-modal .modal-left {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
.team-modal .modal-left .modal-image {
  text-align: center;
  margin-bottom: 1rem;
}
.team-modal .modal-left .modal-image img {
  width: 100%;
  max-width: 400px;
  height: auto;
}
@media (max-width: 900px) {
  .team-modal .modal-left .modal-image {
    margin-bottom: 0.5rem;
  }
  .team-modal .modal-left .modal-image img {
    max-width: 300px;
  }
}
@media (max-width: 768px) {
  .team-modal .modal-left .modal-image {
    margin-bottom: 0.5rem;
  }
  .team-modal .modal-left .modal-image img {
    max-width: 250px;
  }
}
.team-modal .modal-left .modal-member-info {
  text-align: left;
}
@media (max-width: 900px) {
  .team-modal .modal-left .modal-member-info {
    text-align: center;
    width: 100%;
  }
}
.team-modal .modal-left .modal-member-info h2 {
  font-size: 2rem;
  font-weight: var(--font-weight-bold);
  color: var(--color-yellow);
  margin-top: 0;
  margin-bottom: 0.5rem;
}
@media (max-width: 768px) {
  .team-modal .modal-left .modal-member-info h2 {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
  }
}
.team-modal .modal-left .modal-member-info .modal-title {
  font-size: 1.125rem;
  font-weight: var(--font-weight-medium);
  color: var(--color-white);
}
@media (max-width: 768px) {
  .team-modal .modal-left .modal-member-info .modal-title {
    font-size: 1rem;
  }
}
.team-modal .modal-left .modal-member-info p, .team-modal .modal-left .modal-member-info li, .team-modal .modal-left .modal-member-info ul, .team-modal .modal-left .modal-member-info ol, .team-modal .modal-left .modal-member-info a {
  font-size: 1rem;
  color: var(--color-light-gray);
  margin-bottom: 0.5rem;
  margin-top: 0;
}
@media (max-width: 768px) {
  .team-modal .modal-left .modal-member-info p, .team-modal .modal-left .modal-member-info li, .team-modal .modal-left .modal-member-info ul, .team-modal .modal-left .modal-member-info ol, .team-modal .modal-left .modal-member-info a {
    font-size: 0.875rem;
  }
}
.team-modal .modal-right {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}
.team-modal .modal-bio {
  color: var(--color-white);
  font-size: 1.25rem;
  line-height: 1.6;
}
.team-modal .modal-bio p, .team-modal .modal-bio li, .team-modal .modal-bio a {
  margin-bottom: 1.5rem;
}
.team-modal .modal-bio p:first-child, .team-modal .modal-bio li:first-child, .team-modal .modal-bio a:first-child {
  margin-top: 0;
}
.team-modal .modal-bio p:last-child, .team-modal .modal-bio li:last-child, .team-modal .modal-bio a:last-child {
  margin-bottom: 0;
}
@media (max-width: 900px) {
  .team-modal .modal-bio {
    font-size: 1.125rem;
    line-height: 1.5;
  }
}
@media (max-width: 768px) {
  .team-modal .modal-bio {
    font-size: 1rem;
    line-height: 1.5;
  }
  .team-modal .modal-bio p, .team-modal .modal-bio li, .team-modal .modal-bio a {
    margin-bottom: 1rem;
  }
}

/* ==========================================================================
   Image Component
   ========================================================================== */
.image-component {
  padding: 0;
}
.image-component .image-content {
  max-width: 1480px;
  margin: 0 auto;
}
.image-component .image-empty {
  text-align: center;
  padding: 3rem 0;
}
.image-component .image-empty .empty-state-message {
  max-width: 600px;
  margin: 0 auto;
}
.image-component .image-empty .empty-state-message p {
  font-size: 1.25rem;
  color: var(--color-medium-gray);
  line-height: 1.6;
  margin: 0;
}
.image-component.spacing-top-less .single-image {
  margin-top: -6rem;
}
@media (max-width: 768px) {
  .image-component.spacing-top-less .single-image {
    margin-top: -4rem;
  }
}
.image-component.spacing-top-less .image-group-layout {
  margin-top: -6rem;
}
@media (max-width: 768px) {
  .image-component.spacing-top-less .image-group-layout {
    margin-top: -4rem;
  }
}
.image-component.spacing-top-more .single-image {
  margin-top: 6rem;
}
@media (max-width: 768px) {
  .image-component.spacing-top-more .single-image {
    margin-top: 4rem;
  }
}
.image-component.spacing-top-more .image-group-layout {
  margin-top: 6rem;
}
@media (max-width: 768px) {
  .image-component.spacing-top-more .image-group-layout {
    margin-top: 4rem;
  }
}
.image-component.spacing-bottom-less .single-image {
  margin-bottom: -6rem;
}
@media (max-width: 768px) {
  .image-component.spacing-bottom-less .single-image {
    margin-bottom: -4rem;
  }
}
.image-component.spacing-bottom-less .image-group-layout {
  margin-bottom: -6rem;
}
@media (max-width: 768px) {
  .image-component.spacing-bottom-less .image-group-layout {
    margin-bottom: -4rem;
  }
}
.image-component.spacing-bottom-more .single-image {
  margin-bottom: 6rem;
}
@media (max-width: 768px) {
  .image-component.spacing-bottom-more .single-image {
    margin-bottom: 4rem;
  }
}
.image-component.spacing-bottom-more .image-group-layout {
  margin-bottom: 6rem;
}
@media (max-width: 768px) {
  .image-component.spacing-bottom-more .image-group-layout {
    margin-bottom: 4rem;
  }
}
.image-component .single-image {
  text-align: center;
  margin: 0;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.image-component .single-image.animate-in {
  opacity: 1;
  transform: translateY(0);
}
.image-component .single-image img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}
.image-component .image-group {
  margin: 0;
}
.image-component .image-group .image-group-layout {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .image-component .image-group .image-group-layout {
    gap: 1.5rem;
  }
}
.image-component .image-group .group-image {
  display: flex;
  justify-content: center;
  align-items: center;
}
.image-component .image-group .group-image img {
  max-width: 100%;
  height: auto;
  display: block;
}
.image-component .image-group .group-image-1 {
  order: 1;
}
.image-component .image-group .group-image-2,
.image-component .image-group .group-image-3 {
  order: 2;
}
.image-component .image-group .image-group-layout {
  position: relative;
  height: 480px;
}
.image-component .image-group .image-group-layout:has(.group-image-3) {
  opacity: 1;
}
.image-component .image-group .image-group-layout:has(.group-image-3) .group-image-1 {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%) translateY(-100px);
  z-index: 2;
  transition: transform 0.1s ease-out, opacity 0.1s ease-out;
  opacity: 0;
}
.image-component .image-group .image-group-layout:has(.group-image-3) .group-image-2 {
  position: absolute;
  bottom: 0;
  left: 25%;
  transform: translateX(-50%) translate(-100px, 100px);
  z-index: 1;
  transition: transform 0.1s ease-out, opacity 0.1s ease-out;
  opacity: 0;
}
.image-component .image-group .image-group-layout:has(.group-image-3) .group-image-3 {
  position: absolute;
  bottom: 0;
  right: 25%;
  transform: translateX(50%) translate(100px, 100px);
  z-index: 1;
  transition: transform 0.1s ease-out, opacity 0.1s ease-out;
  opacity: 0;
}
@media (max-width: 900px) {
  .image-component .image-group .image-group-layout:has(.group-image-3) {
    height: 350px;
    max-width: 580px;
  }
  .image-component .image-group .image-group-layout:has(.group-image-3) .group-image img {
    max-width: 250px;
  }
  .image-component .image-group .image-group-layout:has(.group-image-3) .group-image-2 {
    left: 24%;
  }
  .image-component .image-group .image-group-layout:has(.group-image-3) .group-image-3 {
    right: 24%;
  }
}
@media (max-width: 768px) {
  .image-component .image-group .image-group-layout:has(.group-image-3) {
    height: 274px;
    max-width: 420px;
  }
  .image-component .image-group .image-group-layout:has(.group-image-3) .group-image img {
    max-width: 200px;
  }
  .image-component .image-group .image-group-layout:has(.group-image-3) .group-image-2 {
    left: 22%;
  }
  .image-component .image-group .image-group-layout:has(.group-image-3) .group-image-3 {
    right: 22%;
  }
}
@media (max-width: 480px) {
  .image-component .image-group .image-group-layout:has(.group-image-3) {
    height: 180px;
    max-width: 280px;
  }
  .image-component .image-group .image-group-layout:has(.group-image-3) .group-image img {
    max-width: 130px;
  }
  .image-component .image-group .image-group-layout:has(.group-image-3) .group-image-2 {
    left: 20%;
  }
  .image-component .image-group .image-group-layout:has(.group-image-3) .group-image-3 {
    right: 20%;
  }
}

/* ==========================================================================
   Video Component
   ========================================================================== */
.video-component .video-content {
  max-width: 1480px;
  margin: 0 auto;
}
.video-component .video-title {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: var(--color-black);
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.video-component .video-title.animate-in {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 768px) {
  .video-component .video-title {
    font-size: 2rem;
  }
}
.video-component .video-intro {
  font-size: 1.6rem;
  margin-bottom: 2rem;
  color: var(--color-medium-gray);
  line-height: 1.5;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition-delay: 0.2s;
}
.video-component .video-intro.animate-in {
  opacity: 1;
  transform: translateY(0);
}
.video-component .video-wrapper {
  margin-top: 4rem;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition-delay: 0.4s;
}
.video-component .video-wrapper.animate-in {
  opacity: 1;
  transform: translateY(0);
}
.video-component .video-wrapper .video-embed {
  position: relative;
  width: 100%;
  max-width: 1480px;
  margin: 0 auto;
  overflow: hidden;
}
.video-component .video-wrapper .video-embed iframe {
  display: block;
  width: 100%;
  height: 100%;
  max-height: 826px;
  aspect-ratio: 16/9;
}
.video-component .video-wrapper .video-fallback {
  padding: 2rem;
  background-color: var(--color-light-gray);
  border-radius: 8px;
  color: var(--color-medium-gray);
}
.video-component .video-wrapper .video-empty {
  text-align: center;
  padding: 3rem 0;
}
.video-component .video-wrapper .video-empty .empty-state-message {
  max-width: 600px;
  margin: 0 auto;
}
.video-component .video-wrapper .video-empty .empty-state-message p {
  font-size: 1.25rem;
  color: var(--color-medium-gray);
  line-height: 1.6;
  margin: 0;
}

/* ==========================================================================
   Columns Component
   ========================================================================== */
.columns-component .columns-content {
  max-width: 1480px;
  margin: 0 auto;
}
.columns-component .columns-empty {
  text-align: center;
  padding: 3rem 0;
}
.columns-component .columns-empty .empty-state-message {
  max-width: 600px;
  margin: 0 auto;
}
.columns-component .columns-empty .empty-state-message p {
  font-size: 1.25rem;
  color: var(--color-medium-gray);
  line-height: 1.6;
  margin: 0;
}
.columns-component .columns-title {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: var(--color-black);
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.columns-component .columns-title.animate-in {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 768px) {
  .columns-component .columns-title {
    font-size: 2rem;
    max-width: 100%;
  }
}
.columns-component .columns-intro {
  font-size: 1.6rem;
  margin-bottom: 4rem;
  color: var(--color-medium-gray);
  text-align: center;
  line-height: 1.5;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition-delay: 0.2s;
}
.columns-component .columns-intro.animate-in {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 768px) {
  .columns-component .columns-intro {
    margin-bottom: 3rem;
    max-width: 100%;
  }
}
.columns-component .columns-disclaimer {
  text-align: center;
  margin-top: 4rem;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition-delay: 0.8s;
}
.columns-component .columns-disclaimer.animate-in {
  opacity: 1;
  transform: translateY(0);
}
.columns-component .columns-cta {
  text-align: center;
  margin-top: 4rem;
  margin-bottom: -1rem;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition-delay: 0.6s;
}
.columns-component .columns-cta.animate-in {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 768px) {
  .columns-component .columns-cta {
    margin-top: 3rem;
    margin-bottom: -0.5rem;
  }
}
.columns-component .columns-cta .btn {
  background-color: var(--color-yellow);
  color: var(--color-black);
  padding: 0.5rem 1.5rem;
  font-size: 1.25rem;
  font-weight: var(--font-weight-medium);
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  line-height: 1.2;
}
.columns-component .columns-cta .btn:hover {
  background-color: var(--color-orange);
  color: var(--color-white);
  transform: scale(1.05);
}
@media (max-width: 768px) {
  .columns-component .columns-cta .btn {
    padding: 0.375rem 1.25rem;
    font-size: 1rem;
  }
}
.columns-component .columns-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(3, 1fr);
}
.columns-component .columns-grid.column-count-2 {
  grid-template-columns: repeat(2, 1fr);
}
.columns-component .columns-grid.column-count-3 {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 1024px) {
  .columns-component .columns-grid.column-count-3 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  .columns-component .columns-grid.column-count-3 .column-item:last-child {
    grid-column: 1/-1;
  }
}
.columns-component .columns-grid.column-count-4 {
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
@media (max-width: 1200px) {
  .columns-component .columns-grid.column-count-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
.columns-component .columns-grid.column-count-5 {
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
}
@media (max-width: 1280px) {
  .columns-component .columns-grid.column-count-5 {
    grid-template-columns: repeat(6, 1fr);
  }
  .columns-component .columns-grid.column-count-5 .column-item:nth-child(1) {
    grid-column: 1/3;
  }
  .columns-component .columns-grid.column-count-5 .column-item:nth-child(2) {
    grid-column: 3/5;
  }
  .columns-component .columns-grid.column-count-5 .column-item:nth-child(3) {
    grid-column: 5/7;
  }
  .columns-component .columns-grid.column-count-5 .column-item:nth-child(4) {
    grid-column: 1/4;
  }
  .columns-component .columns-grid.column-count-5 .column-item:nth-child(5) {
    grid-column: 4/7;
  }
}
@media (max-width: 768px) {
  .columns-component .columns-grid.column-count-5 {
    grid-template-columns: 1fr !important;
    gap: 1.5rem;
  }
  .columns-component .columns-grid.column-count-5 .column-item:nth-child(1),
  .columns-component .columns-grid.column-count-5 .column-item:nth-child(2),
  .columns-component .columns-grid.column-count-5 .column-item:nth-child(3),
  .columns-component .columns-grid.column-count-5 .column-item:nth-child(4),
  .columns-component .columns-grid.column-count-5 .column-item:nth-child(5) {
    grid-column: auto !important;
    justify-self: auto !important;
    max-width: none !important;
  }
}
@media (max-width: 1024px) {
  .columns-component .columns-grid:not(.column-count-2):not(.column-count-3):not(.column-count-5) {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}
@media (max-width: 768px) {
  .columns-component .columns-grid {
    gap: 1.5rem;
  }
  .columns-component .columns-grid:not(.column-count-5) {
    grid-template-columns: 1fr !important;
  }
  .columns-component .columns-grid.column-count-5 {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
.columns-component .column-item {
  overflow: hidden;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.columns-component .column-item.animate-in {
  opacity: 1;
  transform: translateY(0);
}
.columns-component .column-item:nth-child(1) {
  transition-delay: 0.1s;
}
.columns-component .column-item:nth-child(2) {
  transition-delay: 0.2s;
}
.columns-component .column-item:nth-child(3) {
  transition-delay: 0.3s;
}
.columns-component .column-item:nth-child(4) {
  transition-delay: 0.4s;
}
.columns-component .column-item:nth-child(5) {
  transition-delay: 0.5s;
}
.columns-component .column-item:nth-child(6) {
  transition-delay: 0.6s;
}
.columns-component .column-item:nth-child(7) {
  transition-delay: 0.7s;
}
.columns-component .column-item:nth-child(8) {
  transition-delay: 0.8s;
}
.columns-component .column-content {
  padding: 2rem;
  text-align: center;
}
.columns-component .column-content.left-align {
  text-align: left;
}
.columns-component .column-content.left-align .column-image {
  justify-content: flex-start;
}
.columns-component .column-content.left-align .column-icon {
  justify-content: flex-start;
}
@media (max-width: 768px) {
  .columns-component .column-content {
    padding: 1.5rem;
  }
}
.columns-component .column-icon {
  margin-bottom: 0.75rem;
  display: flex;
  justify-content: center;
}
.columns-component .column-icon img {
  width: 48px;
  height: 48px;
}
@media (max-width: 768px) {
  .columns-component .column-icon {
    margin-bottom: 1rem;
  }
  .columns-component .column-icon img {
    width: 40px;
    height: 40px;
  }
}
.columns-component .column-image {
  margin-bottom: 2rem;
  display: flex;
  justify-content: center;
}
.columns-component .column-image img {
  width: auto;
  height: auto;
  max-width: 100%;
}
.columns-component .column-image.small-image {
  margin-bottom: 1rem;
}
.columns-component .column-image.small-image img {
  max-height: 90px;
}
@media (max-width: 768px) {
  .columns-component .column-image {
    margin-bottom: 1rem;
  }
}
.columns-component .column-text {
  margin-bottom: 2rem;
}
.columns-component .column-text h1, .columns-component .column-text h2, .columns-component .column-text h3, .columns-component .column-text h4, .columns-component .column-text h5, .columns-component .column-text h6 {
  font-weight: var(--font-weight-bold);
  color: var(--color-medium-gray);
  margin: 0 0 2rem 0;
  letter-spacing: 0.5px;
  line-height: 1;
}
@media (max-width: 768px) {
  .columns-component .column-text h1, .columns-component .column-text h2, .columns-component .column-text h3, .columns-component .column-text h4, .columns-component .column-text h5, .columns-component .column-text h6 {
    font-size: 1.25rem;
    margin: 0 0 1rem 0;
  }
}
.columns-component .column-text h1 {
  font-size: 4rem;
}
@media (max-width: 768px) {
  .columns-component .column-text h1 {
    font-size: 2.5rem;
  }
}
.columns-component .column-text h2 {
  font-size: 4rem;
}
@media (max-width: 768px) {
  .columns-component .column-text h2 {
    font-size: 1.75rem;
  }
}
.columns-component .column-text h3 {
  font-size: 2rem;
}
@media (max-width: 768px) {
  .columns-component .column-text h3 {
    font-size: 1.5rem;
  }
}
.columns-component .column-text h4 {
  font-size: 1.75rem;
}
@media (max-width: 768px) {
  .columns-component .column-text h4 {
    font-size: 1.25rem;
  }
}
.columns-component .column-text h5, .columns-component .column-text h6 {
  font-size: 1.5rem;
}
@media (max-width: 768px) {
  .columns-component .column-text h5, .columns-component .column-text h6 {
    font-size: 1.125rem;
  }
}
.columns-component .column-text p {
  font-size: 1.6rem;
  line-height: 1.5;
  color: var(--color-medium-gray);
  margin: 0 0 2rem 0;
}
@media (max-width: 768px) {
  .columns-component .column-text p {
    font-size: 1.25rem;
    margin: 0 0 1rem 0;
  }
}
.columns-component .column-text p:last-child {
  margin-bottom: 0;
}
.columns-component .column-text li {
  font-size: 1.6rem;
  line-height: 1.5;
  color: var(--color-medium-gray);
  margin: 0 0 0.5rem 0;
}
@media (max-width: 768px) {
  .columns-component .column-text li {
    font-size: 1.25rem;
  }
}
.columns-component .column-text li:last-child {
  margin-bottom: 0;
}
.columns-component .column-text ul, .columns-component .column-text ol {
  margin: 0 0 1.5rem 0;
  padding-left: 2rem;
}
@media (max-width: 768px) {
  .columns-component .column-text ul, .columns-component .column-text ol {
    padding-left: 1.25rem;
    margin: 0 0 1rem 0;
  }
}
.columns-component .column-small-text {
  font-size: 0.875rem;
  color: var(--color-medium-gray);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .columns-component .column-small-text {
    font-size: 0.75rem;
    margin-bottom: 1rem;
  }
}
.columns-component .column-cta .btn {
  background-color: var(--color-yellow);
  color: var(--color-black);
  padding: 0.5rem 1.5rem;
  font-size: 1.25rem;
  font-weight: var(--font-weight-medium);
  border-radius: 8px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  line-height: 1.2;
}
.columns-component .column-cta .btn .download-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  filter: brightness(0) saturate(100%);
}
.columns-component .column-cta .btn:hover {
  background-color: var(--color-orange);
  color: var(--color-white);
  transform: scale(1.05);
}
.columns-component .column-cta .btn:hover .download-icon {
  transform: translateY(2px);
}
@media (max-width: 768px) {
  .columns-component .column-cta .btn {
    padding: 0.375rem 1.25rem;
    font-size: 1rem;
    gap: 0.375rem;
  }
  .columns-component .column-cta .btn .download-icon {
    width: 18px;
    height: 18px;
  }
}
.columns-component.bg-dark-gray .columns-title {
  color: #EDEDED !important;
}
.columns-component.bg-dark-gray .columns-intro {
  color: #EDEDED !important;
}
.columns-component.bg-dark-gray .columns-empty .empty-state-message p {
  color: #EDEDED !important;
}
.columns-component.bg-dark-gray .column-item .column-text h1, .columns-component.bg-dark-gray .column-item .column-text h2, .columns-component.bg-dark-gray .column-item .column-text h3, .columns-component.bg-dark-gray .column-item .column-text h4, .columns-component.bg-dark-gray .column-item .column-text h5, .columns-component.bg-dark-gray .column-item .column-text h6 {
  color: #EDEDED !important;
}
.columns-component.bg-dark-gray .column-item .column-text p {
  color: #EDEDED !important;
}
.columns-component.bg-dark-gray .column-item .column-small-text {
  color: #EDEDED !important;
}

/* ==========================================================================
   Scrolling Cards Component
   ========================================================================== */
.scrolling-cards-component .scrolling-content {
  max-width: 1480px;
  margin: 0 auto;
}
.scrolling-cards-component .scrolling-cards-empty {
  text-align: center;
  padding: 3rem 0;
}
.scrolling-cards-component .scrolling-cards-empty .empty-state-message {
  max-width: 600px;
  margin: 0 auto;
}
.scrolling-cards-component .scrolling-cards-empty .empty-state-message p {
  font-size: 1.25rem;
  color: var(--color-medium-gray);
  line-height: 1.6;
  margin: 0;
}
.scrolling-cards-component .scrolling-title {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: var(--color-black);
  text-align: left;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.scrolling-cards-component .scrolling-title.animate-in {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 768px) {
  .scrolling-cards-component .scrolling-title {
    font-size: 2rem;
  }
}
.scrolling-cards-component .scrolling-intro {
  font-size: 1.6rem;
  margin-bottom: 2rem;
  color: var(--color-medium-gray);
  text-align: left;
  line-height: 1.5;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition-delay: 0.2s;
}
.scrolling-cards-component .scrolling-intro.animate-in {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 768px) {
  .scrolling-cards-component .scrolling-intro {
    margin-bottom: 3rem;
  }
}
.scrolling-cards-component .scrolling-cards-wrapper {
  margin-top: 4rem;
  position: relative;
  overflow: hidden;
  padding: 0 2rem;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition-delay: 0.4s;
}
.scrolling-cards-component .scrolling-cards-wrapper.animate-in {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 768px) {
  .scrolling-cards-component .scrolling-cards-wrapper {
    margin: 0 -1rem;
    padding: 0 1rem;
  }
}
.scrolling-cards-component .scrolling-cards {
  display: flex;
  flex-wrap: nowrap;
  will-change: transform;
  position: relative;
  gap: 2rem;
  width: -moz-max-content;
  width: max-content;
  padding-bottom: 1rem;
  transform: translateX(0);
  min-width: 100%;
  margin-left: 25vw;
}
@media (max-width: 1200px) {
  .scrolling-cards-component .scrolling-cards {
    gap: 1.5rem;
    margin-left: 10vw;
  }
}
@media (max-width: 768px) {
  .scrolling-cards-component .scrolling-cards {
    gap: 1.5rem;
    margin-left: 5vw;
  }
}
.scrolling-cards-component .scrolling-card {
  flex: 0 0 600px;
  background-color: #EDEDED;
  border-radius: 12px;
  overflow: hidden;
  padding: 3.5rem;
  flex-shrink: 0;
}
@media (max-width: 1200px) {
  .scrolling-cards-component .scrolling-card {
    flex: 0 0 500px;
  }
}
@media (max-width: 768px) {
  .scrolling-cards-component .scrolling-card {
    height: 600px;
    flex: 0 0 400px;
    padding: 2.25rem;
  }
}
.scrolling-cards-component .scrolling-card .card-image {
  padding-bottom: 2rem;
}
@media (max-width: 768px) {
  .scrolling-cards-component .scrolling-card .card-image {
    padding-bottom: 1rem;
  }
}
.scrolling-cards-component .scrolling-card .card-image img {
  max-width: 300px;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
@media (max-width: 768px) {
  .scrolling-cards-component .scrolling-card .card-content {
    padding-top: 0.75rem;
  }
}
.scrolling-cards-component .scrolling-card .card-content .card-year {
  font-size: 1.5rem;
  font-weight: var(--font-weight-bold);
  color: var(--color-yellow);
  margin-bottom: 1rem;
  display: block;
  clear: both;
}
@media (max-width: 768px) {
  .scrolling-cards-component .scrolling-card .card-content .card-year {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
  }
}
.scrolling-cards-component .scrolling-card .card-content p, .scrolling-cards-component .scrolling-card .card-content li {
  font-size: 1.5rem;
  line-height: 1.5;
  color: var(--color-medium-gray);
  margin: 0 0 1rem 0;
}
.scrolling-cards-component .scrolling-card .card-content p:last-child, .scrolling-cards-component .scrolling-card .card-content li:last-child {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .scrolling-cards-component .scrolling-card .card-content p, .scrolling-cards-component .scrolling-card .card-content li {
    font-size: 1.25rem;
  }
}
.scrolling-cards-component .scrolling-card .card-content h1, .scrolling-cards-component .scrolling-card .card-content h2, .scrolling-cards-component .scrolling-card .card-content h3, .scrolling-cards-component .scrolling-card .card-content h4, .scrolling-cards-component .scrolling-card .card-content h5, .scrolling-cards-component .scrolling-card .card-content h6 {
  font-size: 1.5rem;
  font-weight: var(--font-weight-bold);
  color: var(--color-black);
  margin: 0 0 1rem 0;
}
@media (max-width: 768px) {
  .scrolling-cards-component .scrolling-card .card-content h1, .scrolling-cards-component .scrolling-card .card-content h2, .scrolling-cards-component .scrolling-card .card-content h3, .scrolling-cards-component .scrolling-card .card-content h4, .scrolling-cards-component .scrolling-card .card-content h5, .scrolling-cards-component .scrolling-card .card-content h6 {
    font-size: 1.25rem;
  }
}
.scrolling-cards-component .scrolling-card .card-content .card-year + p {
  margin-bottom: 1.5rem;
}
@media (max-width: 768px) {
  .scrolling-cards-component .scrolling-card .card-content .card-year + p {
    margin-bottom: 1rem;
  }
}
.scrolling-cards-component .scrolling-card .card-content p + h5 {
  margin-top: 6rem;
}
@media (max-width: 768px) {
  .scrolling-cards-component .scrolling-card .card-content p + h5 {
    margin-top: 2rem;
  }
}
.scrolling-cards-component.bg-dark-gray .scrolling-title {
  color: #EDEDED !important;
}
.scrolling-cards-component.bg-dark-gray .scrolling-intro {
  color: #EDEDED !important;
}
.scrolling-cards-component.bg-dark-gray .scrolling-cards-empty .empty-state-message p {
  color: #EDEDED !important;
}
.scrolling-cards-component.bg-dark-gray .scrolling-card {
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.scrolling-cards-component.bg-dark-gray .scrolling-card .card-content .card-year {
  color: var(--color-yellow) !important;
}
.scrolling-cards-component.bg-dark-gray .scrolling-card .card-content p {
  color: #EDEDED !important;
}

/* ==========================================================================
   Back to Top Button
   ========================================================================== */
.back-to-top {
  position: fixed;
  right: 0;
  bottom: 0;
  text-decoration: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  z-index: 1000;
  max-width: 60px;
  max-height: 60px;
}
.back-to-top img {
  width: auto;
  height: auto;
  max-width: 60px;
  max-height: 60px;
}
.back-to-top.show {
  opacity: 1;
  visibility: visible;
}
.back-to-top.footer-locked {
  position: absolute;
  right: 0;
  top: 0;
}
@media (min-width: 1660px) {
  .back-to-top {
    right: calc((100vw - 1560px) / 2);
  }
  .back-to-top.footer-locked {
    right: calc((100vw - 1560px) / 2);
  }
}
@media (max-width: 768px) {
  .back-to-top {
    right: 0;
    bottom: 0;
  }
  .back-to-top img {
    max-width: 50px;
    max-height: 50px;
  }
  .back-to-top.footer-locked {
    right: 0;
  }
}

.post, .page {
  margin: 0;
}

/* ==========================================================================
   Body Copy Component
   ========================================================================== */
.body-copy-component .body-copy-content {
  max-width: 1480px;
  margin: 0 auto;
}
.body-copy-component .body-copy-title {
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.body-copy-component .body-copy-title.animate-in {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 768px) {
  .body-copy-component .body-copy-title {
    margin-bottom: 0;
  }
}
.body-copy-component .body-copy-title h2 {
  font-size: 2.5rem;
  font-weight: var(--font-weight-bold);
  color: var(--color-black);
  margin: 0;
}
@media (max-width: 768px) {
  .body-copy-component .body-copy-title h2 {
    font-size: 2rem;
  }
}
.body-copy-component .body-copy-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 8rem;
  align-items: start;
}
.body-copy-component .body-copy-grid.no-sidebar {
  grid-template-columns: 1fr;
}
@media (max-width: 1024px) {
  .body-copy-component .body-copy-grid {
    gap: 3rem;
  }
}
@media (max-width: 768px) {
  .body-copy-component .body-copy-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.body-copy-component .body-copy-empty {
  text-align: center;
  padding: 3rem 0;
}
.body-copy-component .body-copy-empty .empty-state-message {
  max-width: 600px;
  margin: 0 auto;
}
.body-copy-component .body-copy-empty .empty-state-message p {
  font-size: 1.25rem;
  color: var(--color-medium-gray);
  line-height: 1.6;
  margin: 0;
}
.body-copy-component .body-copy-main {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition-delay: 0.2s;
}
.body-copy-component .body-copy-main.animate-in {
  opacity: 1;
  transform: translateY(0);
}
.body-copy-component .body-copy-main .main-content {
  font-size: 1.6rem;
  line-height: 1.5;
  color: var(--color-medium-gray);
}
.body-copy-component .body-copy-main .main-content h1, .body-copy-component .body-copy-main .main-content h2, .body-copy-component .body-copy-main .main-content h3, .body-copy-component .body-copy-main .main-content h4, .body-copy-component .body-copy-main .main-content h5, .body-copy-component .body-copy-main .main-content h6 {
  color: var(--color-black);
  font-weight: var(--font-weight-bold);
  margin: 2rem 0 1rem 0;
  line-height: 1.5;
}
.body-copy-component .body-copy-main .main-content h1 {
  font-size: 2.5rem;
}
@media (max-width: 768px) {
  .body-copy-component .body-copy-main .main-content h1 {
    font-size: 2rem;
  }
}
.body-copy-component .body-copy-main .main-content h2 {
  font-size: 2.25rem;
}
@media (max-width: 768px) {
  .body-copy-component .body-copy-main .main-content h2 {
    font-size: 1.75rem;
  }
}
.body-copy-component .body-copy-main .main-content h3 {
  font-size: 2rem;
}
@media (max-width: 768px) {
  .body-copy-component .body-copy-main .main-content h3 {
    font-size: 1.5rem;
  }
}
.body-copy-component .body-copy-main .main-content h4 {
  font-size: 1.75rem;
}
@media (max-width: 768px) {
  .body-copy-component .body-copy-main .main-content h4 {
    font-size: 1.25rem;
  }
}
.body-copy-component .body-copy-main .main-content h5, .body-copy-component .body-copy-main .main-content h6 {
  font-size: 1.5rem;
}
@media (max-width: 768px) {
  .body-copy-component .body-copy-main .main-content h5, .body-copy-component .body-copy-main .main-content h6 {
    font-size: 1.125rem;
  }
}
.body-copy-component .body-copy-main .main-content p {
  margin-bottom: 1.5rem;
}
.body-copy-component .body-copy-main .main-content p:first-child {
  margin-top: 0;
}
.body-copy-component .body-copy-main .main-content p:last-child {
  margin-bottom: 0;
}
.body-copy-component .body-copy-main .main-content ul, .body-copy-component .body-copy-main .main-content ol {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}
@media (max-width: 768px) {
  .body-copy-component .body-copy-main .main-content ul, .body-copy-component .body-copy-main .main-content ol {
    padding-left: 1.25rem;
  }
}
.body-copy-component .body-copy-main .main-content li {
  margin-bottom: 0.5rem;
}
.body-copy-component .body-copy-main .main-content li:last-child {
  margin-bottom: 0;
}
.body-copy-component .body-copy-main .main-content a {
  color: var(--color-orange);
  text-decoration: none;
  transition: color 0.3s ease;
}
.body-copy-component .body-copy-main .main-content a:hover {
  color: var(--color-yellow);
}
.body-copy-component .body-copy-main .main-content blockquote {
  margin: 2rem 0;
  padding: 1.5rem 2rem;
  border-left: 4px solid var(--color-yellow);
  background-color: var(--color-light-gray);
  font-style: italic;
  font-size: 1.4rem;
}
@media (max-width: 768px) {
  .body-copy-component .body-copy-main .main-content blockquote {
    padding: 1rem 1.5rem;
    font-size: 1.25rem;
  }
}
.body-copy-component .body-copy-main .main-content img {
  max-width: 100%;
  height: auto;
  margin: 1.5rem 0;
  border-radius: 0;
}
@media (max-width: 768px) {
  .body-copy-component .body-copy-main .main-content img {
    margin: 1rem 0;
  }
}
.body-copy-component .body-copy-main .main-content img.alignleft {
  float: left;
  margin: 0.5rem 1.5rem 0 0;
}
@media (max-width: 768px) {
  .body-copy-component .body-copy-main .main-content img.alignleft {
    float: none;
    display: block;
    margin: 2rem auto;
    text-align: center;
  }
}
.body-copy-component .body-copy-main .main-content img.alignright {
  float: right;
  margin: 0 0 1rem 1.5rem;
  padding: 0.5rem;
}
@media (max-width: 768px) {
  .body-copy-component .body-copy-main .main-content img.alignright {
    float: none;
    display: block;
    margin: 2rem auto;
    text-align: center;
  }
}
.body-copy-component .body-copy-main .main-content img.aligncenter {
  display: block;
  margin: 1.5rem auto;
  padding: 0.5rem;
}
@media (max-width: 768px) {
  .body-copy-component .body-copy-main .main-content img.aligncenter {
    margin: 2rem auto;
  }
}
.body-copy-component .body-copy-main .main-content table {
  width: 100%;
  margin: 1.5rem 0;
  border-collapse: collapse;
  border: 1px solid var(--color-light-gray);
}
.body-copy-component .body-copy-main .main-content table th, .body-copy-component .body-copy-main .main-content table td {
  padding: 0.75rem;
  border: 1px solid var(--color-light-gray);
  text-align: left;
}
.body-copy-component .body-copy-main .main-content table th {
  background-color: var(--color-light-gray);
  font-weight: var(--font-weight-bold);
  color: var(--color-black);
}
.body-copy-component .body-copy-sidebar {
  background-color: var(--color-dark-gray);
  padding: 0;
  border-radius: 12px;
  overflow: hidden;
  position: sticky;
  top: 120px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition-delay: 0.4s;
}
.body-copy-component .body-copy-sidebar.animate-in {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 768px) {
  .body-copy-component .body-copy-sidebar {
    position: static;
    padding: 0;
    max-width: 450px;
    margin: 0 auto;
  }
}
.body-copy-component .body-copy-sidebar .sidebar-image {
  margin-bottom: 0;
  text-align: center;
}
.body-copy-component .body-copy-sidebar .sidebar-image img {
  width: 100%;
  height: auto;
  border-radius: 0;
  display: block;
}
.body-copy-component .body-copy-sidebar .sidebar-decorator {
  text-align: center;
  margin-top: 2rem;
}
.body-copy-component .body-copy-sidebar .sidebar-decorator img {
  max-width: 100%;
  height: auto;
}
.body-copy-component .body-copy-sidebar .sidebar-content {
  font-size: 1rem;
  line-height: 1.5;
  color: var(--color-yellow);
  font-weight: var(--font-weight-bold);
  text-align: center;
  padding: 2rem;
  max-width: 260px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .body-copy-component .body-copy-sidebar .sidebar-content {
    padding: 1.5rem;
  }
}
.body-copy-component .body-copy-sidebar .sidebar-content h1, .body-copy-component .body-copy-sidebar .sidebar-content h2, .body-copy-component .body-copy-sidebar .sidebar-content h3, .body-copy-component .body-copy-sidebar .sidebar-content h4, .body-copy-component .body-copy-sidebar .sidebar-content h5, .body-copy-component .body-copy-sidebar .sidebar-content h6 {
  color: var(--color-yellow);
  font-weight: var(--font-weight-bold);
  margin: 1.5rem 0 1rem 0;
  line-height: 1.5;
}
.body-copy-component .body-copy-sidebar .sidebar-content h1 {
  font-size: 2rem;
}
@media (max-width: 768px) {
  .body-copy-component .body-copy-sidebar .sidebar-content h1 {
    font-size: 1.75rem;
  }
}
.body-copy-component .body-copy-sidebar .sidebar-content h2 {
  font-size: 1.75rem;
}
@media (max-width: 768px) {
  .body-copy-component .body-copy-sidebar .sidebar-content h2 {
    font-size: 1.5rem;
  }
}
.body-copy-component .body-copy-sidebar .sidebar-content h3 {
  font-size: 1.5rem;
}
@media (max-width: 768px) {
  .body-copy-component .body-copy-sidebar .sidebar-content h3 {
    font-size: 1.25rem;
  }
}
.body-copy-component .body-copy-sidebar .sidebar-content h4, .body-copy-component .body-copy-sidebar .sidebar-content h5, .body-copy-component .body-copy-sidebar .sidebar-content h6 {
  font-size: 1.25rem;
}
@media (max-width: 768px) {
  .body-copy-component .body-copy-sidebar .sidebar-content h4, .body-copy-component .body-copy-sidebar .sidebar-content h5, .body-copy-component .body-copy-sidebar .sidebar-content h6 {
    font-size: 1.125rem;
  }
}
.body-copy-component .body-copy-sidebar .sidebar-content p {
  margin-bottom: 1rem;
}
.body-copy-component .body-copy-sidebar .sidebar-content p:first-child {
  margin-top: 0;
}
.body-copy-component .body-copy-sidebar .sidebar-content p:last-child {
  margin-bottom: 0;
}
.body-copy-component .body-copy-sidebar .sidebar-content ul, .body-copy-component .body-copy-sidebar .sidebar-content ol {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}
@media (max-width: 768px) {
  .body-copy-component .body-copy-sidebar .sidebar-content ul, .body-copy-component .body-copy-sidebar .sidebar-content ol {
    padding-left: 1rem;
  }
}
.body-copy-component .body-copy-sidebar .sidebar-content li {
  margin-bottom: 0.5rem;
}
.body-copy-component .body-copy-sidebar .sidebar-content li:last-child {
  margin-bottom: 0;
}
.body-copy-component .body-copy-sidebar .sidebar-content a {
  color: var(--color-yellow);
  text-decoration: none;
  transition: color 0.3s ease;
}
.body-copy-component .body-copy-sidebar .sidebar-content a:hover {
  color: var(--color-orange);
}
.body-copy-component .body-copy-sidebar .sidebar-content blockquote {
  margin: 1.5rem 0;
  padding: 1rem 1.5rem;
  border-left: 4px solid var(--color-yellow);
  background-color: rgba(255, 255, 255, 0.1);
  font-style: italic;
  font-size: 1.2rem;
}
@media (max-width: 768px) {
  .body-copy-component .body-copy-sidebar .sidebar-content blockquote {
    padding: 0.75rem 1rem;
    font-size: 1.125rem;
  }
}
.body-copy-component .body-copy-sidebar .sidebar-content img {
  max-width: 100%;
  height: auto;
  margin: 1rem 0;
  border-radius: 8px;
}
@media (max-width: 768px) {
  .body-copy-component .body-copy-sidebar .sidebar-content img {
    margin: 0.75rem 0;
  }
}
.body-copy-component.bg-dark-gray .body-copy-title h2 {
  color: #EDEDED;
}
.body-copy-component.bg-dark-gray .body-copy-sidebar {
  background-color: var(--color-light-gray);
}
.body-copy-component.bg-dark-gray .body-copy-sidebar .sidebar-content {
  color: var(--color-orange);
}
.body-copy-component.bg-dark-gray .body-copy-sidebar .sidebar-content h1, .body-copy-component.bg-dark-gray .body-copy-sidebar .sidebar-content h2, .body-copy-component.bg-dark-gray .body-copy-sidebar .sidebar-content h3, .body-copy-component.bg-dark-gray .body-copy-sidebar .sidebar-content h4, .body-copy-component.bg-dark-gray .body-copy-sidebar .sidebar-content h5, .body-copy-component.bg-dark-gray .body-copy-sidebar .sidebar-content h6 {
  color: var(--color-orange);
}
.body-copy-component.bg-dark-gray .body-copy-sidebar .sidebar-content a {
  color: var(--color-orange);
}
.body-copy-component.bg-dark-gray .body-copy-sidebar .sidebar-content a:hover {
  color: var(--color-yellow);
}
.body-copy-component.bg-dark-gray .body-copy-sidebar .sidebar-content blockquote {
  background-color: rgba(0, 0, 0, 0.1);
}

/* ==========================================================================
   News & Events Component
   ========================================================================== */
.news-events-component .news-events-content {
  max-width: 1480px;
  margin: 0 auto;
}
.news-events-component .news-events-intro {
  text-align: center;
  margin-bottom: 4rem;
}
@media (max-width: 768px) {
  .news-events-component .news-events-intro {
    margin-bottom: 3rem;
  }
}
.news-events-component .news-events-intro .news-events-title {
  font-size: 2.5rem;
  font-weight: var(--font-weight-bold);
  color: var(--color-black);
  margin: 0;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.news-events-component .news-events-intro .news-events-title.animate-in {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 768px) {
  .news-events-component .news-events-intro .news-events-title {
    font-size: 2rem;
  }
}
.news-events-component .news-section .section-header,
.news-events-component .events-section .section-header {
  margin-bottom: 3rem;
}
.news-events-component .news-section .section-header .section-title,
.news-events-component .events-section .section-header .section-title {
  font-size: 2.5rem;
  font-weight: var(--font-weight-bold);
  color: var(--color-black);
  margin: 0 0 1rem 0;
}
@media (max-width: 768px) {
  .news-events-component .news-section .section-header .section-title,
  .news-events-component .events-section .section-header .section-title {
    font-size: 2rem;
  }
}
.news-events-component .news-section .section-header .section-subtitle,
.news-events-component .events-section .section-header .section-subtitle {
  font-size: 1.6rem;
  color: var(--color-medium-gray);
  margin: 0;
  line-height: 1.5;
}
.news-events-component .news-grid,
.news-events-component .events-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem 5rem;
  margin-bottom: 3rem;
}
@media (max-width: 1024px) {
  .news-events-component .news-grid,
  .news-events-component .events-grid {
    gap: 2rem 3rem;
  }
}
@media (max-width: 768px) {
  .news-events-component .news-grid,
  .news-events-component .events-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.news-events-component .news-empty,
.news-events-component .events-empty {
  text-align: center;
  padding: 3rem 0;
  grid-column: 1/-1;
}
.news-events-component .news-empty .empty-state-message,
.news-events-component .events-empty .empty-state-message {
  max-width: 600px;
  margin: 0 auto;
}
.news-events-component .news-empty .empty-state-message p,
.news-events-component .events-empty .empty-state-message p {
  font-size: 1.25rem;
  color: var(--color-medium-gray);
  line-height: 1.6;
  margin: 0;
}
.news-events-component .news-item,
.news-events-component .event-item {
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.news-events-component .news-item.animate-in,
.news-events-component .event-item.animate-in {
  opacity: 1;
  transform: translateY(0);
}
.news-events-component .news-item:nth-child(1),
.news-events-component .event-item:nth-child(1) {
  transition-delay: 0.1s;
}
.news-events-component .news-item:nth-child(2),
.news-events-component .event-item:nth-child(2) {
  transition-delay: 0.2s;
}
.news-events-component .news-item:nth-child(3),
.news-events-component .event-item:nth-child(3) {
  transition-delay: 0.3s;
}
.news-events-component .news-item:nth-child(4),
.news-events-component .event-item:nth-child(4) {
  transition-delay: 0.4s;
}
.news-events-component .news-item:nth-child(5),
.news-events-component .event-item:nth-child(5) {
  transition-delay: 0.5s;
}
.news-events-component .news-item:nth-child(6),
.news-events-component .event-item:nth-child(6) {
  transition-delay: 0.6s;
}
.news-events-component .news-image,
.news-events-component .event-image {
  position: relative;
  width: 100%;
  height: 320px;
  overflow: hidden;
}
.news-events-component .news-image img,
.news-events-component .event-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.news-events-component .news-image .placeholder-image,
.news-events-component .event-image .placeholder-image {
  width: 100%;
  height: 100%;
  background-color: var(--color-light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-medium-gray);
  font-size: 1.125rem;
}
.news-events-component .news-content,
.news-events-component .event-content {
  padding: 0;
}
@media (max-width: 768px) {
  .news-events-component .news-content,
  .news-events-component .event-content {
    padding: 0;
  }
}
.news-events-component .news-date,
.news-events-component .event-date {
  font-size: 0.875rem;
  color: var(--color-medium-gray);
  margin-bottom: 0.75rem;
  font-weight: var(--font-weight-medium);
}
.news-events-component .news-title,
.news-events-component .event-title {
  font-size: 1.5rem;
  font-weight: var(--font-weight-bold);
  color: var(--color-black);
  margin: 0 0 1rem 0;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .news-events-component .news-title,
  .news-events-component .event-title {
    font-size: 1.25rem;
  }
}
.news-events-component .news-title-link,
.news-events-component .event-title-link {
  text-decoration: none;
}
.news-events-component .news-title-link:hover,
.news-events-component .event-title-link:hover {
  text-decoration: underline;
}
.news-events-component .news-excerpt,
.news-events-component .event-excerpt {
  font-size: 1.125rem;
  color: var(--color-medium-gray);
  line-height: 1.5;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .news-events-component .news-excerpt,
  .news-events-component .event-excerpt {
    font-size: 1rem;
  }
}
.news-events-component .news-link,
.news-events-component .event-link {
  color: var(--color-orange);
  text-decoration: none;
  font-weight: var(--font-weight-medium);
  transition: color 0.3s ease;
  display: inline-block;
}
.news-events-component .news-link:hover,
.news-events-component .event-link:hover {
  color: var(--color-yellow);
}
.news-events-component .section-cta {
  text-align: center;
}
.news-events-component .section-cta .load-more-btn {
  background-color: var(--color-yellow);
  color: var(--color-black);
  padding: 0.75rem 2rem;
  font-size: 1.125rem;
  font-weight: var(--font-weight-medium);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.news-events-component .section-cta .load-more-btn:hover {
  background-color: var(--color-orange);
  color: var(--color-white);
  transform: scale(1.05);
}
.news-events-component .section-cta .load-more-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}
@media (max-width: 768px) {
  .news-events-component .section-cta .load-more-btn {
    padding: 0.625rem 1.75rem;
    font-size: 1rem;
  }
}
.news-events-component.bg-dark-gray .news-events-title {
  color: #EDEDED !important;
}
.news-events-component.bg-dark-gray .section-title {
  color: #EDEDED !important;
}
.news-events-component.bg-dark-gray .section-subtitle {
  color: #EDEDED !important;
}
.news-events-component.bg-dark-gray .news-empty .empty-state-message p,
.news-events-component.bg-dark-gray .events-empty .empty-state-message p {
  color: #EDEDED !important;
}
.news-events-component.bg-dark-gray .news-item,
.news-events-component.bg-dark-gray .event-item {
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.news-events-component.bg-dark-gray .news-item .news-title,
.news-events-component.bg-dark-gray .news-item .event-title,
.news-events-component.bg-dark-gray .event-item .news-title,
.news-events-component.bg-dark-gray .event-item .event-title {
  color: #EDEDED !important;
}
.news-events-component.bg-dark-gray .news-item .news-excerpt,
.news-events-component.bg-dark-gray .news-item .event-excerpt,
.news-events-component.bg-dark-gray .event-item .news-excerpt,
.news-events-component.bg-dark-gray .event-item .event-excerpt {
  color: #EDEDED !important;
}

/* ==========================================================================
   Single News & Events Pages
   ========================================================================== */
.single-news-page,
.single-event-page {
  padding: 4rem 0;
}
@media (max-width: 768px) {
  .single-news-page,
  .single-event-page {
    padding: 2rem 0;
    padding-top: 6rem;
  }
}
.single-news-page .article-banner,
.single-event-page .article-banner {
  position: relative;
  width: 100%;
  overflow: hidden;
  z-index: 1;
  max-width: 1200px;
  margin: -150px auto 0;
}
@media (max-width: 768px) {
  .single-news-page .article-banner,
  .single-event-page .article-banner {
    margin: -100px auto 0;
  }
}
.single-news-page .article-banner img,
.single-event-page .article-banner img {
  width: 100%;
  height: auto;
  display: block;
}
.single-news-page .news-article,
.single-news-page .event-article,
.single-event-page .news-article,
.single-event-page .event-article {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.single-news-page .entry-header,
.single-event-page .entry-header {
  margin-bottom: 3rem;
  text-align: left;
}
@media (max-width: 768px) {
  .single-news-page .entry-header,
  .single-event-page .entry-header {
    margin-bottom: 2rem;
  }
}
.single-news-page .entry-header .breadcrumb,
.single-event-page .entry-header .breadcrumb {
  margin-top: 2rem;
  margin-bottom: 4rem;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.single-news-page .entry-header .breadcrumb.animate-in,
.single-event-page .entry-header .breadcrumb.animate-in {
  opacity: 1;
  transform: translateY(0);
}
.single-news-page .entry-header .breadcrumb a,
.single-event-page .entry-header .breadcrumb a {
  color: var(--color-orange);
  text-decoration: none;
  font-weight: var(--font-weight-light);
  transition: color 0.3s ease;
  font-size: 1.25rem;
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
}
.single-news-page .entry-header .breadcrumb a img,
.single-event-page .entry-header .breadcrumb a img {
  width: 20px;
  height: auto;
  transition: transform 0.3s ease;
}
.single-news-page .entry-header .breadcrumb a:hover,
.single-event-page .entry-header .breadcrumb a:hover {
  color: var(--color-dark-gray);
}
.single-news-page .entry-header .breadcrumb a:hover img,
.single-event-page .entry-header .breadcrumb a:hover img {
  transform: translateX(-3px);
}
.single-news-page .entry-header .entry-title,
.single-event-page .entry-header .entry-title {
  font-size: 3rem;
  font-weight: var(--font-weight-bold);
  color: var(--color-black);
  margin: 0 0 1rem 0;
  line-height: 1.2;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.single-news-page .entry-header .entry-title.animate-in,
.single-event-page .entry-header .entry-title.animate-in {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 768px) {
  .single-news-page .entry-header .entry-title,
  .single-event-page .entry-header .entry-title {
    font-size: 2rem;
  }
}
.single-news-page .entry-header .news-date,
.single-news-page .entry-header .event-date,
.single-event-page .entry-header .news-date,
.single-event-page .entry-header .event-date {
  font-size: 1.125rem;
  color: var(--color-medium-gray);
  font-weight: var(--font-weight-medium);
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition-delay: 0.2s;
}
.single-news-page .entry-header .news-date.animate-in,
.single-news-page .entry-header .event-date.animate-in,
.single-event-page .entry-header .news-date.animate-in,
.single-event-page .entry-header .event-date.animate-in {
  opacity: 1;
  transform: translateY(0);
}
.single-news-page .news-content-layout,
.single-news-page .event-content-layout,
.single-event-page .news-content-layout,
.single-event-page .event-content-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: start;
}
@media (max-width: 1024px) {
  .single-news-page .news-content-layout,
  .single-news-page .event-content-layout,
  .single-event-page .news-content-layout,
  .single-event-page .event-content-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}
@media (max-width: 768px) {
  .single-news-page .news-content-layout,
  .single-news-page .event-content-layout,
  .single-event-page .news-content-layout,
  .single-event-page .event-content-layout {
    gap: 2rem;
  }
}
.single-news-page .news-sidebar .news-image,
.single-news-page .news-sidebar .event-image,
.single-news-page .event-sidebar .news-image,
.single-news-page .event-sidebar .event-image,
.single-event-page .news-sidebar .news-image,
.single-event-page .news-sidebar .event-image,
.single-event-page .event-sidebar .news-image,
.single-event-page .event-sidebar .event-image {
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition-delay: 0.3s;
}
.single-news-page .news-sidebar .news-image.animate-in,
.single-news-page .news-sidebar .event-image.animate-in,
.single-news-page .event-sidebar .news-image.animate-in,
.single-news-page .event-sidebar .event-image.animate-in,
.single-event-page .news-sidebar .news-image.animate-in,
.single-event-page .news-sidebar .event-image.animate-in,
.single-event-page .event-sidebar .news-image.animate-in,
.single-event-page .event-sidebar .event-image.animate-in {
  opacity: 1;
  transform: translateY(0);
}
.single-news-page .news-sidebar .news-image img,
.single-news-page .news-sidebar .event-image img,
.single-news-page .event-sidebar .news-image img,
.single-news-page .event-sidebar .event-image img,
.single-event-page .news-sidebar .news-image img,
.single-event-page .news-sidebar .event-image img,
.single-event-page .event-sidebar .news-image img,
.single-event-page .event-sidebar .event-image img {
  width: 100%;
  height: auto;
  display: block;
}
.single-news-page .news-sidebar .subsidiary-logos,
.single-news-page .event-sidebar .subsidiary-logos,
.single-event-page .news-sidebar .subsidiary-logos,
.single-event-page .event-sidebar .subsidiary-logos {
  margin-bottom: 2rem;
  display: flex;
  gap: 2rem;
}
.single-news-page .news-sidebar .subsidiary-logos .subsidiary-logo,
.single-news-page .event-sidebar .subsidiary-logos .subsidiary-logo,
.single-event-page .news-sidebar .subsidiary-logos .subsidiary-logo,
.single-event-page .event-sidebar .subsidiary-logos .subsidiary-logo {
  margin-bottom: 1rem;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.single-news-page .news-sidebar .subsidiary-logos .subsidiary-logo.animate-in,
.single-news-page .event-sidebar .subsidiary-logos .subsidiary-logo.animate-in,
.single-event-page .news-sidebar .subsidiary-logos .subsidiary-logo.animate-in,
.single-event-page .event-sidebar .subsidiary-logos .subsidiary-logo.animate-in {
  opacity: 1;
  transform: translateY(0);
}
.single-news-page .news-sidebar .subsidiary-logos .subsidiary-logo:nth-child(1),
.single-news-page .event-sidebar .subsidiary-logos .subsidiary-logo:nth-child(1),
.single-event-page .news-sidebar .subsidiary-logos .subsidiary-logo:nth-child(1),
.single-event-page .event-sidebar .subsidiary-logos .subsidiary-logo:nth-child(1) {
  transition-delay: 0.5s;
}
.single-news-page .news-sidebar .subsidiary-logos .subsidiary-logo:nth-child(2),
.single-news-page .event-sidebar .subsidiary-logos .subsidiary-logo:nth-child(2),
.single-event-page .news-sidebar .subsidiary-logos .subsidiary-logo:nth-child(2),
.single-event-page .event-sidebar .subsidiary-logos .subsidiary-logo:nth-child(2) {
  transition-delay: 0.6s;
}
.single-news-page .news-sidebar .subsidiary-logos .subsidiary-logo:nth-child(3),
.single-news-page .event-sidebar .subsidiary-logos .subsidiary-logo:nth-child(3),
.single-event-page .news-sidebar .subsidiary-logos .subsidiary-logo:nth-child(3),
.single-event-page .event-sidebar .subsidiary-logos .subsidiary-logo:nth-child(3) {
  transition-delay: 0.7s;
}
.single-news-page .news-sidebar .subsidiary-logos .subsidiary-logo img,
.single-news-page .event-sidebar .subsidiary-logos .subsidiary-logo img,
.single-event-page .news-sidebar .subsidiary-logos .subsidiary-logo img,
.single-event-page .event-sidebar .subsidiary-logos .subsidiary-logo img {
  max-width: 100px;
  height: auto;
  display: block;
}
.single-news-page .news-sidebar .sidebar-details,
.single-news-page .event-sidebar .sidebar-details,
.single-event-page .news-sidebar .sidebar-details,
.single-event-page .event-sidebar .sidebar-details {
  font-size: 1rem;
  line-height: 1.5;
  color: var(--color-medium-gray);
}
.single-news-page .news-sidebar .sidebar-details h1, .single-news-page .news-sidebar .sidebar-details h2, .single-news-page .news-sidebar .sidebar-details h3, .single-news-page .news-sidebar .sidebar-details h4, .single-news-page .news-sidebar .sidebar-details h5, .single-news-page .news-sidebar .sidebar-details h6,
.single-news-page .event-sidebar .sidebar-details h1,
.single-news-page .event-sidebar .sidebar-details h2,
.single-news-page .event-sidebar .sidebar-details h3,
.single-news-page .event-sidebar .sidebar-details h4,
.single-news-page .event-sidebar .sidebar-details h5,
.single-news-page .event-sidebar .sidebar-details h6,
.single-event-page .news-sidebar .sidebar-details h1,
.single-event-page .news-sidebar .sidebar-details h2,
.single-event-page .news-sidebar .sidebar-details h3,
.single-event-page .news-sidebar .sidebar-details h4,
.single-event-page .news-sidebar .sidebar-details h5,
.single-event-page .news-sidebar .sidebar-details h6,
.single-event-page .event-sidebar .sidebar-details h1,
.single-event-page .event-sidebar .sidebar-details h2,
.single-event-page .event-sidebar .sidebar-details h3,
.single-event-page .event-sidebar .sidebar-details h4,
.single-event-page .event-sidebar .sidebar-details h5,
.single-event-page .event-sidebar .sidebar-details h6 {
  color: var(--color-black);
  font-weight: var(--font-weight-bold);
  margin: 1rem 0 0.5rem 0;
}
.single-news-page .news-sidebar .sidebar-details p,
.single-news-page .event-sidebar .sidebar-details p,
.single-event-page .news-sidebar .sidebar-details p,
.single-event-page .event-sidebar .sidebar-details p {
  margin-bottom: 0.5rem;
}
.single-news-page .news-main-content .news-description,
.single-news-page .news-main-content .event-description,
.single-news-page .event-main-content .news-description,
.single-news-page .event-main-content .event-description,
.single-event-page .news-main-content .news-description,
.single-event-page .news-main-content .event-description,
.single-event-page .event-main-content .news-description,
.single-event-page .event-main-content .event-description {
  font-size: 1.5rem;
  line-height: 1.7;
  color: var(--color-medium-gray);
  margin-bottom: 3rem;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition-delay: 0.4s;
}
.single-news-page .news-main-content .news-description.animate-in,
.single-news-page .news-main-content .event-description.animate-in,
.single-news-page .event-main-content .news-description.animate-in,
.single-news-page .event-main-content .event-description.animate-in,
.single-event-page .news-main-content .news-description.animate-in,
.single-event-page .news-main-content .event-description.animate-in,
.single-event-page .event-main-content .news-description.animate-in,
.single-event-page .event-main-content .event-description.animate-in {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 768px) {
  .single-news-page .news-main-content .news-description,
  .single-news-page .news-main-content .event-description,
  .single-news-page .event-main-content .news-description,
  .single-news-page .event-main-content .event-description,
  .single-event-page .news-main-content .news-description,
  .single-event-page .news-main-content .event-description,
  .single-event-page .event-main-content .news-description,
  .single-event-page .event-main-content .event-description {
    font-size: 1.5rem;
    margin-bottom: 2rem;
  }
}
.single-news-page .news-main-content .news-description h1, .single-news-page .news-main-content .news-description h2, .single-news-page .news-main-content .news-description h3, .single-news-page .news-main-content .news-description h4, .single-news-page .news-main-content .news-description h5, .single-news-page .news-main-content .news-description h6,
.single-news-page .news-main-content .event-description h1,
.single-news-page .news-main-content .event-description h2,
.single-news-page .news-main-content .event-description h3,
.single-news-page .news-main-content .event-description h4,
.single-news-page .news-main-content .event-description h5,
.single-news-page .news-main-content .event-description h6,
.single-news-page .event-main-content .news-description h1,
.single-news-page .event-main-content .news-description h2,
.single-news-page .event-main-content .news-description h3,
.single-news-page .event-main-content .news-description h4,
.single-news-page .event-main-content .news-description h5,
.single-news-page .event-main-content .news-description h6,
.single-news-page .event-main-content .event-description h1,
.single-news-page .event-main-content .event-description h2,
.single-news-page .event-main-content .event-description h3,
.single-news-page .event-main-content .event-description h4,
.single-news-page .event-main-content .event-description h5,
.single-news-page .event-main-content .event-description h6,
.single-event-page .news-main-content .news-description h1,
.single-event-page .news-main-content .news-description h2,
.single-event-page .news-main-content .news-description h3,
.single-event-page .news-main-content .news-description h4,
.single-event-page .news-main-content .news-description h5,
.single-event-page .news-main-content .news-description h6,
.single-event-page .news-main-content .event-description h1,
.single-event-page .news-main-content .event-description h2,
.single-event-page .news-main-content .event-description h3,
.single-event-page .news-main-content .event-description h4,
.single-event-page .news-main-content .event-description h5,
.single-event-page .news-main-content .event-description h6,
.single-event-page .event-main-content .news-description h1,
.single-event-page .event-main-content .news-description h2,
.single-event-page .event-main-content .news-description h3,
.single-event-page .event-main-content .news-description h4,
.single-event-page .event-main-content .news-description h5,
.single-event-page .event-main-content .news-description h6,
.single-event-page .event-main-content .event-description h1,
.single-event-page .event-main-content .event-description h2,
.single-event-page .event-main-content .event-description h3,
.single-event-page .event-main-content .event-description h4,
.single-event-page .event-main-content .event-description h5,
.single-event-page .event-main-content .event-description h6 {
  color: var(--color-black);
  font-weight: var(--font-weight-bold);
  margin: 2rem 0 1rem 0;
}
.single-news-page .news-main-content .news-description p,
.single-news-page .news-main-content .event-description p,
.single-news-page .event-main-content .news-description p,
.single-news-page .event-main-content .event-description p,
.single-event-page .news-main-content .news-description p,
.single-event-page .news-main-content .event-description p,
.single-event-page .event-main-content .news-description p,
.single-event-page .event-main-content .event-description p {
  margin-bottom: 1.5rem;
}
.single-news-page .news-main-content .news-description p:first-child,
.single-news-page .news-main-content .event-description p:first-child,
.single-news-page .event-main-content .news-description p:first-child,
.single-news-page .event-main-content .event-description p:first-child,
.single-event-page .news-main-content .news-description p:first-child,
.single-event-page .news-main-content .event-description p:first-child,
.single-event-page .event-main-content .news-description p:first-child,
.single-event-page .event-main-content .event-description p:first-child {
  margin-top: 0;
}
.single-news-page .news-main-content .news-description p:last-child,
.single-news-page .news-main-content .event-description p:last-child,
.single-news-page .event-main-content .news-description p:last-child,
.single-news-page .event-main-content .event-description p:last-child,
.single-event-page .news-main-content .news-description p:last-child,
.single-event-page .news-main-content .event-description p:last-child,
.single-event-page .event-main-content .news-description p:last-child,
.single-event-page .event-main-content .event-description p:last-child {
  margin-bottom: 0;
}
.single-news-page .news-main-content .news-description ul, .single-news-page .news-main-content .news-description ol,
.single-news-page .news-main-content .event-description ul,
.single-news-page .news-main-content .event-description ol,
.single-news-page .event-main-content .news-description ul,
.single-news-page .event-main-content .news-description ol,
.single-news-page .event-main-content .event-description ul,
.single-news-page .event-main-content .event-description ol,
.single-event-page .news-main-content .news-description ul,
.single-event-page .news-main-content .news-description ol,
.single-event-page .news-main-content .event-description ul,
.single-event-page .news-main-content .event-description ol,
.single-event-page .event-main-content .news-description ul,
.single-event-page .event-main-content .news-description ol,
.single-event-page .event-main-content .event-description ul,
.single-event-page .event-main-content .event-description ol {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}
.single-news-page .news-main-content .news-description li,
.single-news-page .news-main-content .event-description li,
.single-news-page .event-main-content .news-description li,
.single-news-page .event-main-content .event-description li,
.single-event-page .news-main-content .news-description li,
.single-event-page .news-main-content .event-description li,
.single-event-page .event-main-content .news-description li,
.single-event-page .event-main-content .event-description li {
  margin-bottom: 0.5rem;
}
.single-news-page .news-main-content .news-description a,
.single-news-page .news-main-content .event-description a,
.single-news-page .event-main-content .news-description a,
.single-news-page .event-main-content .event-description a,
.single-event-page .news-main-content .news-description a,
.single-event-page .news-main-content .event-description a,
.single-event-page .event-main-content .news-description a,
.single-event-page .event-main-content .event-description a {
  color: var(--color-orange);
  text-decoration: none;
  transition: color 0.3s ease;
}
.single-news-page .news-main-content .news-description a:hover,
.single-news-page .news-main-content .event-description a:hover,
.single-news-page .event-main-content .news-description a:hover,
.single-news-page .event-main-content .event-description a:hover,
.single-event-page .news-main-content .news-description a:hover,
.single-event-page .news-main-content .event-description a:hover,
.single-event-page .event-main-content .news-description a:hover,
.single-event-page .event-main-content .event-description a:hover {
  color: var(--color-yellow);
}
.single-news-page .news-main-content .news-cta,
.single-news-page .news-main-content .event-cta,
.single-news-page .event-main-content .news-cta,
.single-news-page .event-main-content .event-cta,
.single-event-page .news-main-content .news-cta,
.single-event-page .news-main-content .event-cta,
.single-event-page .event-main-content .news-cta,
.single-event-page .event-main-content .event-cta {
  text-align: left;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition-delay: 0.6s;
}
.single-news-page .news-main-content .news-cta.animate-in,
.single-news-page .news-main-content .event-cta.animate-in,
.single-news-page .event-main-content .news-cta.animate-in,
.single-news-page .event-main-content .event-cta.animate-in,
.single-event-page .news-main-content .news-cta.animate-in,
.single-event-page .news-main-content .event-cta.animate-in,
.single-event-page .event-main-content .news-cta.animate-in,
.single-event-page .event-main-content .event-cta.animate-in {
  opacity: 1;
  transform: translateY(0);
}
.single-news-page .news-main-content .news-cta .cta-btn,
.single-news-page .news-main-content .event-cta .cta-btn,
.single-news-page .event-main-content .news-cta .cta-btn,
.single-news-page .event-main-content .event-cta .cta-btn,
.single-event-page .news-main-content .news-cta .cta-btn,
.single-event-page .news-main-content .event-cta .cta-btn,
.single-event-page .event-main-content .news-cta .cta-btn,
.single-event-page .event-main-content .event-cta .cta-btn {
  background-color: var(--color-yellow);
  color: var(--color-black);
  padding: 0.75rem 2rem;
  font-size: 1.125rem;
  font-weight: var(--font-weight-medium);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  line-height: 1.2;
}
.single-news-page .news-main-content .news-cta .cta-btn:hover,
.single-news-page .news-main-content .event-cta .cta-btn:hover,
.single-news-page .event-main-content .news-cta .cta-btn:hover,
.single-news-page .event-main-content .event-cta .cta-btn:hover,
.single-event-page .news-main-content .news-cta .cta-btn:hover,
.single-event-page .news-main-content .event-cta .cta-btn:hover,
.single-event-page .event-main-content .news-cta .cta-btn:hover,
.single-event-page .event-main-content .event-cta .cta-btn:hover {
  background-color: var(--color-orange);
  color: var(--color-white);
  transform: scale(1.05);
}
@media (max-width: 768px) {
  .single-news-page .news-main-content .news-cta .cta-btn,
  .single-news-page .news-main-content .event-cta .cta-btn,
  .single-news-page .event-main-content .news-cta .cta-btn,
  .single-news-page .event-main-content .event-cta .cta-btn,
  .single-event-page .news-main-content .news-cta .cta-btn,
  .single-event-page .news-main-content .event-cta .cta-btn,
  .single-event-page .event-main-content .news-cta .cta-btn,
  .single-event-page .event-main-content .event-cta .cta-btn {
    padding: 0.625rem 1.75rem;
    font-size: 1rem;
  }
}

/* ==========================================================================
   Archive Pages
   ========================================================================== */
.archive-news-page,
.archive-events-page {
  padding: 6rem 0 4rem;
}
@media (max-width: 768px) {
  .archive-news-page,
  .archive-events-page {
    padding: 4rem 0 2rem;
    padding-top: 6rem;
  }
}
.archive-news-page .archive-header,
.archive-events-page .archive-header {
  text-align: center;
  margin-bottom: 4rem;
}
@media (max-width: 768px) {
  .archive-news-page .archive-header,
  .archive-events-page .archive-header {
    margin-bottom: 3rem;
  }
}
.archive-news-page .archive-header .archive-title,
.archive-events-page .archive-header .archive-title {
  font-size: 3rem;
  font-weight: var(--font-weight-bold);
  color: var(--color-black);
  margin: 0 0 1rem 0;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.archive-news-page .archive-header .archive-title.animate-in,
.archive-events-page .archive-header .archive-title.animate-in {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 768px) {
  .archive-news-page .archive-header .archive-title,
  .archive-events-page .archive-header .archive-title {
    font-size: 2rem;
  }
}
.archive-news-page .archive-header .archive-description,
.archive-events-page .archive-header .archive-description {
  font-size: 1.6rem;
  color: var(--color-medium-gray);
  margin: 0;
  line-height: 1.5;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition-delay: 0.2s;
}
.archive-news-page .archive-header .archive-description.animate-in,
.archive-events-page .archive-header .archive-description.animate-in {
  opacity: 1;
  transform: translateY(0);
}
.archive-news-page .news-archive-grid,
.archive-news-page .events-archive-grid,
.archive-events-page .news-archive-grid,
.archive-events-page .events-archive-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem 5rem;
  margin-bottom: 4rem;
}
@media (max-width: 1024px) {
  .archive-news-page .news-archive-grid,
  .archive-news-page .events-archive-grid,
  .archive-events-page .news-archive-grid,
  .archive-events-page .events-archive-grid {
    gap: 2rem 3rem;
  }
}
@media (max-width: 768px) {
  .archive-news-page .news-archive-grid,
  .archive-news-page .events-archive-grid,
  .archive-events-page .news-archive-grid,
  .archive-events-page .events-archive-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.archive-news-page .news-archive-item,
.archive-news-page .event-archive-item,
.archive-events-page .news-archive-item,
.archive-events-page .event-archive-item {
  background-color: var(--color-white);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.3s ease, box-shadow 0.3s ease;
}
.archive-news-page .news-archive-item.animate-in,
.archive-news-page .event-archive-item.animate-in,
.archive-events-page .news-archive-item.animate-in,
.archive-events-page .event-archive-item.animate-in {
  opacity: 1;
  transform: translateY(0);
}
.archive-news-page .news-archive-item:nth-child(1),
.archive-news-page .event-archive-item:nth-child(1),
.archive-events-page .news-archive-item:nth-child(1),
.archive-events-page .event-archive-item:nth-child(1) {
  transition-delay: 0.1s;
}
.archive-news-page .news-archive-item:nth-child(2),
.archive-news-page .event-archive-item:nth-child(2),
.archive-events-page .news-archive-item:nth-child(2),
.archive-events-page .event-archive-item:nth-child(2) {
  transition-delay: 0.2s;
}
.archive-news-page .news-archive-item:nth-child(3),
.archive-news-page .event-archive-item:nth-child(3),
.archive-events-page .news-archive-item:nth-child(3),
.archive-events-page .event-archive-item:nth-child(3) {
  transition-delay: 0.3s;
}
.archive-news-page .news-archive-item:nth-child(4),
.archive-news-page .event-archive-item:nth-child(4),
.archive-events-page .news-archive-item:nth-child(4),
.archive-events-page .event-archive-item:nth-child(4) {
  transition-delay: 0.4s;
}
.archive-news-page .news-archive-item:nth-child(5),
.archive-news-page .event-archive-item:nth-child(5),
.archive-events-page .news-archive-item:nth-child(5),
.archive-events-page .event-archive-item:nth-child(5) {
  transition-delay: 0.5s;
}
.archive-news-page .news-archive-item:nth-child(6),
.archive-news-page .event-archive-item:nth-child(6),
.archive-events-page .news-archive-item:nth-child(6),
.archive-events-page .event-archive-item:nth-child(6) {
  transition-delay: 0.6s;
}
.archive-news-page .news-archive-item:nth-child(7),
.archive-news-page .event-archive-item:nth-child(7),
.archive-events-page .news-archive-item:nth-child(7),
.archive-events-page .event-archive-item:nth-child(7) {
  transition-delay: 0.7s;
}
.archive-news-page .news-archive-item:nth-child(8),
.archive-news-page .event-archive-item:nth-child(8),
.archive-events-page .news-archive-item:nth-child(8),
.archive-events-page .event-archive-item:nth-child(8) {
  transition-delay: 0.8s;
}
.archive-news-page .news-archive-item:nth-child(9),
.archive-news-page .event-archive-item:nth-child(9),
.archive-events-page .news-archive-item:nth-child(9),
.archive-events-page .event-archive-item:nth-child(9) {
  transition-delay: 0.9s;
}
.archive-news-page .news-archive-item:nth-child(10),
.archive-news-page .event-archive-item:nth-child(10),
.archive-events-page .news-archive-item:nth-child(10),
.archive-events-page .event-archive-item:nth-child(10) {
  transition-delay: 1s;
}
.archive-news-page .news-archive-item:hover,
.archive-news-page .event-archive-item:hover,
.archive-events-page .news-archive-item:hover,
.archive-events-page .event-archive-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.archive-news-page .news-image,
.archive-news-page .event-image,
.archive-events-page .news-image,
.archive-events-page .event-image {
  position: relative;
  width: 100%;
  height: 320px;
  overflow: hidden;
}
.archive-news-page .news-image img,
.archive-news-page .event-image img,
.archive-events-page .news-image img,
.archive-events-page .event-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}
.archive-news-page .news-image .placeholder-image,
.archive-news-page .event-image .placeholder-image,
.archive-events-page .news-image .placeholder-image,
.archive-events-page .event-image .placeholder-image {
  width: 100%;
  height: 100%;
  background-color: var(--color-light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-medium-gray);
  font-size: 1.125rem;
}
.archive-news-page .news-image:hover img,
.archive-news-page .event-image:hover img,
.archive-events-page .news-image:hover img,
.archive-events-page .event-image:hover img {
  transform: scale(1.05);
}
.archive-news-page .news-content,
.archive-news-page .event-content,
.archive-events-page .news-content,
.archive-events-page .event-content {
  padding: 2rem;
}
@media (max-width: 768px) {
  .archive-news-page .news-content,
  .archive-news-page .event-content,
  .archive-events-page .news-content,
  .archive-events-page .event-content {
    padding: 1.5rem;
  }
}
.archive-news-page .news-date,
.archive-news-page .event-date,
.archive-events-page .news-date,
.archive-events-page .event-date {
  font-size: 0.875rem;
  color: var(--color-medium-gray);
  margin-bottom: 0;
  font-weight: var(--font-weight-medium);
}
.archive-news-page .news-title,
.archive-news-page .event-title,
.archive-events-page .news-title,
.archive-events-page .event-title {
  font-size: 1.5rem;
  font-weight: var(--font-weight-bold);
  margin: 0 0 1rem 0;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .archive-news-page .news-title,
  .archive-news-page .event-title,
  .archive-events-page .news-title,
  .archive-events-page .event-title {
    font-size: 1.25rem;
  }
}
.archive-news-page .news-title a,
.archive-news-page .event-title a,
.archive-events-page .news-title a,
.archive-events-page .event-title a {
  color: var(--color-black);
  text-decoration: none;
  transition: color 0.3s ease;
}
.archive-news-page .news-title a:hover,
.archive-news-page .event-title a:hover,
.archive-events-page .news-title a:hover,
.archive-events-page .event-title a:hover {
  color: var(--color-orange);
}
.archive-news-page .news-excerpt,
.archive-news-page .event-excerpt,
.archive-events-page .news-excerpt,
.archive-events-page .event-excerpt {
  font-size: 1.125rem;
  color: var(--color-medium-gray);
  line-height: 1.5;
  margin-bottom: 1.5rem;
}
@media (max-width: 768px) {
  .archive-news-page .news-excerpt,
  .archive-news-page .event-excerpt,
  .archive-events-page .news-excerpt,
  .archive-events-page .event-excerpt {
    font-size: 1rem;
  }
}
.archive-news-page .news-link,
.archive-news-page .event-link,
.archive-events-page .news-link,
.archive-events-page .event-link {
  color: var(--color-orange);
  text-decoration: none;
  font-weight: var(--font-weight-medium);
  transition: color 0.3s ease;
  display: inline-block;
}
.archive-news-page .news-link:hover,
.archive-news-page .event-link:hover,
.archive-events-page .news-link:hover,
.archive-events-page .event-link:hover {
  color: var(--color-yellow);
}
.archive-news-page .no-posts,
.archive-events-page .no-posts {
  text-align: center;
  padding: 4rem 2rem;
}
.archive-news-page .no-posts h2,
.archive-events-page .no-posts h2 {
  font-size: 2rem;
  color: var(--color-black);
  margin-bottom: 1rem;
}
.archive-news-page .no-posts p,
.archive-events-page .no-posts p {
  font-size: 1.125rem;
  color: var(--color-medium-gray);
}
.archive-news-page .wp-pagenavi,
.archive-events-page .wp-pagenavi {
  text-align: center;
  margin-top: 3rem;
}
.archive-news-page .wp-pagenavi .pages,
.archive-events-page .wp-pagenavi .pages {
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: var(--color-light-gray);
  border-radius: 8px;
  color: var(--color-medium-gray);
  font-weight: var(--font-weight-medium);
}
.archive-news-page .wp-pagenavi a, .archive-news-page .wp-pagenavi .current,
.archive-events-page .wp-pagenavi a,
.archive-events-page .wp-pagenavi .current {
  display: inline-block;
  padding: 0.5rem 1rem;
  margin: 0 0.25rem;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
}
.archive-news-page .wp-pagenavi a,
.archive-events-page .wp-pagenavi a {
  background-color: var(--color-white);
  color: var(--color-medium-gray);
  border: 1px solid var(--color-light-gray);
}
.archive-news-page .wp-pagenavi a:hover,
.archive-events-page .wp-pagenavi a:hover {
  background-color: var(--color-yellow);
  color: var(--color-black);
}
.archive-news-page .wp-pagenavi .current,
.archive-events-page .wp-pagenavi .current {
  background-color: var(--color-yellow);
  color: var(--color-black);
  font-weight: var(--font-weight-bold);
}
.archive-news-page .wp-pagenavi .previous,
.archive-news-page .wp-pagenavi .next,
.archive-events-page .wp-pagenavi .previous,
.archive-events-page .wp-pagenavi .next {
  font-weight: var(--font-weight-medium);
}

/* ==========================================================================
   News & Events Page
   ========================================================================== */
@media (max-width: 768px) {
  .news-events-page {
    padding-top: 6rem;
  }
}
.news-events-page .news-section .section-header,
.news-events-page .events-section .section-header {
  margin-bottom: 4rem;
}
.news-events-page .news-section .section-header .section-title,
.news-events-page .events-section .section-header .section-title {
  font-size: 2.5rem;
  font-weight: var(--font-weight-bold);
  color: var(--color-black);
  margin: 0 0 1rem 0;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.news-events-page .news-section .section-header .section-title.animate-in,
.news-events-page .events-section .section-header .section-title.animate-in {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 768px) {
  .news-events-page .news-section .section-header .section-title,
  .news-events-page .events-section .section-header .section-title {
    font-size: 2rem;
  }
}
.news-events-page .news-section .section-header .section-subtitle,
.news-events-page .events-section .section-header .section-subtitle {
  font-size: 1.6rem;
  color: var(--color-medium-gray);
  margin: 0;
  line-height: 1.5;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition-delay: 0.2s;
}
.news-events-page .news-section .section-header .section-subtitle.animate-in,
.news-events-page .events-section .section-header .section-subtitle.animate-in {
  opacity: 1;
  transform: translateY(0);
}
.news-events-page .events-section {
  background-color: var(--color-light-gray);
  padding: 6rem 0;
}
@media (max-width: 768px) {
  .news-events-page .events-section {
    padding: 3rem 0;
  }
}
.news-events-page .news-grid,
.news-events-page .events-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem 4rem;
  margin-bottom: 3rem;
}
@media (max-width: 1024px) {
  .news-events-page .news-grid,
  .news-events-page .events-grid {
    gap: 2rem 3rem;
  }
}
@media (max-width: 768px) {
  .news-events-page .news-grid,
  .news-events-page .events-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.news-events-page .news-item,
.news-events-page .event-item {
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.news-events-page .news-item.animate-in,
.news-events-page .event-item.animate-in {
  opacity: 1;
  transform: translateY(0);
}
.news-events-page .news-item:nth-child(1),
.news-events-page .event-item:nth-child(1) {
  transition-delay: 0.1s;
}
.news-events-page .news-item:nth-child(2),
.news-events-page .event-item:nth-child(2) {
  transition-delay: 0.2s;
}
.news-events-page .news-item:nth-child(3),
.news-events-page .event-item:nth-child(3) {
  transition-delay: 0.3s;
}
.news-events-page .news-item:nth-child(4),
.news-events-page .event-item:nth-child(4) {
  transition-delay: 0.4s;
}
.news-events-page .news-item:nth-child(5),
.news-events-page .event-item:nth-child(5) {
  transition-delay: 0.5s;
}
.news-events-page .news-item:nth-child(6),
.news-events-page .event-item:nth-child(6) {
  transition-delay: 0.6s;
}
.news-events-page .news-image,
.news-events-page .event-image {
  position: relative;
  width: 100%;
  height: 320px;
  overflow: hidden;
}
.news-events-page .news-image img,
.news-events-page .event-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.news-events-page .news-image .placeholder-image,
.news-events-page .event-image .placeholder-image {
  width: 100%;
  height: 100%;
  background-color: var(--color-light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-medium-gray);
  font-size: 1.125rem;
}
.news-events-page .news-content,
.news-events-page .event-content {
  padding: 2rem 0;
}
@media (max-width: 768px) {
  .news-events-page .news-content,
  .news-events-page .event-content {
    padding: 1.5rem;
  }
}
.news-events-page .news-date,
.news-events-page .event-date {
  font-size: 0.875rem;
  color: var(--color-medium-gray);
  margin-bottom: 0;
  font-weight: var(--font-weight-light);
}
.news-events-page .news-title,
.news-events-page .event-title {
  font-size: 2rem;
  font-weight: var(--font-weight-bold);
  color: var(--color-black);
  margin: 0 0 1rem 0;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .news-events-page .news-title,
  .news-events-page .event-title {
    font-size: 1.5rem;
  }
}
.news-events-page .news-excerpt,
.news-events-page .event-excerpt {
  font-size: 1.5rem;
  color: var(--color-medium-gray);
  line-height: 1.5;
  margin-bottom: 1.5rem;
}
@media (max-width: 768px) {
  .news-events-page .news-excerpt,
  .news-events-page .event-excerpt {
    font-size: 1.25rem;
  }
}
.news-events-page .news-link,
.news-events-page .event-link {
  color: var(--color-orange);
  text-decoration: none;
  font-weight: var(--font-weight-medium);
  transition: color 0.3s ease;
  display: inline-block;
}
.news-events-page .news-link:hover,
.news-events-page .event-link:hover {
  color: var(--color-yellow);
}
.news-events-page .section-cta {
  margin-bottom: 6rem;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition-delay: 0.4s;
}
.news-events-page .section-cta.animate-in {
  opacity: 1;
  transform: translateY(0);
}
.news-events-page .section-cta .load-more-btn {
  background-color: var(--color-yellow);
  color: var(--color-black);
  padding: 0.75rem 2rem;
  font-size: 1.125rem;
  font-weight: var(--font-weight-medium);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.news-events-page .section-cta .load-more-btn:hover {
  background-color: var(--color-orange);
  color: var(--color-white);
  transform: scale(1.05);
}
.news-events-page .section-cta .load-more-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}
@media (max-width: 768px) {
  .news-events-page .section-cta .load-more-btn {
    padding: 0.625rem 1.75rem;
    font-size: 1rem;
  }
}

.addtoany_content {
  display: flex;
  gap: 4px;
  align-items: center;
}

.addtoany_header {
  margin: 0 !important;
  font-size: 20px;
}

/*--------------------------------------------------------------
# Page Component Utilities
--------------------------------------------------------------*/
/* Reduce bottom margin for components before decorative dividers
--------------------------------------------- */
.reduce_bottom_margin {
  margin-bottom: -6rem;
}

/* ==========================================================================
   404 Error Page Styles
   ========================================================================== */
.error-404-page {
  padding: 8rem 0 4rem;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
@media (max-width: 768px) {
  .error-404-page {
    padding: 6rem 0 3rem;
    min-height: 80vh;
  }
}
.error-404-page .article-banner {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  overflow: hidden;
  z-index: 1;
  max-width: 1200px;
  margin: -150px auto 0;
}
@media (max-width: 768px) {
  .error-404-page .article-banner {
    margin: -100px auto 0;
  }
}
.error-404-page .article-banner img {
  width: 100%;
  height: auto;
  display: block;
}
.error-404-page .container {
  position: relative;
  z-index: 2;
}
.error-404-page .error-404-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.error-404-page .error-404-header {
  margin-bottom: 3rem;
}
.error-404-page .error-404-header .error-404-title {
  font-size: 3.5rem;
  font-weight: var(--font-weight-bold);
  color: var(--color-black);
  margin: 0;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .error-404-page .error-404-header .error-404-title {
    font-size: 2.5rem;
  }
}
.error-404-page .error-404-body .error-404-message {
  font-size: 1.6rem;
  color: var(--color-medium-gray);
  margin-bottom: 3rem;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .error-404-page .error-404-body .error-404-message {
    font-size: 1.25rem;
    margin-bottom: 2rem;
  }
}
.error-404-page .error-404-body .error-404-actions {
  margin-bottom: 3rem;
}
.error-404-page .error-404-body .error-404-actions .btn-primary {
  background-color: var(--color-yellow);
  color: var(--color-black);
  padding: 1rem 2.5rem;
  font-size: 1.25rem;
  font-weight: var(--font-weight-medium);
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  line-height: 1.2;
}
.error-404-page .error-404-body .error-404-actions .btn-primary:hover {
  background-color: var(--color-orange);
  color: var(--color-white);
  transform: scale(1.05);
}
.error-404-page .error-404-body .error-404-actions .btn-primary:focus {
  background-color: var(--color-orange);
  color: var(--color-white);
  transform: scale(1.05);
  outline: 3px solid var(--color-yellow);
  outline-offset: 2px;
  box-shadow: 0 0 0 3px rgba(255, 193, 7, 0.3);
}
.error-404-page .error-404-body .error-404-actions .btn-primary:focus:not(:focus-visible) {
  outline: none;
  box-shadow: none;
}
.error-404-page .error-404-body .error-404-actions .btn-primary:focus-visible {
  background-color: var(--color-orange);
  color: var(--color-white);
  transform: scale(1.05);
  outline: 3px solid var(--color-yellow);
  outline-offset: 2px;
  box-shadow: 0 0 0 3px rgba(255, 193, 7, 0.3);
}
@media (max-width: 768px) {
  .error-404-page .error-404-body .error-404-actions .btn-primary {
    padding: 0.875rem 2rem;
    font-size: 1.125rem;
  }
}

/* ==========================================================================
   Comprehensive Focus States for Accessibility
   ========================================================================== */
/* Global focus styles for all interactive elements */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible, [tabindex]:focus-visible {
  outline: 2px solid var(--color-yellow);
  outline-offset: 2px;
  border-radius: 4px;
}
a:focus:not(:focus-visible), button:focus:not(:focus-visible), input:focus:not(:focus-visible), select:focus:not(:focus-visible), textarea:focus:not(:focus-visible), [tabindex]:focus:not(:focus-visible) {
  outline: none;
}

/* Override for form elements to use border instead of outline */
input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--color-yellow);
  outline-offset: 2px;
  border-color: var(--color-yellow);
  box-shadow: inset 0 0 0 2px rgba(255, 193, 7, 0.3);
}

/* Specific focus styles for different element types */
button:not(.btn):focus-visible {
  background-color: rgba(255, 193, 7, 0.1);
  outline: 2px solid var(--color-yellow);
  outline-offset: 2px;
  border-radius: 4px;
}

/* Form elements focus enhancement */
input[type=text]:focus-visible,
input[type=email]:focus-visible,
input[type=tel]:focus-visible,
input[type=url]:focus-visible,
input[type=password]:focus-visible,
input[type=search]:focus-visible,
input[type=number]:focus-visible,
input[type=date]:focus-visible,
input[type=time]:focus-visible,
input[type=month]:focus-visible,
input[type=week]:focus-visible,
input[type=datetime]:focus-visible,
input[type=datetime-local]:focus-visible,
input[type=color]:focus-visible,
textarea:focus-visible,
select:focus-visible {
  border-color: var(--color-yellow);
  outline: 2px solid var(--color-yellow);
  outline-offset: 2px;
  box-shadow: inset 0 0 0 2px rgba(255, 193, 7, 0.3);
}

/* Link focus states */
a:not(.btn):focus-visible {
  color: var(--color-orange);
  outline: 2px solid var(--color-yellow);
  outline-offset: 2px;
  border-radius: 4px;
  background-color: rgba(255, 193, 7, 0.1);
}

/* Remove default focus styles for mouse users */
*:focus:not(:focus-visible) {
  outline: none;
  box-shadow: none;
}

/* Ensure focus is visible for keyboard users */
*:focus-visible {
  outline: 2px solid var(--color-yellow);
  outline-offset: 2px;
}

/* Summary elements (FAQ and Job Listings) focus states */
summary:focus-visible {
  outline: 2px solid var(--color-yellow);
  outline-offset: 2px;
  border-radius: 4px;
}

a.skip-link:focus-visible {
  background-color: #000000;
}

/* ==========================================================================
   Gravity Forms Styling
   ========================================================================== */
/* Gravity Forms Container */
.gform_wrapper {
  max-width: 100%;
  margin: 0;
  font-family: var(--font-primary);
  /* Form Fields */
  /* Submit Button */
  /* Responsive adjustments */
  /* Form Messages */
  /* Progress Bar */
}
.gform_wrapper .gfield {
  margin-bottom: 0;
  position: relative;
  /* Input Fields */
  /* Textarea */
  /* Select Dropdowns */
  /* Checkboxes and Radio Buttons */
  /* reCAPTCHA */
  /* Required Field Indicator */
  /* Validation Messages */
}
.gform_wrapper .gfield .gfield_label {
  display: block !important;
  margin-bottom: 0.25rem !important;
  color: var(--color-black) !important;
  font-weight: var(--font-weight-light) !important;
  font-size: 0.875rem !important;
}
.gform_wrapper .gfield .gfield_description {
  font-size: 0.75rem !important;
  color: var(--color-medium-gray) !important;
  margin-top: 0.125rem !important;
}
.gform_wrapper .gfield .ginput_container {
  width: 100%;
}
.gform_wrapper .gfield input[type=text],
.gform_wrapper .gfield input[type=email],
.gform_wrapper .gfield input[type=tel],
.gform_wrapper .gfield input[type=url],
.gform_wrapper .gfield input[type=password],
.gform_wrapper .gfield input[type=search],
.gform_wrapper .gfield input[type=number],
.gform_wrapper .gfield input[type=date],
.gform_wrapper .gfield input[type=time],
.gform_wrapper .gfield input[type=month],
.gform_wrapper .gfield input[type=week],
.gform_wrapper .gfield input[type=datetime],
.gform_wrapper .gfield input[type=datetime-local],
.gform_wrapper .gfield input[type=color],
.gform_wrapper .gfield textarea,
.gform_wrapper .gfield select {
  width: 100%;
  padding: 0.5rem;
  border: 1px solid #707070;
  border-radius: 8px;
  font-size: 1rem;
  font-family: var(--font-primary);
  transition: all 0.3s ease;
  background-color: var(--color-white);
  box-sizing: border-box;
  color: var(--color-black);
}
.gform_wrapper .gfield input[type=text]:focus,
.gform_wrapper .gfield input[type=email]:focus,
.gform_wrapper .gfield input[type=tel]:focus,
.gform_wrapper .gfield input[type=url]:focus,
.gform_wrapper .gfield input[type=password]:focus,
.gform_wrapper .gfield input[type=search]:focus,
.gform_wrapper .gfield input[type=number]:focus,
.gform_wrapper .gfield input[type=date]:focus,
.gform_wrapper .gfield input[type=time]:focus,
.gform_wrapper .gfield input[type=month]:focus,
.gform_wrapper .gfield input[type=week]:focus,
.gform_wrapper .gfield input[type=datetime]:focus,
.gform_wrapper .gfield input[type=datetime-local]:focus,
.gform_wrapper .gfield input[type=color]:focus,
.gform_wrapper .gfield textarea:focus,
.gform_wrapper .gfield select:focus {
  outline: none;
  border-color: var(--color-yellow);
  box-shadow: inset 0 0 0 2px rgba(255, 193, 7, 0.3);
}
.gform_wrapper .gfield input[type=text]:focus:not(:focus-visible),
.gform_wrapper .gfield input[type=email]:focus:not(:focus-visible),
.gform_wrapper .gfield input[type=tel]:focus:not(:focus-visible),
.gform_wrapper .gfield input[type=url]:focus:not(:focus-visible),
.gform_wrapper .gfield input[type=password]:focus:not(:focus-visible),
.gform_wrapper .gfield input[type=search]:focus:not(:focus-visible),
.gform_wrapper .gfield input[type=number]:focus:not(:focus-visible),
.gform_wrapper .gfield input[type=date]:focus:not(:focus-visible),
.gform_wrapper .gfield input[type=time]:focus:not(:focus-visible),
.gform_wrapper .gfield input[type=month]:focus:not(:focus-visible),
.gform_wrapper .gfield input[type=week]:focus:not(:focus-visible),
.gform_wrapper .gfield input[type=datetime]:focus:not(:focus-visible),
.gform_wrapper .gfield input[type=datetime-local]:focus:not(:focus-visible),
.gform_wrapper .gfield input[type=color]:focus:not(:focus-visible),
.gform_wrapper .gfield textarea:focus:not(:focus-visible),
.gform_wrapper .gfield select:focus:not(:focus-visible) {
  border-color: #707070;
  box-shadow: none;
}
.gform_wrapper .gfield input[type=text]:focus-visible,
.gform_wrapper .gfield input[type=email]:focus-visible,
.gform_wrapper .gfield input[type=tel]:focus-visible,
.gform_wrapper .gfield input[type=url]:focus-visible,
.gform_wrapper .gfield input[type=password]:focus-visible,
.gform_wrapper .gfield input[type=search]:focus-visible,
.gform_wrapper .gfield input[type=number]:focus-visible,
.gform_wrapper .gfield input[type=date]:focus-visible,
.gform_wrapper .gfield input[type=time]:focus-visible,
.gform_wrapper .gfield input[type=month]:focus-visible,
.gform_wrapper .gfield input[type=week]:focus-visible,
.gform_wrapper .gfield input[type=datetime]:focus-visible,
.gform_wrapper .gfield input[type=datetime-local]:focus-visible,
.gform_wrapper .gfield input[type=color]:focus-visible,
.gform_wrapper .gfield textarea:focus-visible,
.gform_wrapper .gfield select:focus-visible {
  border-color: var(--color-yellow);
  outline: 2px solid var(--color-yellow);
  outline-offset: 2px;
  box-shadow: inset 0 0 0 2px rgba(255, 193, 7, 0.3);
}
.gform_wrapper .gfield input[type=text]::-moz-placeholder, .gform_wrapper .gfield input[type=email]::-moz-placeholder, .gform_wrapper .gfield input[type=tel]::-moz-placeholder, .gform_wrapper .gfield input[type=url]::-moz-placeholder, .gform_wrapper .gfield input[type=password]::-moz-placeholder, .gform_wrapper .gfield input[type=search]::-moz-placeholder, .gform_wrapper .gfield input[type=number]::-moz-placeholder, .gform_wrapper .gfield input[type=date]::-moz-placeholder, .gform_wrapper .gfield input[type=time]::-moz-placeholder, .gform_wrapper .gfield input[type=month]::-moz-placeholder, .gform_wrapper .gfield input[type=week]::-moz-placeholder, .gform_wrapper .gfield input[type=datetime]::-moz-placeholder, .gform_wrapper .gfield input[type=datetime-local]::-moz-placeholder, .gform_wrapper .gfield input[type=color]::-moz-placeholder, .gform_wrapper .gfield textarea::-moz-placeholder, .gform_wrapper .gfield select::-moz-placeholder {
  color: var(--color-medium-gray);
  opacity: 1;
}
.gform_wrapper .gfield input[type=text]::placeholder,
.gform_wrapper .gfield input[type=email]::placeholder,
.gform_wrapper .gfield input[type=tel]::placeholder,
.gform_wrapper .gfield input[type=url]::placeholder,
.gform_wrapper .gfield input[type=password]::placeholder,
.gform_wrapper .gfield input[type=search]::placeholder,
.gform_wrapper .gfield input[type=number]::placeholder,
.gform_wrapper .gfield input[type=date]::placeholder,
.gform_wrapper .gfield input[type=time]::placeholder,
.gform_wrapper .gfield input[type=month]::placeholder,
.gform_wrapper .gfield input[type=week]::placeholder,
.gform_wrapper .gfield input[type=datetime]::placeholder,
.gform_wrapper .gfield input[type=datetime-local]::placeholder,
.gform_wrapper .gfield input[type=color]::placeholder,
.gform_wrapper .gfield textarea::placeholder,
.gform_wrapper .gfield select::placeholder {
  color: var(--color-medium-gray);
  opacity: 1;
}
.gform_wrapper .gfield textarea {
  resize: vertical;
  min-height: 100px;
}
.gform_wrapper .gfield select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 0.5rem center;
  background-repeat: no-repeat;
  background-size: 1.5em 1.5em;
  padding-right: 2.5rem;
}
.gform_wrapper .gfield .gfield_checkbox .gchoice,
.gform_wrapper .gfield .gfield_radio .gchoice {
  margin-bottom: 0.25rem;
}
.gform_wrapper .gfield .gfield_checkbox .gchoice input[type=checkbox],
.gform_wrapper .gfield .gfield_checkbox .gchoice input[type=radio],
.gform_wrapper .gfield .gfield_radio .gchoice input[type=checkbox],
.gform_wrapper .gfield .gfield_radio .gchoice input[type=radio] {
  margin-right: 0.5rem;
  width: auto;
  height: auto;
}
.gform_wrapper .gfield .gfield_checkbox .gchoice label,
.gform_wrapper .gfield .gfield_radio .gchoice label {
  font-weight: var(--font-weight-light) !important;
  font-size: 1rem !important;
  color: var(--color-black) !important;
  margin: 0 !important;
  cursor: pointer !important;
}
.gform_wrapper .gfield.gfield--type-captcha .gfield_label {
  display: none !important;
}
.gform_wrapper .gfield.gfield--type-captcha .ginput_container .g-recaptcha {
  margin: 0;
  /* Remove focus states from reCAPTCHA */
}
.gform_wrapper .gfield.gfield--type-captcha .ginput_container .g-recaptcha:focus, .gform_wrapper .gfield.gfield--type-captcha .ginput_container .g-recaptcha:focus-visible, .gform_wrapper .gfield.gfield--type-captcha .ginput_container .g-recaptcha:focus:not(:focus-visible) {
  outline: none !important;
  box-shadow: none !important;
  border: none !important;
}
.gform_wrapper .gfield .gfield_required {
  color: #dc3545 !important;
  margin-left: 0.25rem !important;
  font-weight: var(--font-weight-medium) !important;
}
.gform_wrapper .gfield .gfield_validation_message {
  color: #dc3545 !important;
  font-size: 0.875rem !important;
  margin-top: 0.25rem !important;
  font-weight: var(--font-weight-light) !important;
}
.gform_wrapper .gform_footer {
  position: relative;
  text-align: right;
  margin-top: -80px !important;
}
.gform_wrapper .gform_footer .gform_button {
  position: absolute;
  right: 0;
  top: 0;
  background-color: var(--color-yellow);
  color: var(--color-black);
  padding: 0.5rem 2rem;
  font-size: 1rem;
  font-weight: var(--font-weight-medium);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  line-height: 1.2 !important;
  font-family: var(--font-primary);
}
.gform_wrapper .gform_footer .gform_button:hover {
  background-color: var(--color-orange);
  color: var(--color-white);
  transform: scale(1.05);
}
.gform_wrapper .gform_footer .gform_button:focus {
  background-color: var(--color-orange);
  color: var(--color-white);
  transform: scale(1.05);
  outline: 2px solid var(--color-yellow);
  outline-offset: 2px;
  box-shadow: 0 0 0 3px rgba(255, 193, 7, 0.3);
}
.gform_wrapper .gform_footer .gform_button:focus:not(:focus-visible) {
  outline: none;
  box-shadow: none;
}
.gform_wrapper .gform_footer .gform_button:focus-visible {
  background-color: var(--color-orange);
  color: var(--color-white);
  transform: scale(1.05);
  outline: 2px solid var(--color-yellow);
  outline-offset: 2px;
  box-shadow: 0 0 0 3px rgba(255, 193, 7, 0.3);
}
@media (max-width: 1024px) {
  .gform_wrapper .gform_footer {
    margin-top: 0 !important;
    text-align: left;
  }
  .gform_wrapper .gform_footer .gform_button {
    position: static;
    width: auto;
  }
}
@media (max-width: 768px) {
  .gform_wrapper .gform_footer {
    text-align: center;
  }
  .gform_wrapper .gform_footer .gform_button {
    position: static;
    width: 100%;
    max-width: 300px;
  }
}
.gform_wrapper .gform_validation_errors,
.gform_wrapper .gform_confirmation_message {
  margin-bottom: 0.75rem;
  padding: 0.75rem;
  border-radius: 8px;
  font-weight: var(--font-weight-medium);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.gform_wrapper .gform_confirmation_message {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}
.gform_wrapper .gform_validation_errors {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}
.gform_wrapper .gform_progress {
  margin-bottom: 2rem;
}
.gform_wrapper .gform_progress .gform_progress_bar {
  background-color: var(--color-light-gray);
  border-radius: 8px;
  overflow: hidden;
}
.gform_wrapper .gform_progress .gform_progress_bar .gform_progress_bar_percentage {
  background-color: var(--color-yellow);
  height: 8px;
  transition: width 0.3s ease;
}
.gform_wrapper .gform_progress .gform_progress_steps {
  display: flex;
  justify-content: space-between;
  margin-top: 1rem;
}
.gform_wrapper .gform_progress .gform_progress_steps .gform_progress_step {
  font-size: 0.875rem;
  color: var(--color-medium-gray);
  font-weight: var(--font-weight-light);
}
.gform_wrapper .gform_progress .gform_progress_steps .gform_progress_step.gform_progress_step_active {
  color: var(--color-yellow);
  font-weight: var(--font-weight-medium);
}
.gform_wrapper .gform_progress .gform_progress_steps .gform_progress_step.gform_progress_step_completed {
  color: var(--color-orange);
  font-weight: var(--font-weight-medium);
}

.gform_heading {
  display: none;
}

/* Submit Button - when form has validation errors */
.gform_validation_error.gform_wrapper .gform_footer {
  margin-top: 1rem !important;
}

.addtoany_list {
  display: flex;
  gap: 0.25rem;
  margin-left: 0.25rem;
}

summary::-webkit-details-marker {
  display: none;
}

details,
details summary {
  padding-left: 0;
  background-image: none;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
}/*# sourceMappingURL=custom.css.map */