
  :root{
    --brand-blue:#192F89;
    --accent:#1174BA;
    --gradient-start: rgba(25,47,137,0.92);
    --gradient-end: rgba(17,116,186,0.85);
    --card-shadow: 0 8px 24px rgba(25,47,137,.08);
    --card-shadow-hover: 0 16px 40px rgba(25,47,137,.18);
  }

  .gallery-hero{
    position: relative;
    width: 100%;
    height: 60vh;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
    background: url("/img/gallerypage/gp21.JPG") center / cover no-repeat;
  }

  .gallery-hero::after{
    content:"";
    position:absolute; 
    inset:0;
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    /* animation: gradientShift 8s ease-in-out infinite alternate; */
  }
  
  @keyframes gradientShift {
    0% { background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%); }
    50% { background: linear-gradient(135deg, var(--gradient-end) 0%, var(--gradient-start) 100%); }
  }

  .hero-content{
    position: relative;
    z-index: 1;
    padding: 2rem 1.5rem;
    max-width: 900px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1.2s ease forwards 0.3s;
  }

  @keyframes fadeInUp {
    to { opacity:1; transform: translateY(0); }
  }

  .hero-title{
    font-weight: 800;
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin: 0 0 1rem 0;
    text-shadow: 0 8px 32px rgba(0,0,0,.4);
    letter-spacing: .03em;
    line-height: 1.1;
  }

  .hero-subtitle{
    font-size: clamp(1rem, 2vw, 1.3rem);
    font-weight: 400;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto;
    text-shadow: 0 4px 16px rgba(0,0,0,.3);
    line-height: 1.6;
  }

  .gallery-section{
    background: #fff;
    padding: 64px 0 0;
    margin-bottom: 0;
  }

  .section-divider{
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--accent) 50%, transparent 100%);
    margin: 80px 0 64px;
    position: relative;
  }

  .section-divider::after{
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 0 4px #fff, 0 0 0 6px var(--accent);
  }

  .content-section-header{
    text-align: center;
    margin-bottom: 48px;
  }

  .section-label{
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 12px;
  }

  .content-section-title{
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    color: var(--brand-blue);
    margin: 0 0 24px 0;
    line-height: 1.2;
    position: relative;
    display: inline-block;
    padding-bottom: 12px;
  }

  .content-section-title::after{
    content:"";
    position:absolute;
    bottom: 0;
    left:50%;
    transform:translateX(-50%);
    width:60px;
    height:4px;
    background:linear-gradient(90deg, var(--accent), var(--brand-blue));
    border-radius:2px;
  }

  .content-section-description{
    font-size: 1.05rem;
    color: #5a6c8f;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
  }

  .featured-image-section{
    margin-bottom: 0px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards 0.3s;
  }

  .featured-image-wrapper{
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(25,47,137,.15);
    transition: all .4s ease;
    background: #fff;
    max-width: 900px;
    margin: 0 auto;
    cursor: pointer;
  }

  .featured-image-wrapper:hover{
    transform: translateY(-8px);
    box-shadow: 0 30px 80px rgba(25,47,137,.25);
  }

  .featured-image-container{
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    overflow: hidden;
    background: linear-gradient(135deg, #e8eef5, #f5f8fc);
    cursor: pointer;
  }

  .featured-image{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
    transition: transform .5s ease, opacity .4s ease;
    opacity: 0;
  }

  .featured-image.loaded {
    opacity: 1;
    animation: fadeInImage 0.4s ease-in-out;
  }

  .featured-image-wrapper:hover .featured-image{
    transform: scale(1.05);
  }

  .featured-overlay{
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(25,47,137,0.9) 100%);
    opacity: 0;
    transition: opacity .4s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 32px;
    cursor: pointer;
  }

  .featured-image-wrapper:hover .featured-overlay{
    opacity: 1;
  }

  .featured-caption{
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    text-shadow: 0 2px 8px rgba(0,0,0,.3);
    margin-bottom: 8px;
  }

  .featured-hint{
    color: rgba(255,255,255,0.85);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 6px;
  }

  .featured-hint svg{
    width: 16px;
    height: 16px;
  }

  .featured-nav-btn{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(255,255,255,0.98), rgba(255,255,255,0.95));
    backdrop-filter: blur(8px);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .35s cubic-bezier(.4,0,.2,1);
    z-index: 3;
    box-shadow: 0 4px 20px rgba(25,47,137,.15), 0 0 0 1px rgba(25,47,137,.08);
    padding: 0;
  }

  .featured-nav-btn svg{
    width: 28px;
    height: 28px;
    stroke: var(--brand-blue);
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: all .35s cubic-bezier(.4,0,.2,1);
  }

  .featured-nav-btn:hover{
    background: linear-gradient(135deg,var(--brand-blue),var(--accent));
    transform: translateY(-50%) scale(1.12);
    box-shadow: 0 8px 32px rgba(25,47,137,.3), 0 0 0 2px rgba(25,47,137,.15);
  }

  .featured-nav-btn:hover svg{
    stroke: #fff;
    transform: scale(1.1);
  }

  .featured-nav-btn:active{
    transform: translateY(-50%) scale(1.02);
  }

  .featured-nav-btn.prev{ left: 20px; }
  .featured-nav-btn.next{ right: 20px; }

  .image-counter{
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(25,47,137,0.9);
    backdrop-filter: blur(10px);
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(0,0,0,.2);
  }

  .thumbnail-section{
    margin-bottom: 56px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards 0.5s;
  }

  .carousel-header{
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-bottom: 20px;
  }

  .carousel-title{
    display: none;
  }

  .carousel-controls{
    display: flex;
    gap: 8px;
  }

  .thumbnail-carousel{
    position: relative;
    overflow: hidden;
    padding: 8px 0;
  }

  .thumbnail-track{
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: var(--accent) #e8eef5;
    padding: 8px 4px;
  }

  .thumbnail-track::-webkit-scrollbar{
    height: 8px;
  }

  .thumbnail-track::-webkit-scrollbar-track{
    background: #e8eef5;
    border-radius: 10px;
  }

  .thumbnail-track::-webkit-scrollbar-thumb{
    background: var(--accent);
    border-radius: 10px;
    transition: background .3s;
  }

  .thumbnail-track::-webkit-scrollbar-thumb:hover{
    background: var(--brand-blue);
  }

  .thumbnail-item{
    flex: 0 0 auto;
    width: 180px;
    height: 120px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    transition: all .3s ease;
    box-shadow: 0 4px 12px rgba(25,47,137,.1);
    border: 3px solid transparent;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loadingShimmer 1.5s ease-in-out infinite;
  }

  .thumbnail-item img.loaded,
  .thumbnail-item:has(img.loaded) {
    background: transparent;
    animation: none;
  }

  @keyframes loadingShimmer {
    0% {
      background-position: 200% 0;
    }
    100% {
      background-position: -200% 0;
    }
  }

  .thumbnail-item:hover{
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 24px rgba(25,47,137,.2);
  }

  .thumbnail-item.active{
    border-color: var(--accent);
    box-shadow: 0 8px 24px rgba(17,116,186,.35);
  }

  .thumbnail-item img,
  .thumbnail-item video{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s cubic-bezier(.4,0,.2,1), opacity .4s ease;
    opacity: 0;
  }

  .thumbnail-item img.loaded {
    opacity: 1;
    animation: fadeInImage 0.4s ease-in-out;
  }

  @keyframes fadeInImage {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }

  .thumbnail-number{
    position: absolute;
    top: 8px;
    left: 8px;
    background: rgba(25,47,137,0.85);
    color: #fff;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 2;
  }

  .carousel-nav{
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, rgba(255,255,255,0.98), rgba(255,255,255,0.95));
    backdrop-filter: blur(8px);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .35s cubic-bezier(.4,0,.2,1);
    box-shadow: 0 4px 20px rgba(25,47,137,.15), 0 0 0 1px rgba(25,47,137,.08);
    z-index: 3;
    padding: 0;
  }

  .carousel-nav svg{
    width: 20px;
    height: 20px;
    stroke: var(--brand-blue);
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: all .35s cubic-bezier(.4,0,.2,1);
  }

  .carousel-nav:hover{
    background: linear-gradient(135deg,var(--brand-blue),var(--accent));
    transform: scale(1.12);
    box-shadow: 0 8px 32px rgba(25,47,137,.3), 0 0 0 2px rgba(25,47,137,.15);
  }

  .carousel-nav:hover svg{
    stroke: #fff;
    transform: scale(1.1);
  }

  .carousel-nav:active{
    transform: scale(1.02);
  }

  .carousel-nav:disabled{
    opacity: 0.3;
    cursor: not-allowed;
    transform: scale(1);
    background: rgba(255,255,255,0.6);
  }

  .carousel-nav:disabled:hover{
    background: rgba(255,255,255,0.6);
    transform: scale(1);
    box-shadow: 0 4px 20px rgba(25,47,137,.15), 0 0 0 1px rgba(25,47,137,.08);
  }

  .carousel-nav:disabled svg{
    stroke: #9ca3af;
  }

  .video-section{
    margin-top: 0;
    margin-bottom: 80px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards 0.7s;
  }

  .video-grid{
    display: grid;
    grid-template-columns: minmax(0,3fr) minmax(0,7fr);
    gap: 40px;
    align-items: start;
  }

  .video-intro{
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-align: left;
  }

  .video-heading{
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    font-weight: 400;
    color: #000;
    margin: 0;
    line-height: 1.25;
  }

  .video-lead{
    font-size: 1rem;
    color: #5a6c8f;
    line-height: 1.7;
    margin: 0;
    max-width: 520px;
  }

  .social-follow-section {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
  }

  .social-follow-text {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 12px;
    font-weight: 500;
  }

  .social-links-inline {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
  }

  .social-link-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  }

  .social-link-btn i {
    font-size: 1.1rem;
  }

  .social-link-btn.youtube {
    background: #FF0000;
    color: white;
  }

  .social-link-btn.youtube:hover {
    background: #CC0000;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 0, 0, 0.3);
  }

  .social-link-btn.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
  }

  .social-link-btn.instagram:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 39, 67, 0.4);
  }

  .section-header{
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
  }

  .section-icon{
    display: none;
  }

  .section-title{
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--brand-blue);
    margin: 0;
  }

  .featured-video-wrapper{
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(25,47,137,.15);
    transition: all .4s ease;
    max-width: none;
    margin: 0;
  }

  .featured-video-wrapper:hover{
    transform: translateY(-8px);
    box-shadow: 0 30px 80px rgba(25,47,137,.25);
  }

  .featured-video-container{
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    overflow: hidden;
    border-radius: 8px;
    background: #000;
  }

  .featured-video{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .video-info{
    padding: 32px;
    text-align: center;
  }

  .video-title{
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--brand-blue);
    margin: 0 0 16px 0;
    line-height: 1.4;
  }

  .video-description{
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
    max-width: 700px;
    margin: 0 auto;
  }
  @media (max-width: 980px){
    .video-grid{grid-template-columns: 1fr;gap: 24px}
  }
  @media (max-width: 480px){
    .video-intro{order: 2}
    .featured-video-wrapper{order: 1}
    
    .social-follow-section {
      margin-top: 16px;
      padding-top: 16px;
    }
    
    .social-follow-text {
      font-size: 0.85rem;
    }
    
    .social-link-btn {
      padding: 7px 14px;
      font-size: 0.8rem;
    }
    
    .social-link-btn i {
      font-size: 1rem;
    }
  }

  .modal-backdrop.show {
    opacity: 0.75;
    background: #192F89;
  }

  .modal.fade .modal-dialog {
    transition: transform .3s ease-out;
  }

  .modal-dialog {
    display: flex;
    align-items: center;
    min-height: calc(100% - 3.5rem);
    margin: 1.75rem auto;
  }

  .modal-content {
    background: transparent;
    border: none;
    box-shadow: none;
    margin: 0 auto;
  }

  .modal-body{
    padding: 0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  #galleryModalImg,
  #galleryModalVideo{
    max-height: 85vh;
    max-width: 100%;
    width: auto;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,.5);
    display: block;
    margin: 0 auto;
    cursor: default;
  }

  .modal-close{
    position: absolute;
    top: -50px;
    right: 0;
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    color: #fff;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .3s ease;
  }

  .modal-close:hover{
    background: rgba(255,255,255,0.25);
    transform: rotate(90deg);
  }

  .modal-nav-btn{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    color: #fff;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .3s ease;
    z-index: 10;
  }

  .modal-nav-btn:hover{
    background: rgba(255,255,255,0.25);
  }

  .modal-nav-btn.prev{ left: 20px; }
  .modal-nav-btn.next{ right: 20px; }

  .modal-counter{
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 20px;
    color: #fff;
    padding: 8px 20px;
    font-size: 0.95rem;
    font-weight: 600;
  }

  .keyboard-hint{
    position: absolute;
    bottom: -45px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
    white-space: nowrap;
  }

  .loading-spinner{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border: 4px solid rgba(255,255,255,0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
  }

  @keyframes spin {
    to { transform: translate(-50%, -50%) rotate(360deg); }
  }

  @media (max-width: 992px){
    .thumbnail-item{
      width: 160px;
      height: 110px;
    }
    .featured-nav-btn{ width: 44px; height: 44px; }
    .featured-nav-btn svg{ width: 26px; height: 26px; }
  }

  @media (max-width: 768px){
    .gallery-hero{ height: 52vh; min-height: 360px; }
    .gallery-section{ padding: 48px 0 0; }
    .featured-image-section{ margin-bottom: 36px; }
    .thumbnail-section{ margin-bottom: 48px; }
    .video-section{ margin-top: 0; margin-bottom: 64px; }
    .section-title{ font-size: 1.5rem; }
    .section-icon{ width: 40px; height: 40px; font-size: 20px; }
    .thumbnail-item{
      width: 140px;
      height: 95px;
    }
    .carousel-nav{ width: 32px; height: 32px; }
    .carousel-nav svg{ width: 18px; height: 18px; stroke-width: 2.8; }
    .keyboard-hint{ display: none; }
    .featured-nav-btn{ width: 40px; height: 40px; }
    .featured-nav-btn svg{ width: 24px; height: 24px; }
    .featured-nav-btn.prev{ left: 12px; }
    .featured-nav-btn.next{ right: 12px; }
    .section-divider{ margin: 64px 0 48px; }
    .content-section-header{ margin-bottom: 40px; }
  }

  @media (max-width: 576px){
    .gallery-hero{ height: 48vh; min-height: 320px; }
    .gallery-section{ padding: 40px 0 0; }
    .featured-image-wrapper{ border-radius: 16px; }
    .featured-overlay{ padding: 20px; }
    .featured-caption{ font-size: 0.95rem; }
    .thumbnail-item{
      width: 120px;
      height: 80px;
      border-radius: 8px;
    }
    .thumbnail-track{ gap: 12px; }
    .modal-nav-btn{ width: 40px; height: 40px; font-size: 20px; }
    .modal-close{ top: -45px; width: 40px; height: 40px; }
    .modal-counter{ top: -45px; padding: 6px 16px; font-size: 0.85rem; }
    .carousel-header{ justify-content: center; }
    .featured-nav-btn{ width: 36px; height: 36px; }
    .featured-nav-btn svg{ width: 22px; height: 22px; }
    .featured-nav-btn.prev{ left: 8px; }
    .featured-nav-btn.next{ right: 8px; }
    .video-info{ padding: 24px 20px; }
    .video-title{ font-size: 1.1rem; }
    .video-description{ font-size: 0.95rem; }
    .section-divider{ margin: 56px 0 40px; }
    .content-section-header{ margin-bottom: 32px; }
    .content-section-title{ font-size: 1.75rem; }
    .content-section-description{ font-size: 1rem; }
    .video-section{ margin-bottom: 56px; }
  }

  @media (max-width: 480px){
    .section-header{ gap: 12px; }
    .section-icon{ width: 36px; height: 36px; font-size: 18px; }
    .section-title{ font-size: 1.3rem; }
    .video-section{ margin-bottom: 48px; }
  }

  @media (max-width: 350px){
    .gallery-hero{ min-height: 280px; }
  }

  :root{
    --gallery-ink:#1e2a3b;
    --gallery-muted:#6b7a8c;
    --gallery-accent:#002B5B;
    --gallery-surface:#f3f5f8;
    --gallery-pill:#e9edf2;
  }

  .gallery-top{display:grid;grid-template-columns:minmax(0,3fr) minmax(0,7fr);gap:40px;align-items:start;padding:16px 0 0;animation:fadeUp .6s ease both}
  .gallery-intro{display:flex;flex-direction:column;gap:16px}
  .moment-filters{display:flex;flex-wrap:wrap;gap:12px;justify-content:flex-start;margin:6px 0 0}
  .moment-filter-btn{border:1px solid transparent;background:var(--gallery-pill);color:var(--gallery-ink);padding:8px 18px;border-radius:999px;font-weight:600;font-size:.92rem;transition:all .2s ease;cursor:pointer;box-shadow:0 1px 0 rgba(0,0,0,.04)}
  .moment-filter-btn:hover{transform:translateY(-1px)}
  .moment-filter-btn.active{background:var(--gallery-accent);color:#fff}
  .moment-filter-btn:focus-visible{outline:3px solid var(--gallery-accent);outline-offset:2px}
  .featured-image-section{background:linear-gradient(180deg,rgba(0,43,91,.08),transparent 68%);border-radius:20px;padding:18px;animation:fadeUp .6s ease .1s both}
  .featured-image-wrapper{border-radius:16px;overflow:hidden;box-shadow:0 16px 36px rgba(9,30,66,.18)}
  .thumbnail-section{margin-top:16px;animation:fadeUp .6s ease .2s both}
  .thumbnail-item.is-hidden{display:none}

  @keyframes fadeUp{from{opacity:0;transform:translateY(16px)}to{opacity:1;transform:translateY(0)}}

  @media (max-width: 980px){
    .gallery-top{grid-template-columns:1fr;gap:24px}
    .gallery-title{font-size:1.9rem}
    .featured-image-section{padding:12px}
  }

  @media (max-width: 480px){
    .moment-filters{gap:8px}
    .moment-filter-btn{padding:6px 12px;font-size:.82rem}
  }