/*
 * Custom Styles
 *
 */
/* START - CSS Vars */
:root {
  --link-color: #0d6efd;
  --link-hover-color: #0a58ca;
  --ltf-blue: #22486b;
  --ltf-pink: #bd25de;
  --ltf-gradient: linear-gradient(90deg, #bd25de 0%, #2524ea 100%);
  --ltf-gradient-hover: linear-gradient(90deg, #d336f7 0%, #3a3aff 100%);
  --ltf-social-media-gradient: linear-gradient(63deg, #bd25de 0%, #2524ea 100%);
  --ltf-social-media-gradient-hover: linear-gradient(200deg, #d336f7 0%, #3a3aff 100%);
  --ltf-white: #ffffff;
  --ltf-black: #333333;
}
/* END - CSS Vars */

/* START - Colors */
.color-ltf_blue {
  color: var(--ltf-blue);
}
.color-ltf_pink {
  color: var(--ltf-pink);
}
.color-ltf_gradient {
  background: var(--ltf-gradient);
}
.color-black {
  color: var(--ltf-black);
}
.color-white {
  color: var(--ltf-white);
}

/* END - Colors */

#main-content {
  background: #f5f5f5;
}
/* START - Custom Fonts */
/* Open Sans */
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");
/* END - Custom Fonts */

/* START - Imports and HTML overrides */
@import "../vendor/fontawesome-free-6.5.1-web/css/all.min.css";
html {
  width: 100%;
  overflow-x: hidden !important;
}
body {
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  color: #111111;
  font-weight: 400;
  background-color: white;
  width: 100%;
  overflow-x: hidden !important;
}
body.admin-bar #wpadminbar {
  display: none;
}

strong {
  font-weight: 600;
}
ul li {
  line-height: 16px;
}
ul li.menu-item {
  line-height: 1em;
}
ul,
ol {
  padding-left: 1rem;
}

p {
  line-height: 1.5;
}

a,
a:link,
a:visited,
a:active {
  text-decoration: none;
  transition: color 0.4s;
}

/* CSS for [hide_on_mobile] shortcode */
@media (max-width: 767px) {
  .hide-on-mobile {
    display: none !important;
  }
}

.modal-open {
  padding-right: 0 !important;
}
/* END - Imports and HTML overrides */

/* START - Menu Defaults */
header#main-header {
  position: relative;
  z-index: 10;
  padding: 1.5rem 1rem;
}
#top-menu.nav {
  gap: 25px;
}
#top-menu.nav li a {
  font-size: 1rem;
  text-transform: uppercase;
  font-weight: 400;
  letter-spacing: 1px;
  display: block;
  line-height: 1;
  font-family: "Open Sans", sans-serif;
}
#top-menu.nav li a:after {
  display: block;
  height: 3px;
  width: 100%;
  background-color: var(--link-color);
  content: " ";
  margin-top: 20px;
  position: absolute;
  opacity: 0;
  transition: all 0.3s;
}
#top-menu.nav li a:hover:after,
#top-menu.nav li a:active:after {
  opacity: 1;
  margin-top: 8px;
}
@media (min-width: 992px) {
  #mobile-menu,
  header#main-header a#mobileMenuClose {
    display: none;
  }
  #top-menu.nav {
    justify-content: flex-end;
  }
}
@media (max-width: 991px) {
  .menu-column {
    position: fixed;
    width: 100%;
    height: 100vh;
    background: #232323;
    top: 0;
    left: 0;
    opacity: 0 !important;
    transform: translateX(100%) !important;
    transition: transform 0s linear 0.5s, opacity 0.4s ease 0s;
  }
  .menu-column.show {
    opacity: 1 !important;
    transform: translateX(0) !important;
    transition: transform 0s linear 0s, opacity 0.4s ease 0s;
  }
  .menu-column .primary-menu-container #top-menu {
    padding: 40px 40px;
    flex-direction: column;
    gap: 36px;
  }
  .menu-column .primary-menu-container ul li.menu-item {
    line-height: 1.5em;
  }
  #top-menu.nav li a:after {
    opacity: 1;
    margin-top: 3px;
    position: relative;
  }
  #top-menu.nav li a:hover:after {
    margin-top: 3px;
    width: calc(100% + 2rem);
  }
}
#mobileMenuClose {
  position: absolute;
  top: 36px;
  right: 2rem;
  font-size: 30px;
}
#mobileMenuToggle {
  font-size: 30px;
  line-height: 1;
  align-items: center;
  display: flex;
}
a#mobileMenuClose:hover,
a#mobileMenuClose:active {
  color: var(--blue);
}
.mobile-and-search-menu {
  justify-content: flex-end;
  display: flex;
}
/* END - Menu Defaults */

/* ---------------------------------------------- START COMPONENTS ---------------------------------------------- */

/* Start Home Hero */
/* Home Hero Section */
.home-hero {
  position: relative;
  min-height: 590px;
  display: flex;
  background-size: cover;
  background-position: center;
  color: #111;
  align-items: center;
  background-image: var(--bg-desktop);
  justify-content: center;
}

.home-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
              to right,
              transparent 0%,
              rgba(255, 255, 255, 0.0) 50%,
              rgba(255, 255, 255, 0.75) 60%,
              rgba(255, 255, 255, 0.92) 100%
              );
  z-index: 1;
  pointer-events: none;
}

@media (max-width: 600px) {
  .home-hero::before {
    background: linear-gradient(
                to top,
                transparent 0%,
                rgba(255, 255, 255, 0.0) 50%,
                rgba(255, 255, 255, 0.45) 60%,
                rgba(255, 255, 255, 0.72) 100%
                );
    }
}

/* Video Modal Styles */
.video-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 999999;
  background: rgba(0, 0, 0, 0.9);
  opacity: 0;
  transition: opacity 0.3s ease;
  visibility: hidden;
}

.video-modal.show {
  display: flex !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.video-modal__overlay {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-sizing: border-box;
}

.video-modal__content {
  /* position: relative; */
  width: 90vw;
  height: 90vh;
  max-width: 900px;
  max-height: 600px;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.video-modal__close {
  position: absolute;
  top: 15px;
  right: 20px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  border: none;
  font-size: 30px;
  font-weight: bold;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.video-modal__close:hover {
  background: rgba(0, 0, 0, 0.9);
}

.video-modal__video-container {
  position: relative;
  width: 100%;
  height: 100%;
  flex: 1;
  min-height: 0;
  max-height: calc(100% - 60px); /* Account for close button */
}

.video-modal__video-container video,
.video-modal__video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  object-fit: contain;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .video-modal__overlay {
    padding: 10px;
  }
  
  .video-modal__content {
    max-width: 95vw;
    max-height: 85vh;
  }
  
  .video-modal__close {
    top: 10px;
    right: 15px;
    width: 35px;
    height: 35px;
    font-size: 25px;
  }
}

/* Ensure modal is always visible and centered */
.video-modal.show {
  display: flex !important;
  opacity: 1 !important;
  visibility: visible !important;
}

/* Prevent body scroll when modal is open */
body.modal-open {
  overflow: hidden !important;
  height: 100vh !important;
}

/* Force modal to stay within viewport */
.video-modal {
  max-width: 100vw !important;
  max-height: 100vh !important;
  overflow: hidden !important;
}

.video-modal__overlay {
  max-width: 100vw !important;
  max-height: 100vh !important;
  overflow: hidden !important;
}

.home-hero__content {
  max-width: 650px;
  margin-left: 53%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 2;
}
.home-hero__title {
  font-size: 2.6rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.home-hero__title p {
  line-height: 1;
}
.home-hero__paragraph {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  max-width: 600px;
}
.home-hero__buttons {
  display: flex;
  gap: 1rem;
}
@media (max-width: 900px) {
  .home-hero__title {
    font-size: 1.8rem;
    margin-bottom: 0.4rem;
    margin-top: 1rem;
  }

  .home-hero__paragraph {
    font-size: 1rem;
  }
  .home-hero {
    align-items: center;
  }
}
@media (max-width: 600px) {
  .home-hero {
    padding: 2rem;
    background-image: var(--bg-mobile);
    min-height: 75vh;
    background-size: cover;
    align-items: flex-start;
    background-position: bottom;
  }

  .home-hero__content {
    max-width: 100%;
    margin-left: 0%;
  }
  .home-hero__buttons {
    flex-direction: row;
  }
}

.home-hero__mobile-overlay {
  display: none;
}
@media (max-width: 391px) {
  .home-hero {
    min-height: 75vh;
  }
}
@media (max-width: 361px) {
  .home-hero {
    min-height: 75vh;
  }
}
@media (max-width: 600px) {
  .home-hero__content {
    position: relative;
    z-index: 2;
  }
}

.ltf-footer-menu-cols-wrapper {
  display: contents;
}

@media (max-width: 600px) {
  .ltf-footer-menu-cols-wrapper {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
  }

  .ltf-footer-menu-cols-wrapper .ltf-footer-menu-col:nth-child(1),
  .ltf-footer-menu-cols-wrapper .ltf-footer-menu-col:nth-child(2) {
    width: 50%;
    max-width: 50%;
    min-width: 50%;
    flex-basis: 50%;
  }

  .ltf-footer-menu-cols-wrapper .ltf-footer-menu-col:nth-child(3) {
    width: 100%;
    max-width: 100%;
    min-width: 100%;
    flex-basis: 100%;
    margin-top: 1.5rem;
  }
}

/* END Home Hero */

/* START Quick Status */
.quick-stats-section {
  width: 100%;
  padding: 3.5rem 0;
}
.quick-stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 3.5rem;
  margin: 0 auto;
  align-items: stretch;
}
.quick-stats-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  min-width: 0;
}
.quick-stats-icon {
  width: 64px;
  height: 64px;
  min-width: 64px;
  min-height: 64px;
  background: #6C24E4;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(40, 20, 60, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}
.quick-stats-icon img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}
.quick-stats-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.quick-stats-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--ltf-blue);
  margin-bottom: 0.2rem;
  line-height: 1.1;
  word-break: break-word;
}

.quick-stats-description {
  font-size: 1.08rem;
  color: #9ca3af;
  font-weight: bold;
  margin-top: 0.1rem;
  line-height: 1.3;
  word-break: break-word;
}

@media (max-width: 1100px) {
  .quick-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.2rem;
  }
}
@media (max-width: 600px) {
  .quick-stats-section {
    padding: 2rem 0 1rem 0;
  }
  .quick-stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    padding: 1rem 1rem 0 1rem;
  }
  .quick-stats-item {
    gap: 1rem;
  }
  .quick-stats-title {
    font-size: 1.1rem;
  }
  .quick-stats-description {
    font-size: 0.9rem;
    line-height: 1.2;
  }
  .quick-stats-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    min-height: 48px;
  }
  .quick-stats-icon img {
    width: 28px;
    height: 28px;
  }
}
/* END Quick Status */

/* START Programs Left Grid */
.programs-left-grid-section {
  width: 100%;
  padding: 5rem 0;
}
.programs-left-grid-section .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}
.programs-left-grid-wrapper {
  display: flex;
  align-items: center;
  gap: 3.5rem;
}
.programs-left-grid-left {
  flex: 1 1 420px;
  max-width: 480px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 320px;
  padding-top: 1.2rem;
}

.programs-left-grid-pretitle {
  color: var(--ltf-pink);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}
.programs-left-grid-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--ltf-blue);
  margin-bottom: 1.1rem;
  line-height: 1.1;
}
.programs-left-grid-paragraph {
  font-size: 1.18rem;
  color: var(--ltf-black);
  margin-bottom: 1rem;
  line-height: 1.25;
  max-width: 420px;
}
.programs-left-grid-btn {
  margin-top: 0.5rem;
}
.programs-left-grid-right {
  flex: 2 1 700px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
}
.programs-left-grid-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 2rem 2.2rem;
  width: 100%;
  max-width: 900px;
  z-index: 2;
}
.programs-left-grid-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 16px rgba(40, 20, 60, 0.1);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--ltf-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 110px;
  padding: 1rem;
  line-height: 1.25;
  will-change: transform, box-shadow;
  outline: none;
  border: none;
}

.programs-left-grid-card:hover,
.programs-left-grid-card:focus,
.programs-left-grid-card:active {
  box-shadow: 0 8px 32px rgba(40, 20, 60, 0.13);
  transform: translateY(-6px);
  outline: none;
  border: none;
  transition: transform 0.25s ease-in-out, box-shadow 0.25s ease-in-out;
}

.programs-left-grid-cards a {
  text-decoration: none;
  color: var(--ltf-blue);
  transition: transform 0.25s ease-in-out, box-shadow 0.25s ease-in-out;
}

.programs-left-grid-dots {
  position: absolute;
  z-index: 1;
  width: 46px;
  height: auto;
  pointer-events: none;
}
.programs-left-grid-dots--top {
  top: -18px;
  left: -18px;
}
.programs-left-grid-dots--bottom {
  bottom: -18px;
  right: -18px;
}
@media (max-width: 1100px) {
  .programs-left-grid-wrapper {
    flex-direction: column;
    gap: 2.2rem;
  }
  .programs-left-grid-right {
    width: 100%;
    justify-content: flex-start;
  }
  .programs-left-grid-cards {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    max-width: 100%;
    gap: 1.2rem;
  }
}
@media (max-width: 700px) {
  .programs-left-grid-section {
    padding: 2rem 0 1.2rem 0;
  }
  .programs-left-grid-section .container {
    padding: 0 1rem;
  }
  .programs-left-grid-title {
    font-size: 1.8rem;
  }
  .programs-left-grid-cards {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .programs-left-grid-card {
    font-size: 1.1rem;
    min-height: 70px;
    padding: 0.8rem 1rem;
  }
  .programs-left-grid-dots {
    width: 32px;
  }
  .programs-left-grid-dots--top {
    top: -16px;
    left: -16px;
  }
  .programs-left-grid-dots--bottom {
    bottom: -16px;
    right: -16px;
  }
}

@media (max-width: 600px) {
  .programs-left-grid-section {
    padding: 2rem 1rem 1.2rem 1rem;
  }
  .programs-left-grid-left {
    flex: 1 1 300px;
  }
  .programs-left-grid-right {
    flex: 2 1 auto;
  }
  .programs-left-grid-cards a {
    padding: 0 4rem;
  }
  .programs-left-grid-wrapper {
    gap: 3.2rem;
  }
}
/* END Programs Left Grid */

/* ---------------------------------------------- END COMPONENTS ---------------------------------------------- */

/* HEADER STYLES */
.site-header {
  width: 100%;
  background: #f7f7f7;
  position: relative;
  z-index: 100;
}
.site-header__container {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  padding: 0 32px;
  height: 90px;
  position: relative;
  background: var(--ltf-white);
}
.site-header__logo {
  display: flex;
  align-items: left;
  justify-content: left;
  min-width: 180px;
}
.site-header__logo-img {
  max-height: 46px;
  width: auto;
  display: block;
}
.site-header__logo-img--desktop {
  display: block;
}
.site-header__logo-img--mobile {
  display: none;
}
.site-header__nav {
  flex: 2 1 auto;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.site-header__menu {
  display: flex;
  gap: 48px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.site-header__menu > li {
  position: relative;
}
.site-header__menu > li > a {
  font-family: "Open Sans", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--ltf-blue);
  text-transform: uppercase;
  padding: 8px 0;
  display: block;
  transition: color 0.2s;
  letter-spacing: -0.01em;
  position: relative;
}

.site-header__menu > li > a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--ltf-pink);
  transition: width 0.5s ease;
}

.site-header__menu > li.current-menu-item > a::after {
  width: 100%;
}

.site-header__menu > li.menu-item-has-children:hover > a::after,
.site-header__menu > li.menu-item-has-children:focus-within > a::after,
.site-header__menu > li.current-menu-ancestor > a::after,
.site-header__menu > li.current-menu-parent > a::after,
.site-header__menu > li.current_page_parent > a::after {
  width: 100%;
  color: var(--ltf-pink);
}

.site-header__menu li.menu-item-has-children:hover > ul,
.site-header__menu li.menu-item-has-children:focus-within > ul {
  display: block;
}
.site-header__menu ul {
  display: none;
  position: absolute;
  left: 0;
  top: 100%;
  background: #fff;
  min-width: 180px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  padding: 12px 0;
  z-index: 10;
}
.site-header__menu ul li {
  width: 100%;
}
.site-header__menu ul li a {
  padding: 10px 24px;
  color: #222;
  font-size: 1rem;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
}
.site-header__menu ul li a:hover {
  background: #f7f0ff;
  color: #c43aff;
}
.site-header__donate {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-width: 180px;
  margin-left: 32px;
}
.site-header__mobile-icon {
  display: none;
  align-items: center;
  justify-content: flex-start;
  min-width: 60px;
  height: 90px;
}
.site-header__side-menu-icon {
  width: 30px;
  height: 30px;
  cursor: pointer;
}
.site-header__side-menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(40, 20, 60, 0.18);
  backdrop-filter: blur(8px);
  z-index: 9998;
  transition: opacity 0.3s;
  opacity: 0;
}
.site-header__side-menu-overlay.active {
  display: block;
  opacity: 1;
}
.site-header__side-menu.open ~ .site-header__side-menu-overlay {
  display: block;
  opacity: 1;
}
.site-header__side-menu {
  position: fixed;
  top: 0;
  left: -100vw;
  width: 85vw;
  max-width: 400px;
  height: 100vh;
  background: #fff;
  box-shadow: 2px 0 24px rgba(0, 0, 0, 0.08);
  z-index: 10000;
  display: flex;
  flex-direction: column;
  transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.site-header__side-menu.open {
  left: 0;
}
.site-header__side-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 24px 12px 24px;
}
.site-header__side-menu-logo {
  display: flex;
  align-items: center;
}
.site-header__side-menu-close {
  font-size: 2.2rem;
  line-height: 1;
  cursor: pointer;
  color: #c43aff;
  padding: 0 8px;
}
.site-header__side-menu-nav {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 0 0 0 0;
}
.site-header__side-menu-menu {
  list-style: none;
  padding: 0 0 0 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 2rem;
}
.site-header__side-menu-menu > li > a {
  font-family: "Open Sans", sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #222;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 22px 32px;
  display: block;
  border-bottom: 1px solid #f2eaff;
  transition: color 0.2s, background 0.2s;
}
.site-header__side-menu-menu > li > a:hover,
.site-header__side-menu-menu > li.current-menu-item > a {
  color: var(--ltf-pink);
  background: #f8f2ff;
}
.site-header__side-menu-menu .menu-item-has-children {
  position: relative;
}
.site-header__side-menu-menu .menu-item-has-children > a {
  padding-right: 48px;
  display: flex;
  align-items: center;
  font-weight: 700;
}
.site-header__side-menu-menu .submenu-toggle {
  position: absolute;
  right: 5px;
  top: 5px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  border: none;
  outline: none;
  margin-left: 8px;
  transition: opacity 0.2s;
  opacity: 1;
  background: #f7f2fe;
  border: solid 1px #f6cbff;
}
.site-header__side-menu-menu .submenu-toggle:hover {
  opacity: 1;
}
.site-header__side-menu-menu .submenu-toggle svg {
  width: 18px;
  height: 18px;
  transition: transform 0.2s;
  display: block;
}
.site-header__side-menu-menu .menu-item-has-children ul {
  display: none;
  padding: 8px 0 8px 48px;
  margin: 0px;
  position: static;
  transition: all 0.25s;
  background: #f7f7f7;
}
.site-header__side-menu-menu .menu-item-has-children.open > ul {
  display: block;
}
.site-header__side-menu-menu ul li a {
  font-size: 1rem;
  font-weight: 400;
  color: #222;
  padding: 12px 0 12px 8px;
  border: none;
  background: none;
  display: block;
}
.site-header__side-menu-donate {
  padding: 32px 32px 24px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.site-header__side-menu-donate .ltf-btn {
  min-width: 100%;
  height: 56px;
}

.menu-item-has-children.open .submenu-toggle svg {
  transform: rotate(180deg);
}

@media (max-width: 991px) {
  .site-header__container {
    height: 70px;
    padding: 0 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .site-header__mobile-icon {
    display: flex;
    order: 1;
    min-width: 48px;
    height: 70px;
  }
  .site-header__logo {
    order: 2;
    flex: 1 1 auto;
    min-width: 0;
    justify-content: center;
  }
  .site-header__donate {
    display: flex;
    order: 3;
    min-width: 120px;
    margin-left: 0;
    justify-content: flex-end;
  }
  .site-header__logo-img--desktop {
    display: none;
  }
  .site-header__logo-img--mobile {
    display: block;
  }
  .site-header__logo-img {
    max-height: 48px;
    width: 140px;
  }
  .site-header__nav {
    display: none;
  }

  .site-header__side-menu.open .site-header__logo-img {
    max-height: 48px;
    width: 180px;
  }
}
@media (min-width: 992px) {
  .site-header__mobile-icon {
    display: none !important;
  }
  .site-header__nav {
    display: flex !important;
  }
  .site-header__donate {
    display: flex !important;
  }
  .site-header__nav .menu-item-has-children > ul,
  .site-header__nav .sub-menu {
    list-style: none;
    margin: 0;
    padding: 12px 0;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(40, 20, 60, 0.1);
    background: #fff;
    min-width: 220px;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: opacity 0.5s ease, transform 0.5s ease, visibility 0.5s ease;
    gap: 0;
    pointer-events: auto;
  }
  
  /* Submenu active state */
  .site-header__nav .menu-item-has-children.submenu-active > ul,
  .site-header__nav .menu-item-has-children.submenu-active > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  /* Removed hover styles - now controlled by JavaScript */
  .site-header__nav .sub-menu li {
    margin: 0;
    padding: 0;
  }
  .site-header__nav .sub-menu li a {
    display: block;
    padding: 12px 24px;
    color: var(--ltf-black);
    text-decoration: none;
    border-radius: 6px;
    line-height: 1.2;
  }
  .site-header__nav .sub-menu li a:hover {
    color: var(--ltf-blue);
    background: rgb(234 244 255);
    border-radius: 0px;
  }
}

/* FOOTER STYLES */
.ltf-footer {
  width: 100%;
  background: var(--ltf-white);
  margin-top: 1rem;
  font-family: "Open Sans", Arial, sans-serif;
  color: var(--ltf-blue);
}
.ltf-footer-main {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 3rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 3rem 0 2rem 0;
  flex-wrap: wrap;
}
.ltf-footer-col {
  flex: 1 1 200px;
  min-width: 200px;
  max-width: 320px;
}
.ltf-footer-logo-col {
  flex-basis: 420px;
  flex-grow: 2;
  min-width: 320px;
  max-width: 520px;
}

@media (min-width: 992px) {
  .ltf-footer-logo-col {
    margin-right: auto;
    gap: .4rem;
    display: flex;
    flex-direction: column;
  }
  .ltf-footer-logo {
    max-width: 320px;
    width: 100%;
  }
}

@media (max-width: 991px) {
  .ltf-footer-logo-col {
    flex-basis: 270px;
  }
  .ltf-footer-logo {
    max-width: 220px;
    width: 100%;
  }
}

.ltf-footer-logo {
  height: auto;
  margin-bottom: 1rem;
}
.ltf-footer-tagline {
  font-size: 0.9rem;
  color: var(--ltf-blue);
  margin-bottom: 1rem;
  font-weight: 400;
  line-height: 1.2;
}
.ltf-footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
}
.ltf-footer-contact-row {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}
.ltf-footer-icon {
  color: var(--ltf-blue);
  font-size: 1.2rem;
}
.ltf-footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
}

.ltf-footer-menu-col {
  flex-basis: 180px;
  flex-grow: 1;
  min-width: 140px;
  max-width: 260px;
}

/* Specific column widths for better distribution */
.ltf-footer-menu-col:nth-child(1) {
  flex-basis: 100px;
  flex-grow: 0;
  min-width: 100px;
  max-width: 120px;
}

.ltf-footer-menu-col:nth-child(2) {
  flex-basis: 140px;
  flex-grow: 0;
  min-width: 120px;
  max-width: 160px;
}

.ltf-footer-menu-col:nth-child(3) {
  flex-basis: 320px;
  flex-grow: 1;
  min-width: 240px;
  max-width: 400px;
}
@media (min-width: 992px) {
  .ltf-footer-menu-col {
    margin-top: 4rem;
  }
}
.ltf-footer-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.7rem;
  color: var(--ltf-blue);
}
.ltf-footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}
.ltf-footer-menu ul {
  padding-left: 0;
}
.ltf-footer-menu li {
  margin-bottom: 0.5rem;
}
.ltf-footer-menu li a {
  color: var(--ltf-blue);
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.18s;
}
.ltf-footer-menu li a:hover {
  color: var(--ltf-pink);
}

.ltf-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1460px;
  margin: 2rem auto;
  padding: 1.2rem 2rem 0.7rem 2rem;
  font-size: 0.9rem;
  color: var(--ltf-blue);
}
.ltf-footer-copyright {
  font-size: 0.9rem;
  color: var(--ltf-blue);
}
.ltf-footer-credit {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  font-size: 0.9rem;
  color: var(--ltf-blue);
}
.ltf-footer-bottom a {
  color: var(--ltf-blue);
}
.ltf-footer-credit-logo {
  height: 16px;
  width: auto;
  display: inline-block;
  position: relative;
  top: -1px;
  margin-left: 0.2rem;
}
@media (max-width: 991px) {
  .ltf-footer-main {
    flex-direction: column;
    align-items: flex-start;
    gap: 2.5rem;
    padding: 2.5rem 2.2rem 1.2rem 2.2rem;
  }
  .ltf-footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.7rem;
    padding: 1.2rem 2.2rem 0.7rem 2.2rem;
  }
  .ltf-footer-grant-text {
    background: #f7f7fa;
    color: #444;
    font-size: 0.8rem;
    margin-top: 1rem;
    border-radius: 8px;
    padding: 1.3rem;
    text-align: left;
    width: 84%;
  }
  .ltf-footer-copyright {
    text-align: center;
    max-width: 90%;
    margin: 0 auto;
  }
  .ltf-footer-credit {
    text-align: center;
    margin: 0 auto;
  }
}

.ltf-footer-main,
.ltf-footer-grant-text {
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}
.ltf-footer-grant-text {
  background: #f7f7fa;
  color: #444;
  font-size: 0.9rem;
  margin-top: 1rem;
  border-radius: 8px;
  padding: 1.3rem 2rem;
  text-align: left;
}

.ltf-footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}
.ltf-footer-menu li {
  display: block;
  margin-bottom: 0.5rem;
}
.ltf-footer-menu li:last-child {
  margin-bottom: 0;
}
.ltf-footer-menu li a {
  color: var(--ltf-blue);
  text-decoration: none;
  font-size: 1rem;
  line-height: 1.7;
  vertical-align: middle;
  transition: color 0.18s;
}
.ltf-footer-menu li a:hover {
  color: var(--ltf-pink);
}
.ltf-footer-title {
  font-size: 1.13rem;
  font-weight: 700;
  margin-bottom: 1.1rem;
  color: var(--ltf-blue);
}
.ltf-footer-tagline {
  font-size: 0.9rem;
  color: var(--ltf-blue);
  margin-bottom: 1rem;
  font-weight: 400;
  line-height: 1.25;
  margin-bottom: 1.5rem;
}
.ltf-footer-contact-row {
  font-size: 1rem;
  line-height: 1.3;
  margin-bottom: 0.2rem;
}
.ltf-footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
}
.ltf-footer-social a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  overflow: hidden;
  color: #fff;
  box-shadow: 0 2px 8px rgba(180, 80, 255, 0.08);
  text-decoration: none;
}

.ltf-footer-social a::before,
.ltf-footer-social a::after {
  content: '';
  position: absolute;
  inset: 0;
  transition: opacity 0.5s ease;
  z-index: 0;
}

.ltf-footer-social a::before {
  background: linear-gradient(63deg, #bd25de 0%, #2524ea 100%);
  opacity: 1;
}

.ltf-footer-social a::after {
  background: linear-gradient(200deg, #d336f7 0%, #3a3aff 100%);
  opacity: 0;
}

.ltf-footer-social a:hover::after {
  opacity: 1;
}

.ltf-footer-social a:hover::before {
  opacity: 0;
}

.ltf-footer-social a > * {
  position: relative;
  z-index: 1;
}

.ltf-footer-social i {
  font-size: 20px;
  line-height: 1;
  color: #fff;
}

/* Start CTA Donation Section  */
.cta-donation-section {
  padding: 6rem 0;
  width: 100%;
}
.cta-donation-section .container {
  position: relative;
}
.cta-donation-icon {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -50%);
  z-index: 3;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0px 10px 16px rgb(60 20 120 / 46%);
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cta-donation-icon img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}
.cta-donation-content {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 5.5rem 2rem 3.5rem 2rem;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: 0 4px 32px rgba(60, 20, 120, 0.1);
}
.cta-donation-content:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(189, 37, 222, 0.85) 0%,
    rgba(37, 36, 234, 0.85) 100%
  );
  z-index: 1;
  mix-blend-mode: darken;
}
.cta-donation-title {
  position: relative;
  z-index: 2;
  color: #fff;
  font-size: 2.7rem;
  font-weight: 800;
  text-align: center;
  margin-top: 0;
  margin-bottom: 1.2rem;
  line-height: 1.1;
}
@media (min-width: 992px) {
  .cta-donation-title {
    max-width: 600px;
  }
}
.cta-donation-paragraph {
  position: relative;
  z-index: 2;
  color: #fff;
  font-size: 1.25rem;
  text-align: center;
  margin-bottom: 2.2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.cta-donation-btn {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
}
.cta-donation-btn .ltf-btn--blur_white {
  background: #fff;
  padding: 0 1.3rem 0 2rem;
}

.ltf-bird {
  position: absolute;
  width: 40px !important;
  height: 40px !important;
  font-size: 1rem !important;
}

.ltf-btn--filled.ltf-btn--blur_white:has(.ltf-bird) {
  background: #fff;
}
.cta-donation-btn .ltf-btn__icon img {
  min-width: 35px !important;
  min-height: 35px !important;
}

@media (max-width: 900px) {
  .cta-donation-content {
    padding: 4.5rem 1.2rem 2.5rem 1.2rem;
    min-height: 320px;
  }
  .cta-donation-title {
    font-size: 2rem;
  }
  .cta-donation-icon {
    width: 80px;
    height: 80px;
  }
  .cta-donation-icon img {
    width: 38px;
    height: 38px;
  }
}
@media (max-width: 600px) {
  .cta-donation-content {
    padding: 2.5rem 0.5rem 1.5rem 0.5rem;
    min-height: 220px;
    border-radius: 10px;
  }
  .cta-donation-title {
    font-size: 1.3rem;
    margin-top: 1rem;
    max-width: 300px;
  }
  .cta-donation-paragraph {
    font-size: 1rem;
    margin-bottom: 1.2rem;
    max-width: 300px;
  }
  .cta-donation-paragraph p {
    line-height: 1.55;
  }
  .cta-donation-icon {
    width: 80px;
    height: 80px;
  }
  .cta-donation-icon img {
    width: 36px;
    height: 36px;
  }
}
/* END CTA Donation Section  */

/* START Events Grid Section  */
.events-grid-section {
  padding: 5rem 0;
  background-repeat: repeat;
}

.events-grid-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 3rem;
}

.events-grid-pretitle {
  color: var(--ltf-pink);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.events-grid-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--ltf-blue);
  margin: 0;
  line-height: 1.2;
}

.events-grid-browse-all {
  color: var(--ltf-blue);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
}

.events-grid-browse-all:hover {
  color: var(--ltf-pink);
}

/* Grid Layout */
.events-grid-layout {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}

/* Featured Event */
.events-grid-featured {
  display: flex;
  flex-direction: column;
}

.events-grid-featured-image {
  display: block;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.events-grid-featured-image img {
  width: 100%;
  height: auto;
  display: block;
}

.events-grid-featured-meta {
  margin-bottom: 1rem;
  color: #666;
  font-size: 0.9rem;
  display: flex;
  justify-content: space-between;
}

.events-grid-featured-title {
  margin: 0 0 1rem 0;
  font-size: 1.75rem;
  line-height: 1.2;
}

.events-grid-featured-title a {
  color: var(--ltf-blue);
  text-decoration: none;
}

.events-grid-featured-title a:hover {
  color: var(--ltf-pink);
}

.events-grid-featured-excerpt {
  color: #666;
  line-height: 1.5;
  font-size: 1rem;
}

/* List Events */
.events-grid-list {
  display: flex;
  flex-direction: column;
  gap: 2.8rem;
}

.events-grid-list-item {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 1.5rem;
}

.events-grid-list-image {
  display: block;
  border-radius: 10px;
  overflow: hidden;
}

.events-grid-list-image img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  display: block;
}

.events-grid-list-content {
  display: flex;
  flex-direction: column;
}

.events-grid-list-meta {
  margin-bottom: 0.75rem;
  color: #666;
  font-size: 0.9rem;
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
}

.events-grid-list-title {
  margin: 0 0 0.75rem 0;
  font-size: 1.75rem;
  line-height: 1.2;
}

.events-grid-list-title a {
  color: var(--ltf-blue);
  text-decoration: none;
}

.events-grid-list-title a:hover {
  color: var(--ltf-pink);
}

.events-grid-list-excerpt {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.5;
}

@media (max-width: 1100px) {
  .events-grid-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .events-grid-list-item {
    grid-template-columns: 150px 1fr;
    gap: 1.25rem;
  }
}

@media (max-width: 768px) {
  .events-grid-section {
    padding: 3rem 1rem;
  }

  .events-grid-header {
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
  }

  .events-grid-title {
    font-size: 1.8rem;
  }

  .events-grid-browse-all {
    margin-top: 0.5rem;
  }

  .events-grid-featured-title {
    font-size: 1.5rem;
  }

  .events-grid-list-item {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .events-grid-list-image img {
    height: 300px;
  }
}

@media (max-width: 480px) {
  .events-grid-section {
    padding: 2rem 1rem;
  }

  .events-grid-title {
    font-size: 1.8rem;
  }

  .events-grid-featured-title {
    font-size: 1.25rem;
  }
}
/* END Events Grid Section  */

/* START Featured Stories Section */
.featured-stories-section {
  padding: 5rem 0;
}

.featured-stories-layout {
  display: grid;
  grid-template-columns: 40% 50%;
  gap: 10%;
  align-items: center;
}

.featured-stories-content {
  padding-right: 2rem;
}

.featured-stories-pretitle {
  color: var(--ltf-pink);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.featured-stories-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--ltf-blue);
  margin: 0 0 1.5rem 0;
  line-height: 1.2;
}

.featured-stories-paragraph {
  font-size: 1.18rem;
  color: var(--ltf-black);
  margin-bottom: 1rem;
  line-height: 1.25;
  max-width: 420px;
}

.featured-stories-slider {
  position: relative;
  padding: 20px 20px 40px 0;
}

.featured-stories-slider::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 30px;
  width: calc(100% - 30px);
  height: calc(100% - 60px);
  border: 1px solid #7d13ea;
  border-radius: 12px;
  pointer-events: none;
}

.featured-stories-slider .splide {
  position: relative;
}

.featured-stories-slider .splide__slide {
  background: #6C24E4;
  padding: 4rem;
  position: relative;
  border-radius: 12px;
  display: flex;
  align-items: center;
}

.story-slide-content {
  position: relative;
  z-index: 1;
}

.story-highlight-text {
  margin-bottom: 2rem;
  font-size: 1.6rem;
  line-height: 1.4;
  color: #fff;
  font-weight: 300;
}

.story-highlight-text p {
  margin: 0;
}

.story-author-name {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  color: #fff;
  margin-bottom: 1.5rem;
}

.story-read-full {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ltf-blue);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: var(--ltf-black);
  color: #fff;
  height: 40px;
  display: flex;
  width: fit-content;
  padding: 0 20px;
  justify-content: center;
  align-items: center;
  float: right;
  margin-top: 1rem;
}

.story-read-full:hover {
  background: #000;
  color: var(--ltf-white);
}

.featured-stories-slider .splide__arrow {
  background: transparent;
  border: none;
  opacity: 1;
  width: 3em;
  height: 3em;
}

.featured-stories-slider .splide__arrow svg {
  fill: #a0a0a0;
  width: 1.2em;
  height: 1.2em;
}

.featured-stories-slider .splide__arrow:hover svg {
  fill: var(--ltf-purple);
}

.featured-stories-slider .splide__arrow--prev {
  left: -4em;
}

.featured-stories-slider .splide__arrow--next {
  right: -4em;
}

.featured-stories-slider .splide__pagination {
  bottom: -2.5rem;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.featured-stories-slider .splide__pagination__page {
  background: #cfcfcf;
  width: 50px;
  height: 5px;
  border-radius: 2.5px;
  margin: 0;
  padding: 0;
  border: none;
  position: relative;
  overflow: hidden;
}

.featured-stories-slider .splide__pagination__page::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #7d13ea;
  transform: translateX(-100%);
}

.featured-stories-slider .splide__pagination__page.is-active::before {
  animation: progressBarFill 8s linear forwards;
}

@keyframes progressBarFill {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}

.featured-stories-slider .splide__pagination__page.is-active {
  transform: none;
  background: #dbdbdb;
}

.featured-stories-btn {
  margin-top: 2rem;
}

@media (max-width: 1200px) {
  .featured-stories-slider .splide__arrow--prev {
    left: -1.5em;
  }
  .featured-stories-slider .splide__arrow--next {
    right: -1.5em;
  }
}

@media (max-width: 992px) {
  .featured-stories-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .featured-stories-content {
    padding-right: 0;
    text-align: center;
  }
  .featured-stories-slider .splide__arrow {
    display: none;
  }
  .featured-stories-btn {
    display: flex;
    justify-content: center;
  }
  .featured-stories-slider {
    padding: 15px 15px 40px 0;
  }
  .featured-stories-slider .splide__slide {
    margin: 15px 0 0 15px;
    padding: 2.5rem;
  }
  .story-highlight-text {
    font-size: 1.5rem;
  }
  .featured-stories-title {
    font-size: 1.8rem;
  }
}
@media (max-width: 600px) {
  .featured-stories-section {
    padding: 5rem 1rem;
  }
  .featured-stories-layout {
    display: block;
  }
  .featured-stories-slider .splide__list {
    width: 93%;
  }
  .featured-stories-btn {
    margin-bottom: 2rem;
  }
}
/* END Featured Stories Section */

/* START Partners Section */
.partners-section {
  padding: 5rem 0 7rem 0;
}

.partners-content-layout {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
  align-items: center;
  margin-bottom: 4rem;
}

.partners-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
}

.partners-pretitle {
  color: var(--ltf-pink);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.partners-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--ltf-blue);
  margin: 0 0 1.5rem 0;
  line-height: 1.2;
}

.partners-paragraph {
  font-size: 1.18rem;
  color: var(--ltf-black);
  margin-bottom: 1rem;
  line-height: 1.25;
  max-width: 420px;
}

.partners-logo-slider-wrapper {
  max-width: 100%;
  overflow: hidden;
}

.partners-logo-slider .splide__slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

.partner-logo img {
  max-height: 60px;
  width: auto;
  opacity: 1;
  transition: all 0.3s ease;
  margin: 0 2rem;
}

@media (max-width: 992px) {
  .partners-section {
    padding: 3rem 1rem 4rem 1rem;
  }
  .partners-content-layout {
    grid-template-columns: 1fr;
  }
  .partners-content-left {
    order: 2;
  }
  .partners-content-right {
    order: 1;
    text-align: center;
  }
  .partners-title {
    font-size: 1.8rem;
  }
}
/* END Partners Section */

/* START Team Members Section */
.team-members-section {
  padding: 5rem 0;
}

.team-members-section .team-members-header {
  margin-bottom: 3rem;
}

.team-members-section .team-members-pretitle {
  color: var(--ltf-pink);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.team-members-section .team-members-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--ltf-blue);
  margin-bottom: 1.1rem;
  line-height: 1.1;
}

.team-members-section .team-members-paragraph {
  font-size: 1.1rem;
  color: var(--ltf-black);
}

.team-members-section .team-members-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6.5rem 2.5rem;
}

.team-members-section .team-member-card {
  position: relative;
  cursor: pointer;
}

.team-members-section .team-member-card-image {
  width: 100%;
  padding-top: 115%;
  background-size: cover;
  background-position: center;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease-out;
}

.team-members-section .team-member-card:hover > .team-member-card-image {
  filter: brightness(1.1) saturate(1.2);
  transform: scale(1.01);
  overflow: hidden;
}

.team-members-section .team-member-card-info {
  position: absolute;
  bottom: -40px;
  left: 20px;
  right: 20px;
  background: white;
  border-radius: 12px;
  padding: 1.25rem 1rem;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-out;
}

.team-members-section .team-member-card:hover > .team-member-card-info {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.team-members-section .team-member-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ltf-blue);
  margin: 0 0 0.25rem 0;
}

.team-members-section .team-member-position {
  font-size: 0.85rem;
  color: #666;
  margin: 0;
  line-height: 1.3;
}

.team-members-section .modal-header {
  border-bottom: 1px solid #eee;
}

.team-members-section .modal-title {
  color: var(--ltf-blue);
  font-weight: 700;
}

.team-members-section .team-member-name-modal {
  color: var(--ltf-blue);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.team-members-section .team-member-position-modal {
  color: var(--ltf-blue);
  font-size: 1rem;
  font-weight: 600;
}

.team-members-section .team-member-bio p {
  line-height: 1.6;
  color: #333;
}

@media (max-width: 992px) {
  .team-members-section .team-members-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .team-members-section {
    padding: 3rem 1rem;
  }
  .team-members-section .team-members-title {
    font-size: 1.8rem;
  }
  .team-members-section .team-members-grid {
    grid-template-columns: 1fr;
  }
}

.team-member-modal .modal-body {
  padding: 2rem 3rem;
}

.team-member-modal .modal-header {
  padding: 1rem 3rem;
}
.team-member-modal .modal-title {
  color: var(--ltf-blue);
}

.team-member-modal .team-member-position-modal {
  color: var(--ltf-black);
  font-style: italic;
  margin-bottom: 0;
}

.team-member-modal .modal-avatar-photo {
  height: 70px;
  border-radius: 4px;
  margin-right: 1rem;
}

.team-member-modal.show {
  backdrop-filter: blur(14px);
}
/* END Team Members Section */


/* START Hero Section */
.program-hero {
  position: relative;
  min-height: 550px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-image: var(--program-hero-bg-desktop);
  color: #fff;
  overflow: visible;
  z-index: 5;
}

.program-hero__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(89deg, #00000057, transparent);
  z-index: 1;
}

.program-hero .container {
  position: relative;
  z-index: 2;
  width: 100%;
}

.program-hero__content {
  max-width: 800px;
  width: 100%;
}

.program-hero__content--align-center {
  text-align: center;
  margin: 0 auto;
}

.program-hero__content--align-left {
  text-align: left;
  margin: 0 auto 0 0;
}

.program-hero__content--align-right {
  text-align: right;
  margin: 0 0 0 auto;
}

.program-hero__title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin: 0;
}

.program-hero__title p {
  margin: 0;
}

.program-hero__button {
  display: flex;
}

.program-hero__content--align-center .program-hero__button {
  justify-content: center;
}

.program-hero__content--align-left .program-hero__button {
  justify-content: flex-start;
}

.program-hero__content--align-right .program-hero__button {
  justify-content: flex-end;
}

@media (max-width: 768px) {
  .program-hero {
      min-height: 350px;
      background-image: var(--program-hero-bg-mobile, var(--program-hero-bg-desktop));
  }

  .program-hero__title {
      font-size: 2.5rem;
  }
}

/* END Hero Section */

@media (min-width: 992px) {
  .lg-max-w-50 {
      max-width: 50%;
      margin: 0 auto;
  }

}

/* START All Programs List Section */
.all-programs-list {
  width: 100%;
  padding: 5rem 0;
}


#our-programs .program-hero__overlay {
  background: rgb(133 92 25 / 33%);
}


.all-programs-list .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}
.all-programs-list__pre-title {
  color: var(--ltf-pink);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  display: block;
}
.all-programs-list__title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--ltf-blue);
  margin-bottom: 1.1rem;
  line-height: 1.1;
}
.all-programs-list__paragraph {
  font-size: 1.18rem;
  color: var(--ltf-black);
  margin-bottom: 2.5rem;
  line-height: 1.25;
  max-width: 600px;
}
.all-programs-list__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.2rem;
  width: 100%;
  z-index: 2;
}
.all-programs-list__item {
  position: relative;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  min-height: 320px;
  box-shadow: 0 4px 16px rgba(40, 20, 60, 0.10);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: all 0.25s;
}
  
.all-programs-list__item-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  z-index: 1;
  transition: all 0.25s;
}
@media (min-width: 992px) {
  .all-programs-list__item-bg {
    background-position: 60%;
  }
}
@media (max-width: 991px) {
  .all-programs-list__item-bg {
    background-position: center;
  }
}

.all-programs-list__item:hover .all-programs-list__item-bg {
  transition: all 0.25s;
  filter: brightness(1.2);
}
.all-programs-list__item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to left, #33333300 0%, #0000008c 50%);
  z-index: 2;
}
.all-programs-list__item-content {
  position: relative;
  z-index: 3;
  padding: 2.5rem 2rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.all-programs-list__item-title {
  color: #fff;
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 1.2rem;
  line-height: 1;
}

@media (max-width: 1100px) {
  .all-programs-list__items {
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
  }
}
@media (max-width: 700px) {
  .all-programs-list {
    padding: 2rem 0 1.2rem 0;
  }
  .all-programs-list .container {
    padding: 0 1rem;
  }
  .all-programs-list__title {
    font-size: 1.8rem;
  }
  .all-programs-list__items {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .all-programs-list__item {
    min-height: 220px;
  }
  .all-programs-list__item-content {
    padding: 1.5rem 1rem 1.2rem 1rem;
  }
  .all-programs-list__item-title {
    font-size: 1.1rem;
  }
}

.all-programs-list-dots {
  position: absolute;
  z-index: -1;
  width: 46px;
  height: auto;
  pointer-events: none;
}
.all-programs-list-dots--top {
  top: -18px;
  left: -18px;
}
.all-programs-list-dots--bottom {
  bottom: -18px;
  right: -18px;
}
@media (max-width: 700px) {
  .all-programs-list-dots {
    width: 32px;
  }
  .all-programs-list-dots--top {
    top: -12px;
    left: -12px;
  }
  .all-programs-list-dots--bottom {
    bottom: -12px;
    right: -12px;
  }
}
/* END All Programs List Dots */


/* START Two Columns Component */
.two-columns-section {
  padding: 4rem 0;
}

.two-columns-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 768px) {
  .two-columns-grid {
      grid-template-columns: 1fr 1fr;
  }
  .text-max-75 .two-columns-col-text {
      max-width: 75%;
  }
}

.two-columns-col-pretitle {
  color: var(--ltf-pink);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}

.two-columns-col-title {
  color: var(--ltf-blue);
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 3.5rem;
  line-height: 1.2;
}

.two-columns-col-paragraph h3 {
  margin-bottom: 1.4rem;
  color: var(--ltf-blue);
  font-weight: 500;
  letter-spacing: -.05em;
  max-width: 75%;
}

.two-columns-col-paragraph {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--ltf-black);
}

.two-columns-col-paragraph ul li {
  line-height: 1.2;
  margin-bottom: 1rem;
}
.two-columns-col-image img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}

.two-columns-col-video {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}

.two-columns-col-video iframe,
.two-columns-col-video video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  object-fit: cover;
}

.two-columns-col-button {
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .cta-block-content {
      grid-template-columns: 2fr 1fr;
      gap: 4rem;
  }
}

@media (max-width: 768px) {
  .program-hero {
      min-height: 350px;
      background-image: var(--program-hero-bg-mobile, var(--program-hero-bg-desktop));
  }

  .program-hero__title {
      font-size: 2.5rem;
  }
}

.two-columns-section .col-content .video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
/* END Two Columns Component */

/* START Donate Three Ways Section */
.donate-three-ways-section {
  padding: 4rem 0;
}
.donate-three-ways-section .container {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.donate-three-ways__pre-title {
  color: var(--ltf-pink);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}
.donate-three-ways__title {
  color: var(--ltf-blue);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 3.2rem;
}
.donate-three-ways__paragraph {
  font-size: 1.15rem;
  color: var(--ltf-black);
  margin-bottom: 2.2rem;
  line-height: 1.5;
}
.donate-three-ways__tab-title {
  color: var(--ltf-blue);
  font-size: 1.5rem;
  font-weight: 700;
  margin: 2.5rem 0 1.5rem 0;
}
.donate-three-ways__tabs {
  display: flex;
  justify-content: center;
  gap: 0;
  background: #fff;
  border-radius: 2.5rem;
  border: 2px solid #bdbdbd;
  margin-bottom: 2.2rem;
  overflow: hidden;
  padding: 6px;
}
.donate-three-ways__tab {
  flex: 1 1 0;
  padding: 0.6rem 1.8rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--ltf-blue);
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  border-radius: 2.5rem;
}
.donate-three-ways__tab.is-active {
  background: var(--ltf-gradient);
  color: #fff;
  box-shadow: 0 2px 8px rgba(180, 80, 255, 0.08);
}
.donate-three-ways__tab:not(.is-active):hover {
  background: #f3eaff;
  color: var(--ltf-pink);
}
.donate-three-ways__tab-panels {
  width: 100%;
}
.donate-three-ways__tab-panel {
  display: none;
  margin-top: 2.2rem;
}
.donate-three-ways__tab-panel.is-active {
  display: block;
  animation: fadeInTabPanel 0.4s;
}
@keyframes fadeInTabPanel {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.donate-three-ways__tab-panel-inner {
  background: #fff;
  border-radius: 1.5rem;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  padding: 2.5rem 2rem 2.5rem 2rem;
  text-align: left;
  max-width: 1100px;
  margin: 0 auto;
}
.donate-three-ways__option-title {
  color: var(--ltf-blue);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.donate-three-ways__option-paragraph {
  font-size: 1.1rem;
  color: var(--ltf-black);
  margin-bottom: 2rem;
  line-height: 1.5;
}
.donate-three-ways__option-btn {
  margin-top: 1.2rem;
}
@media (max-width: 700px) {
  .donate-three-ways-section .container {
    padding: 0 0.5rem;
  }
  .donate-three-ways__title {
    font-size: 1.5rem;
  }
  .donate-three-ways__tab-panel-inner {
    padding: 1.2rem 0.5rem 1.5rem 0.5rem;
  }
  .donate-three-ways__option-title {
    font-size: 1.2rem;
  }
}

@media (max-width: 768px) {
  .donate-three-ways__tabs {
    flex-direction: column;
    gap: .5rem;
    width: 90%;
    margin: 0 auto;
    border-radius: 1.5rem;
  }
  .donate-three-ways__tab {
    border-radius: 20px;
  }
  .donate-three-ways__tab-panels {
    width: 90%;
    margin: 0 auto;
  }
  .donate-three-ways__tab-panel-inner {
    padding: 2rem;
  }
}

/* END Donate Three Ways Section */

/* START Volunteer Info Section */
.volunteer-info-section {
  position: relative;
  width: 100%;
  padding: 0;
  padding: 4rem 0;
}

.volunteer-info-bg {
  position: relative;
  width: 100vw;
  min-height: 520px;
  height: 520px;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
}

.volunteer-info-bg-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 340px;
  background: rgba(0,0,0,0.32);
  z-index: 2;
  pointer-events: none;
}

.volunteer-info-container {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto 0 auto;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 32px rgba(60, 20, 120, 0.08);
  padding: 2.5rem 2.5rem 2.5rem 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.volunteer-info__pre-title {
  color: var(--ltf-pink);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}
.volunteer-info__title {
  color: var(--ltf-blue);
  font-size: 2.1rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
}
.volunteer-info__paragraph {
  font-size: 1.1rem;
  color: var(--ltf-black);
  margin-bottom: 2.2rem;
  line-height: 1.5;
}
.volunteer-info-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.volunteer-info-block {
  background: #f5f5f5;
  border-radius: 14px;
  padding: 1.5rem 1.5rem 1.2rem 1.5rem;
}
.volunteer-info-block__title {
  color: var(--ltf-blue);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.7rem;
}
.volunteer-info-block__paragraph {
  font-size: 1rem;
  color: var(--ltf-black);
  line-height: 1.5;
}
@media (max-width: 900px) {
  .volunteer-info-container {
    max-width: 98vw;
    padding: 1.2rem 0.5rem 1.5rem 0.5rem;
  }
  .volunteer-info-bg {
    height: 200px;
    min-height: 160px;
  }
}
@media (max-width: 600px) {
  .volunteer-info-container {
    margin: -40px auto 0 auto;
    padding: 0.7rem 0.2rem 1rem 0.2rem;
  }
  .volunteer-info__title {
    font-size: 1.2rem;
  }
  .volunteer-info-block {
    padding: 1rem 0.7rem 0.7rem 0.7rem;
  }
}
/* END Volunteer Info Section */

/* START Events List Section */
.events-list-section {
  padding: 5rem 0;
  background-repeat: repeat;
}

.events-list-header {
  margin-bottom: 3rem;
}

.events-list-pretitle {
  color: var(--ltf-pink);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.events-list-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--ltf-blue);
  margin: 0;
  line-height: 1.2;
}

.events-list-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.events-list-item {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.events-list-image {
  display: block;
  width: 100%;
  height: 240px;
  overflow: hidden;
}

.events-list-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.events-list-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  height: 100%;
}

.events-list-meta {
  margin-bottom: 0.75rem;
  color: #666;
  font-size: 0.95rem;
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
}

.events-list-title-item {
  margin: 0 0 0.75rem 0;
  font-size: 1.5rem;
  line-height: 1.2;
}

.events-list-title-item a {
  color: var(--ltf-blue);
  text-decoration: none;
}

.events-list-title-item a:hover {
  color: var(--ltf-pink);
}

.events-list-excerpt {
  color: #666;
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 2rem;
}

.events-list-row-break {
  display: none;
}
.events-list-content .ltf-btn {
  width: fit-content;
  margin-top: auto;
}

@media (max-width: 900px) {
  .events-list-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 600px) {
  .events-list-section {
    padding: 2rem 0.5rem;
  }
  .events-list-title {
    font-size: 1.5rem;
  }
  .events-list-item {
    border-radius: 6px;
  }
  .events-list-content {
    padding: 1rem;
  }
}
/* END Events List Section */



.ltf-footer-menu li a {
  position: relative;
  display: inline-block;
  transition: color 0.2s;
}

.ltf-footer-menu li a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background-color: var(--ltf-pink);
  transition: width 0.5s ease;
}

.ltf-footer-menu li a:hover,
.ltf-footer-menu li.current-menu-item > a {
  color: var(--ltf-pink);
}

.ltf-footer-menu li a:hover::after,
.ltf-footer-menu li.current-menu-item > a::after {
  width: 100%;
}

/* Programs menu two columns layout */
.ltf-footer-menu-col:nth-child(3) .ltf-footer-menu {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 2rem;
}

.ltf-footer-menu-col:nth-child(3) .ltf-footer-menu li {
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .ltf-footer-menu-col:nth-child(3) .ltf-footer-menu {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

/* Combined Logo Sliders Section */
.combined-logo-sliders-section {
  width: 100%;
  padding: 3rem;
}
.combined-logo-sliders-section .sponsor-founder-logo,
.combined-logo-sliders-section .community-partner-logo {
  background: var(--ltf-white);
}

.combined-logo-sliders-section .logo-carousel-card {
  padding: 2rem;
  background: var(--ltf-white);
  border-radius: 16px;
  box-shadow: 0 4px 32px rgba(60, 20, 120, 0.08);
  max-width: 94%;
  margin: 0 auto;
}

.logo-slider-content {
  margin-bottom: 2rem;
}

.logo-slider-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ltf-blue);
  margin-bottom: 1rem;
}

/* Override individual component styles when in combined layout */
.combined-logo-sliders-section .community-partners-section,
.combined-logo-sliders-section .sponsors-founders-section {
  background: transparent !important;
  padding: 0 !important;
  margin: 0 !important;
  width: 100%;
}

.combined-logo-sliders-section .community-partners-content-layout,
.combined-logo-sliders-section .sponsors-founders-content-layout {
  margin-bottom: 0 !important;
  display: none;
}

.combined-logo-sliders-section .community-partners-logo-slider-wrapper,
.combined-logo-sliders-section .sponsors-founders-logo-slider-wrapper {
  margin-top: 0 !important;
  width: 100%;
  padding: 0 2rem;
}

/* Ensure the sliders work properly in the combined layout */
.combined-logo-sliders-section .splide {
  width: 100%;
}

.combined-logo-sliders-section .splide__track {
  width: 100%;
}

.combined-logo-sliders-section .splide__list {
  width: 100%;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .combined-logo-sliders-section {
    padding: 2rem 0;
  }
  
  .logo-slider-title {
    font-size: 1.3rem;
  }
}

.two-columns-grid:has(.two-columns-col-donation-code) .two-columns-col:has(.two-columns-col-image) .two-columns-col-content-wrapper {
  position: sticky !important;
  top: 2rem !important;
}

.two-columns-grid:has(.two-columns-col-donation-code) {
  align-items: unset;
}

.donate {overflow-x: visible!important;}

/* START Our Team Slider Section */
.our-team-slider-section {
  padding: 5rem 0;
}

.our-team-slider-section .our-team-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem auto;
}

.our-team-slider-section .our-team-pretitle {
  color: var(--ltf-pink);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.our-team-slider-section .our-team-title {
  color: var(--ltf-blue);
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.our-team-slider-section .our-team-paragraph {
  font-size: 1.1rem;
  line-height: 1.6;
}

.our-team-slider-section .team-member-card {
  display: grid;
  grid-template-columns: 500px 1fr;
  gap: 3rem;
  align-items: center;
  background-color: var(--ltf-white);
  padding: 3rem 3rem 4rem 3rem;
  border-radius: 16px;
  height: 100%;
}

.our-team-slider-section .team-member-photo img {
  width: 100%;
  height: 100%;
  max-height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.our-team-slider-section .team-member-name {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--ltf-blue);
  margin: 0 0 0.25rem 0;
}

.our-team-slider-section .team-member-position {
  font-size: .9rem;
  font-weight: 700;
  color: var(--ltf-black);
  text-transform: uppercase;
  letter-spacing: 0;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.our-team-slider-section .team-member-bio {
  font-size: 1rem;
  line-height: 1.6;
}

.our-team-slider-section .our-team-slider .splide__arrow {
  background: transparent;
  opacity: 0.7;
  transform: translateY(-100%);
}
.our-team-slider-section .our-team-slider .splide__arrow svg {
  fill: var(--ltf-blue);
}
.our-team-slider-section .our-team-slider .splide__arrow:hover {
  opacity: 1;
}

.our-team-slider-section .our-team-slider .splide__arrow:hover svg {
fill: var(--ltf-blue);
}

.our-team-slider-section .our-team-slider .splide__arrow--prev {
left: -50px;
}

.our-team-slider-section .our-team-slider .splide__arrow--next {
right: -50px;
}


.our-team-slider-section .our-team-slider .splide__pagination {
  bottom: 1.5rem;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.our-team-slider-section .our-team-slider .splide__pagination__page {
  background: #cfcfcf;
  width: 50px;
  height: 5px;
  border-radius: 2.5px;
  margin: 0;
  padding: 0;
  border: none;
  position: relative;
  overflow: hidden;
}

.our-team-slider-section .our-team-slider .splide__pagination__page::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #7d13ea;
  transform: translateX(-100%);
  }
  
  .our-team-slider-section .our-team-slider .splide__pagination__page.is-active::before {
      animation: teamSliderProgressBarFill 8s linear forwards;
  }
  
  @keyframes teamSliderProgressBarFill {
  from {
      transform: translateX(-100%);
  }
  to {
      transform: translateX(0);
  }
  }
  
  .our-team-slider-section .our-team-slider .splide__pagination__page.is-active {
      transform: none;
      background: #dbdbdb;
  }


@media (max-width: 992px) {
  .our-team-slider-section .team-member-card {
      grid-template-columns: 1fr;
      text-align: center;
  }
  .our-team-slider-section .team-member-photo {
      margin: 0 auto;
      max-width: 300px;
  }
}

@media (max-width: 768px) {
  .our-team-slider-section .our-team-title {
      font-size: 2.2rem;
  }
  .our-team-slider-section .team-member-card {
      padding: 2rem;
  }
}

@media (max-width: 1200px) {
.our-team-slider-section .our-team-slider .splide__arrow--prev {
  left: 10px;
}
}

@media (max-width: 600px) {
.our-team-slider-section .our-team-slider .splide__arrow {
  display: none;
}
}
/* END Our Team Slider Section */


/* START Press Posts Grid Section */
.press-posts-grid-section {
  padding: 5rem 0;
  background-repeat: repeat;
}

.press-posts-header {
  margin-bottom: 3rem;
}

.press-posts-pretitle {
  color: var(--ltf-pink);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.press-posts-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--ltf-blue);
  margin: 0;
  line-height: 1.2;
}

.press-posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.press-posts-item {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.press-posts-image {
  display: block;
  width: 100%;
  height: 280px;
  overflow: hidden;
}

.press-posts-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.press-posts-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  height: 100%;
}

.press-posts-meta {
  margin-bottom: 0.75rem;
  color: #666;
  font-size: 0.95rem;
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
}

.press-posts-title-item {
  margin: 0 0 0.75rem 0;
  font-size: 1.5rem;
  line-height: 1.2;
}

.press-posts-title-item a {
  color: var(--ltf-blue);
  text-decoration: none;
}

.press-posts-title-item a:hover {
  color: var(--ltf-pink);
}

.press-posts-excerpt {
  color: #666;
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 2rem;
}

.press-posts-row-break {
  display: none;
}
.press-posts-content .ltf-btn {
  width: fit-content;
  margin-top: auto;
}

@media (max-width: 900px) {
  .press-posts-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 600px) {
  .press-posts-section {
    padding: 2rem 0.5rem;
  }
  .press-posts-title {
    font-size: 1.5rem;
  }
  .press-posts-item {
    border-radius: 6px;
  }
  .press-posts-content {
    padding: 1rem;
  }
}
/* END Press Posts Grid Section */
.safety-support .two-columns-col-paragraph ul li {
  line-height: 1.5;
}


/* START Single Post Adjusts */
.single-post #main-content {
  padding: 6rem 0;
}

.single-post .h2, h2 {
  font-size: 1.5rem;
}

@media (max-width: 700px) {
  .single-post #main-content {
    padding: 2rem 0;
  }
}

.single-post-featured-bg {
  width: 100%;
  max-height: 600px;
  height: 40vw;
  min-height: 220px;
  background-size: cover;
  background-position: center 10%;;
  background-repeat: no-repeat;
  border-radius: 16px;
  margin-bottom: 2rem;
  display: block;
}

@media (max-width: 700px) {
  .single-post-featured-bg {
    height: 40vw;
    max-height: 300px;
    min-height: 120px;
  }
}


.single-post-navigation {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  margin: 5rem 0 5rem 0;
}
.single-post-nav-item {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(40, 40, 60, 0.07);
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex: 1 1 0;
  min-width: 0;
  max-width: 48%;
  transition: box-shadow 0.2s;
}
.single-post-nav-item a {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  text-decoration: none;
  width: 100%;
}
.single-post-nav-thumb img {
  border-radius: 12px;
  width: 100px;
  height: 100%;
  object-fit: cover;
  box-shadow: 0 2px 8px rgba(40, 40, 60, 0.08);
}
.single-post-nav-label {
  color: var(--ltf-pink);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
  display: block;
}
.single-post-nav-title {
  color: var(--ltf-blue);
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.2;
  display: block;
  max-width: 320px;
  white-space: normal;
}
@media (max-width: 900px) {
  .single-post-navigation {
    flex-direction: column;
    gap: 1.5rem;
  }
  .single-post-nav-item {
    max-width: 100%;
  }
}
.single-post-date {
  color: var(--ltf-blue);
  font-size: 1rem;
  font-weight: 500;
  margin: 1.2rem 0 2rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: center;
}

.single-post-nav-item.next a {
  flex-direction: row-reverse;
  text-align: right;
}
.single-post-nav-item.next .single-post-nav-thumb {
  margin-left: 0;
  margin-right: 0;
}
/* END Single Post Adjusts */

/* START Single Stories Adjusts */
.single-stories #main-content {
  padding: 6rem 0;
}
.single-stories .h2,
.single-stories h2,
.single-stories .h1,
.single-stories h1 {
  font-size: 3.5rem;
  text-align: center;
}

@media (max-width: 700px) {
  .single-stories .h2,
  .single-stories h2,
  .single-stories .h1,
  .single-stories h1 {
    font-size: 2.2rem;
  }
}
.single-stories p {
  color: var(--ltf-black);
  margin-bottom: 2rem;
  font-size: 2rem;
  line-height: 1.4;
  font-weight: 300;
}

@media (max-width: 700px) {
  .single-stories #main-content {
    padding: 3rem 1rem;
  }
  .single-stories p {
    font-size: 1.3rem;
  }
}
/* END Single Stories Adjusts */

/* START Success Stories List Section */
.success-stories-list-section {
  padding: 5rem 0;
}

.success-stories-list-section .success-stories-list-header {
  max-width: 700px;
  margin: 0 auto 3rem auto;
  text-align: center;
}
.success-stories-list-section .success-stories-pretitle {
  color: var(--ltf-pink);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.success-stories-list-section .success-stories-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--ltf-blue);
  margin: 0 0 1.5rem 0;
  line-height: 1.2;
}
.success-stories-list-section .success-stories-paragraph {
  font-size: 1.18rem;
  color: var(--ltf-black);
  margin-bottom: 1rem;
  line-height: 1.25;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.success-stories-list-section .success-stories-list {
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
}

.success-stories-list-section .success-story-row {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 3rem;
}
.success-stories-list-section .success-story-row.left .success-story-content {
  order: 1;
  border-radius: 20px;
  margin-right: auto;
}
.success-stories-list-section .success-story-row.right .success-story-content {
  order: 2;
  border-radius: 20px;
  margin-left: auto;
  width: 100%;
}
.success-stories-list-section .success-story-content {
  background: #fff;
  padding: 4rem;
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

.success-stories-list-section .success-story-row.left .success-story-content::before {
  left: 30px;
  border-right: none;
}

.success-stories-list-section .success-story-row.right .success-story-content::before {
  right: 30px;
  border-left: none;
}

.success-stories-list-section .success-story-content > * {
  position: relative;
  z-index: 1;
}

@media (max-width: 1100px) {
  .success-stories-list-section .success-story-content {
    padding: 2.5rem 1.2rem;
  }
  .success-stories-list-section .success-story-row.left .success-story-content::before,
  .success-stories-list-section .success-story-row.right .success-story-content::before {
    height: calc(100% - 20px);
    width: calc(100% - 10px);
    left: 10px;
    right: 10px;
  }
}

@media (max-width: 700px) {
  .success-stories-list-section .success-story-content {
    padding: 1.5rem 1rem;
  }
  .success-stories-list-section .success-story-row.left .success-story-content::before,
  .success-stories-list-section .success-story-row.right .success-story-content::before {
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
  }
}

.success-stories-list-section .success-story-highlight-text {
  margin-bottom: 1rem;
  font-size: 1.6rem;
  line-height: 1.4;
  color: var(--ltf-blue);
  font-weight: 300;
  max-width: 70%;
}
.success-stories-list-section .success-story-author-name {
  font-size: 1.6rem;
  color: var(--ltf-blue);
  margin-bottom: 2.5rem;
  font-weight: 100;
  font-style: italic;
}

.success-stories-list-section .two-columns-col-title {
  color: var(--ltf-blue);
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 3.5rem;
  line-height: 1.2;
  text-align: center;
}



@media (max-width: 1100px) {
  .success-stories-list-section .success-story-content {
    padding: 2rem 1.2rem;
    min-width: 0;
    max-width: 100%;
  }
  .success-stories-list-section .success-story-row {
    gap: 1.5rem;
  }
}
@media (max-width: 700px) {
  .success-stories-list-section {
    padding: 3rem 0;
  }
  .success-stories-list-section .success-stories-title {
    font-size: 1.5rem;
  }
  .success-stories-list-section .success-story-row {
    flex-direction: column;
    gap: 0;
  }
  .success-stories-list-section .success-story-row.left .success-story-content,
  .success-stories-list-section .success-story-row.right .success-story-content {
    border-radius: 18px;
    border-left: 0;
    border-right: 0;
    margin: 0;
  }
  .success-stories-list-section .success-story-content {
    padding: 1.5rem 1rem;
  }
  .success-stories-list-section .success-story-highlight-text {
    font-size: 1.2rem;
    max-width: 90%;
  }
}
/* START Success Stories List Section */



/* =========================================== LTF Contact Form =========================================== */
.modern-form-container {
  max-width: 700px;
  font-family: var(--font-inter);
}

.modern-form-container .form-submit {
margin-bottom: 0;
}

.modern-form .form-group {
  margin-bottom: 1rem;
}

.modern-form .form-group-row {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1rem;
}

.modern-form .form-group-row .form-group {
  flex: 1;
  margin-bottom: 0;
}

.modern-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 0;
  color: #333;
}

.modern-form label .required {
  font-weight: 400;
  color: #777;
}

.modern-form input[type="text"],
.modern-form input[type="email"],
.modern-form textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.modern-form textarea {
  min-height: 150px;
  resize: vertical;
}

.modern-form input[type="text"]:focus,
.modern-form input[type="email"]:focus,
.modern-form textarea:focus {
  outline: none;
  border-color: var(--ltf-blue);
  box-shadow: 0 0 0 3px rgba(34, 106, 237, 0.2);
}

.modern-form .form-submit {
  text-align: right;
}

.modern-form button[type="submit"] {
  background-color: var(--ltf-blue);
  color: white;
  border: none;
  padding: 0.8rem 2rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s;
}

.modern-form button[type="submit"]:hover {
  background-color: var(--ltf-pink);
}

.modern-form .form-error {
  color: #D8000C;
  font-size: 0.9rem;
  margin-top: 0.3rem;
}

.modern-form-success {
  padding: 1rem;
  background-color: #DFF2BF;
  color: #4F8A10;
  border: 1px solid #4F8A10;
  border-radius: 8px;
  margin-bottom: 1.5rem;
}

.modern-form-error {
  padding: 1rem;
  background-color: #FFD2D2;
  color: #D8000C;
  border: 1px solid #D8000C;
  border-radius: 8px;
  margin-bottom: 1.5rem;
}

.iframe-map {
  border: 0;
  background: #fff;
  padding: 1rem;
  border-radius: 10px;
}


/* START Footer Modal Video player */
.ltf-youtube-modal {
  position: fixed; z-index: 9999; top: 0; left: 0; width: 100vw; height: 100vh;
  display: flex; align-items: center; justify-content: center;
}
.ltf-youtube-modal__overlay {
  position: absolute; top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(0,0,0,0.7);
}
.ltf-youtube-modal__content {
  position: relative; background: #fff; border-radius: 10px; padding: 0;
  max-width: 90vw; max-height: 80vh; box-shadow: 0 8px 40px rgba(0,0,0,0.3);
  z-index: 2; display: flex; flex-direction: column;
}
.ltf-youtube-modal__close {
  position: absolute; top: 10px; right: 20px; font-size: 2rem; color: #333; cursor: pointer; z-index: 3;
}
.ltf-youtube-modal__iframe-wrapper {
  width: 70vw; max-width: 900px; height: 40vw; max-height: 500px; min-width: 320px; min-height: 180px;
  display: flex; align-items: center; justify-content: center;
}
.ltf-youtube-modal__iframe-wrapper iframe {
  width: 100%; height: 100%; border: none; border-radius: 10px;
}
/* END Footer Modal Video player */


/* START - Woo Receipt Page */
.woocommerce-table--order-details {
 background: #fff;
 padding: 2rem;
}

.woocommerce-customer-details address {
  background: #fff;
  padding: 2rem!important;
}

.woocommerce-order-received .wc-item-meta {
  display: none;
}

.woocommerce-order-received .woocommerce ul.order_details {
  background: #fff;
  padding: 2rem;
}

/* END - Woo Receipt Page */


/* START - Community Partner */
.community-partners-section {
  padding: 5rem 0;
}

.community-partners-logo-slider-wrapper {
  max-width: 100%;
  overflow: hidden;
}

.community-partners-logo-slider .splide__slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

.community-partner-logo {
  background: #f5f5f5;
}

.community-partner-logo img {
  max-height: 60px;
  width: auto;
  opacity: 1;
  transition: all 0.3s ease;
  margin: 0 2rem;
  mix-blend-mode: darken;
}

.community-partners-pretitle {
  color: var(--ltf-pink);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.community-partners-title {
  color: var(--ltf-blue);
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 2.5rem;
  text-align: center;
}
/* END - Community Partner */


/* START - Sponsors Founders */
.sponsors-founders-section {
  padding: 5rem 0;
}
.sponsors-founders-logo-slider-wrapper {
  max-width: 100%;
  overflow: hidden;
}

.sponsors-founders-logo-slider .splide__slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

.sponsor-founder-logo {
  background: #f5f5f5;
}

.sponsor-founder-logo img {
  max-height: 60px;
  width: auto;
  opacity: 1;
  transition: all 0.3s ease;
  margin: 0 2rem;
  mix-blend-mode: darken;
}

.sponsors-founders-pretitle {
  color: var(--ltf-pink);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.sponsors-founders-title {
  color: var(--ltf-blue);
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 2.5rem;
  text-align: center;
}
/* END - Sponsors Founders */


/* =========================================== Simple Paragraph =========================================== */
.simple-paragraph-section {
  padding: 4rem 2rem;
}

.simple-paragraph-pretitle {
  color: var(--ltf-pink);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}

.simple-paragraph-title {
  color: var(--ltf-blue);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.simple-paragraph-text {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--ltf-black);
}

.simple-paragraph-text h3 {
  font-size: 1.55rem;
  display: flex;
  color: var(--ltf-blue);
}

.cards-list .simple-paragraph-text ul {
  padding-left: 0;
}
.cards-list .simple-paragraph-text ul li {
  background: #fff;
  padding: 2rem;
  margin-bottom: 1rem;
  border-radius: 10px;
}

.cards-list .simple-paragraph-text ul li::marker {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  background-color: var(--ltf-pink);
}

.simple-paragraph-text p:last-child {
  margin-bottom: 0;
}

.simple-paragraph-button {
  margin-top: 2rem;
}