.elementor-23682 .elementor-element.elementor-element-c03977b{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--background-transition:0.3s;}/* Start custom CSS for html, class: .elementor-element-f7e64c1 *//* ================================================ */
/* ============= FONT IMPORT ===================== */
/* ================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

/* ================================================ */
/* ============= GENERAL STYLES ================== */
/* ================================================ */

body {
  font-family: 'Inter', sans-serif !important;
}

.export-gallery-wrapper {
  font-family: 'Inter', sans-serif !important;
  background: linear-gradient(135deg, #f8f9fb 0%, #eceff4 100%);
  color: #555;
  overflow-x: hidden;
}

.export-gallery-wrapper * {
  font-family: 'Inter', sans-serif !important;
}

/* Section Spacing */
.photo-gallery-section,
.video-gallery-section {
  padding: 60px 20px;
  text-align: center;
  max-width: 1400px;
  margin: 0 auto;
}

.video-gallery-section {
  padding-top: 80px;
  background: #fafbfc;
}

/* ================================================ */
/* ============ SECTION TITLES =================== */
/* ================================================ */

.section-title {
  font-size: 2.6rem;
  margin-bottom: 15px;
  color: #1f78d1;
  font-weight: 700;
  letter-spacing: -0.5px;
  animation: fadeInDown 0.8s ease;
  position: relative;
  display: inline-block;
  font-family: 'Inter', sans-serif !important;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 3px;
  background: linear-gradient(90deg, #1f78d1, #4a9de8);
  border-radius: 2px;
}

.video-title {
  color: #1f78d1;
}

.section-subtitle {
  font-size: 1.05rem;
  color: #6b7280;
  margin-bottom: 50px;
  font-weight: 400;
  animation: fadeInUp 1s ease;
  font-family: 'Inter', sans-serif !important;
}

/* ================================================ */
/* ============== ANIMATIONS ===================== */
/* ================================================ */

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* ================================================ */
/* =========== PHOTO GALLERY - TABS ============== */
/* ================================================ */

.tabs {
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(31, 120, 209, 0.06);
  overflow: hidden;
  animation: scaleIn 0.6s ease;
}

/* Main Tab Navigation */
.tab-nav {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  background: linear-gradient(135deg, #fafbfc 0%, #f3f4f6 100%);
  border-bottom: 2px solid #e5e7eb;
}

.tab-nav li {
  flex: 1;
  text-align: center;
}

.tab-link {
  display: block;
  padding: 16px 20px;
  text-decoration: none !important;
  color: #6b7280;
  font-size: 1.3rem;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  font-family: 'Inter', sans-serif !important;
}

.tab-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #1f78d1, #4a9de8);
  transition: width 0.3s ease;
}

.tab-link:hover::before {
  width: 100%;
}

.tab-link.active {
  background: linear-gradient(135deg, #1f78d1 0%, #4a9de8 100%);
  color: #f2f6fc;
}

.tab-link:hover {
  color: #1f78d1;
}

.tab-link.active:hover {
  color: #f2f6fc;
}

/* Sub Tab Navigation */
.sub-tab-nav {
  display: flex;
  list-style: none;
  padding: 16px;
  margin: 0;
  background: #fafbfc;
  border-bottom: 1px solid #e5e7eb;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.sub-tab-nav li {
  text-align: center;
}

.sub-tab-link {
  display: block;
  padding: 10px 24px;
  text-decoration: none !important;
  color: #6b7280;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.3s ease;
  border-radius: 20px;
  background: white;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
  border: 1.5px solid transparent;
  font-family: 'Inter', sans-serif !important;
}

.sub-tab-link.active,
.sub-tab-link:hover {
  background: linear-gradient(135deg, #1f78d1 0%, #4a9de8 100%);
  color: #f2f6fc;
  box-shadow: 0 2px 8px rgba(31, 120, 209, 0.15);
  border-color: transparent;
  transform: translateY(-1px);
}

/* Tab Content */
.tab-content {
  display: none;
  padding: 28px 20px;
  animation: fadeIn 0.4s ease;
}

.tab-content.active {
  display: block;
}

.sub-tab-content {
  display: none;
}

.sub-tab-content.active {
  display: block;
  animation: fadeInUp 0.5s ease;
}

/* ================================================ */
/* ========= PHOTO GALLERY - GRID ================ */
/* ================================================ */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  justify-content: center;
  margin-top: 28px;
}

/* Image Wrapper */
.image-wrapper {
  position: relative;
  overflow: hidden;
  height: 320px;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.image-wrapper:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(31, 120, 209, 0.12);
}

.image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.image-wrapper:hover img {
  transform: scale(1.05);
}

/* Overlay */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(25, 90, 170, 0.75);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.4s ease-in-out;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 14px;
  padding: 20px;
}

.image-wrapper:hover .overlay {
  opacity: 1;
}

.image-description {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 10px;
  text-align: center;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
  transform: translateY(8px);
  transition: transform 0.4s ease-in-out 0.05s;
  font-family: 'Inter', sans-serif !important;
  color: #ffffff;
}

.image-wrapper:hover .image-description {
  transform: translateY(0);
}

.logistics-info {
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
  background: rgba(255, 255, 255, 0.15);
  padding: 8px 18px;
  border-radius: 18px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transform: translateY(8px);
  transition: transform 0.4s ease-in-out 0.1s;
  font-family: 'Inter', sans-serif !important;
  color: #ffffff;
}

.image-wrapper:hover .logistics-info {
  transform: translateY(0);
}

/* ================================================ */
/* ======= CUSTOM IMAGE LIGHTBOX ================= */
/* ================================================ */

.custom-lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.94);
  z-index: 10000;
  opacity: 0;
  transition: opacity 0.4s ease;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.custom-lightbox.active {
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  animation: fadeIn 0.4s ease;
}

.lightbox-content {
  position: relative;
  width: 90%;
  max-width: 1200px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  animation: scaleIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Close Button */
.lightbox-close {
  position: absolute;
  top: -55px;
  right: 0;
  width: 48px;
  height: 48px;
  background: rgba(31, 120, 209, 0.9);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
  z-index: 10;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.3);
}

.lightbox-close:hover {
  transform: scale(1.1) rotate(90deg);
  background: rgba(31, 120, 209, 0.8);
  box-shadow: 0 5px 20px rgba(31, 120, 209, 0.4);
}

.lightbox-close svg {
  width: 30px;
  height: 30px;
  stroke-width: 2.5;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
}

/* Navigation Buttons */
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  background: rgba(31, 120, 209, 0.9);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
  z-index: 10;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.3);
}

.lightbox-nav:hover:not(.disabled),
.lightbox-nav:active:not(.disabled) {
  transform: translateY(-50%) scale(1.1);
  background: rgba(31, 120, 209, 0.8);
  box-shadow: 0 5px 20px rgba(31, 120, 209, 0.4);
}

.lightbox-nav.disabled {
  opacity: 0.3;
  cursor: not-allowed;
  background: rgba(31, 120, 209, 0.5);
}

.lightbox-prev {
  left: -70px;
}

.lightbox-next {
  right: -70px;
}

.lightbox-nav svg {
  width: 32px;
  height: 32px;
  stroke-width: 2.5;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
}

/* Image Wrapper */
.lightbox-image-wrapper {
  position: relative;
  width: 100%;
  background: #000;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
}

.lightbox-image {
  max-width: 100%;
  max-height: 75vh;
  display: block;
  object-fit: contain;
}

/* Caption */
.lightbox-caption {
  margin-top: 18px;
  text-align: center;
  padding: 18px 24px;
  background: rgba(25, 90, 170, 0.92);
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.lightbox-caption p {
  font-size: 1.1rem;
  font-weight: 500;
  color: #ffffff;
  margin: 0;
  line-height: 1.6;
  font-family: 'Inter', sans-serif !important;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

/* ================================================ */
/* =========== VIDEO GALLERY ===================== */
/* ================================================ */

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 32px;
  margin-top: 40px;
  animation: fadeInUp 0.6s ease;
  justify-items: center;
}

/* Video Card */
.video-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  cursor: pointer;
  width: 100%;
  max-width: 500px;
}

.video-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 28px rgba(31, 120, 209, 0.14);
}

/* Video Container */
.video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  overflow: hidden;
  background: #000;
}

.video-player {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  pointer-events: none;
}

.video-card:hover .video-player {
  transform: scale(1.02);
}

/* Play Button Overlay */
.play-button-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.25);
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 2;
}

.play-button-overlay:hover {
  background: rgba(0, 0, 0, 0.45);
}

.play-button-overlay:hover .play-icon {
  transform: scale(1.12);
}

/* Play Icon */
.play-icon {
  width: 76px;
  height: 76px;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  filter: drop-shadow(0 3px 12px rgba(0, 0, 0, 0.3));
}

/* Video Info */
.video-info {
  padding: 22px;
  text-align: left;
  background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
}

.video-title-text {
  font-size: 1.2rem;
  font-weight: 600;
  color: #1f78d1;
  margin: 0 0 8px 0;
  transition: color 0.3s ease;
  font-family: 'Inter', sans-serif !important;
}

.video-card:hover .video-title-text {
  color: #4a9de8;
}

.video-description {
  font-size: 0.92rem;
  color: #6b7280;
  margin: 0;
  line-height: 1.5;
  font-family: 'Inter', sans-serif !important;
}

/* ================================================ */
/* ============= VIDEO MODAL ===================== */
/* ================================================ */

.video-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.94);
  z-index: 10000;
  opacity: 0;
  transition: opacity 0.4s ease;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.video-modal.active {
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  animation: fadeIn 0.4s ease;
}

.video-modal-content {
  position: relative;
  width: 90%;
  max-width: 1200px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  animation: scaleIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Close Button */
.video-modal-close {
  position: absolute;
  top: -55px;
  right: 0;
  width: 48px;
  height: 48px;
  background: rgba(31, 120, 209, 0.9);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
  z-index: 10;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.3);
}

.video-modal-close:hover {
  transform: scale(1.1) rotate(90deg);
  background: rgba(31, 120, 209, 0.8);
  box-shadow: 0 5px 20px rgba(31, 120, 209, 0.4);
}

.video-modal-close svg {
  width: 30px;
  height: 30px;
  stroke-width: 2.5;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
}

/* Navigation Buttons */
.video-modal-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  background: rgba(31, 120, 209, 0.9);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
  z-index: 10;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.3);
}

.video-modal-nav:hover:not(.disabled),
.video-modal-nav:active:not(.disabled) {
  transform: translateY(-50%) scale(1.1);
  background: rgba(31, 120, 209, 0.8);
  box-shadow: 0 5px 20px rgba(31, 120, 209, 0.4);
}

.video-modal-nav.disabled {
  opacity: 0.3;
  cursor: not-allowed;
  background: rgba(31, 120, 209, 0.5);
}

.video-modal-prev {
  left: -70px;
}

.video-modal-next {
  right: -70px;
}

.video-modal-nav svg {
  width: 32px;
  height: 32px;
  stroke-width: 2.5;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
}

/* Video Player Wrapper */
.video-modal-player-wrapper {
  position: relative;
  width: 100%;
  background: #000;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}

.video-modal-player {
  width: 100%;
  max-height: 70vh;
  display: block;
  outline: none;
}

/* Video Modal Info */
.video-modal-info {
  margin-top: 18px;
  text-align: center;
  padding: 18px 24px;
  background: rgba(25, 90, 170, 0.92);
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.video-modal-title {
  font-size: 1.35rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 8px 0;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  font-family: 'Inter', sans-serif !important;
}

.video-modal-description {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.95);
  margin: 0;
  line-height: 1.5;
  font-family: 'Inter', sans-serif !important;
}

/* ================================================ */
/* ======= CONTENT PROTECTION ==================== */
/* ================================================ */

/* Disable text/image selection */
.export-gallery-wrapper,
.export-gallery-wrapper * {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
  user-drag: none;
}

/* Prevent image dragging */
.image-wrapper img,
.video-player,
.lightbox-image,
.video-modal-player {
  pointer-events: none;
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
  user-drag: none;
  -webkit-touch-callout: none;
}

/* Re-enable pointer events for clickable elements */
.image-wrapper,
.video-card,
.play-button-overlay,
.lightbox-close,
.lightbox-nav,
.video-modal-close,
.video-modal-nav,
.video-modal-player {
  pointer-events: auto;
}

/* ================================================ */
/* ============ RESPONSIVE DESIGN ================ */
/* ================================================ */

@media (max-width: 1024px) {
  .section-title {
    font-size: 2.2rem;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
  }
  
  .video-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 26px;
  }

  .lightbox-prev {
    left: 20px;
  }

  .lightbox-next {
    right: 20px;
  }

  .lightbox-close {
    top: 20px;
    right: 20px;
  }

  .video-modal-prev {
    left: 20px;
  }

  .video-modal-next {
    right: 20px;
  }

  .video-modal-close {
    top: 20px;
    right: 20px;
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 1.95rem;
  }
  
  .section-subtitle {
    font-size: 0.98rem;
  }

  .tab-link {
    font-size: 1.15rem;
    padding: 14px;
  }

  .sub-tab-link {
    font-size: 0.9rem;
    padding: 9px 18px;
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 16px;
  }
  
  .video-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .image-wrapper {
    height: 280px;
  }

  .play-icon {
    width: 64px;
    height: 64px;
  }
  
  .video-info {
    padding: 18px;
  }

  .lightbox-content,
  .video-modal-content {
    width: 95%;
  }

  .lightbox-nav,
  .video-modal-nav {
    width: 50px;
    height: 50px;
  }

  .lightbox-nav svg,
  .video-modal-nav svg {
    width: 28px;
    height: 28px;
  }

  .lightbox-prev {
    left: 20px;
  }

  .lightbox-next {
    right: 20px;
  }

  .video-modal-prev {
    left: 20px;
  }

  .video-modal-next {
    right: 20px;
  }

  .lightbox-close,
  .video-modal-close {
    width: 50px;
    height: 50px;
    top: 20px;
    right: 20px;
  }

  .lightbox-close svg,
  .video-modal-close svg {
    width: 28px;
    height: 28px;
  }

  .lightbox-caption {
    padding: 14px 18px;
    margin-top: 14px;
  }

  .lightbox-caption p {
    font-size: 0.9rem;
  }

  .video-modal-info {
    padding: 14px 18px;
    margin-top: 14px;
  }

  .video-modal-title {
    font-size: 1.15rem;
  }

  .video-modal-description {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .photo-gallery-section,
  .video-gallery-section {
    padding: 40px 14px;
  }

  .section-title {
    font-size: 1.75rem;
  }
  
  .section-title::after {
    width: 55px;
    height: 2.5px;
  }

  .tab-link {
    font-size: 0.98rem;
    padding: 12px;
  }

  .sub-tab-link {
    font-size: 0.82rem;
    padding: 7px 14px;
  }

  .gallery-grid,
  .video-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .image-wrapper {
    height: 250px;
  }

  .image-description {
    font-size: 1.08rem;
  }

  .logistics-info {
    font-size: 0.88rem;
    padding: 6px 14px;
  }

  .play-icon {
    width: 54px;
    height: 54px;
  }

  .video-title-text {
    font-size: 1.05rem;
  }

  .video-description {
    font-size: 0.87rem;
  }

  .lightbox-content,
  .video-modal-content {
    width: 100%;
    max-height: 100vh;
    padding: 0 10px;
  }

  .lightbox-image {
    max-height: 60vh;
  }

  .video-modal-player {
    max-height: 50vh;
  }

  .lightbox-nav,
  .video-modal-nav {
    width: 46px;
    height: 46px;
  }

  .lightbox-nav svg,
  .video-modal-nav svg {
    width: 26px;
    height: 26px;
    stroke-width: 3;
  }

  .lightbox-prev {
    left: 20px;
  }

  .lightbox-next {
    right: 20px;
  }

  .video-modal-prev {
    left: 20px;
  }

  .video-modal-next {
    right: 20px;
  }

  .lightbox-close,
  .video-modal-close {
    width: 46px;
    height: 46px;
    top: 20px;
    right: 20px;
  }

  .lightbox-close svg,
  .video-modal-close svg {
    width: 26px;
    height: 26px;
    stroke-width: 3;
  }

  .lightbox-caption p {
    font-size: 0.9rem;
  }

  .video-modal-title {
    font-size: 1.05rem;
  }

  .video-modal-description {
    font-size: 0.9rem;
  }
}

/* ================================================ */
/* ========== ACCESSIBILITY & POLISH ============= */
/* ================================================ */

/* Focus States */
.tab-link:focus,
.sub-tab-link:focus,
.play-button-overlay:focus,
.lightbox-close:focus,
.lightbox-nav:focus:not(.disabled),
.video-modal-close:focus,
.video-modal-nav:focus:not(.disabled) {
  outline: 3px solid #4a9de8;
  outline-offset: 3px;
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Prevent body scroll when modal is open */
body.modal-open {
  overflow: hidden;
}

/* Print Styles */
@media print {
  .play-button-overlay,
  .overlay,
  .custom-lightbox,
  .video-modal {
    display: none !important;
  }
}

/* Touch improvements for mobile */
@media (hover: none) and (pointer: coarse) {
  .lightbox-nav:active:not(.disabled),
  .video-modal-nav:active:not(.disabled),
  .lightbox-close:active,
  .video-modal-close:active {
    transform: scale(0.95);
  }
}/* End custom CSS */