/* ══════════════════════════════════════════════════════════════
   gallery.css  —  Photo & Video Gallery listing page
   All classes prefixed  gal-  to guarantee zero conflicts with
   style.css, home.css, about.css, contact.css, chairman.css,
   news-media.css, executive-committee.css, and all ir- pages.
   Sections:
   1. Hero Banner
   2. Toolbar (filters + search)
   3. Year groups + album grid
   4. Album cards
   5. No-results state
   6. Responsive
══════════════════════════════════════════════════════════════ */

/* ──────────────────────────────────────────
   KEYFRAMES  (gal- prefix)
─────────────────────────────────────────── */
@keyframes gal-slideRight {
  from {
    opacity: 0;
    transform: translateX(-36px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes gal-slideLeft {
  from {
    opacity: 0;
    transform: translateX(36px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes gal-fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

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

/* ──────────────────────────────────────────
   PAGE BACKGROUND
─────────────────────────────────────────── */
.gal-page-bg {
  background: #f0f2f6;
}

/* ──────────────────────────────────────────
   1. HERO BANNER  (matches site pattern)
─────────────────────────────────────────── */
.gal-hero {
  background: var(--navy);
  padding: 60px 0 56px;
  position: relative;
  overflow: hidden;
}

.gal-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(-55deg, transparent, transparent 40px,
      rgba(255, 255, 255, .025) 40px, rgba(255, 255, 255, .025) 41px);
  pointer-events: none;
}

.gal-hero::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red) 0%, transparent 60%);
  z-index: 2;
}

.gal-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.gal-hero-left {
  opacity: 0;
  animation: gal-slideRight .7s cubic-bezier(.4, 0, .2, 1) .05s forwards;
}

.gal-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 18px;
}

.gal-eyebrow::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--red);
  border-radius: 2px;
  flex-shrink: 0;
}

.gal-hero-title {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.08;
  letter-spacing: -.02em;
}

.gal-hero-title span {
  color: var(--red);
  display: block;
}

.gal-hero-right {
  opacity: 0;
  animation: gal-slideLeft .7s cubic-bezier(.4, 0, .2, 1) .2s forwards;
}

.gal-hero-desc {
  font-size: .9rem;
  color: rgba(255, 255, 255, .65);
  line-height: 1.78;
  max-width: 420px;
}

/* ──────────────────────────────────────────
   WRAP
─────────────────────────────────────────── */
.gal-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 44px 60px 100px;
}

/* ──────────────────────────────────────────
   2. TOOLBAR
─────────────────────────────────────────── */
.gal-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: #fff;
  border: 1px solid rgba(13, 27, 62, .09);
  border-radius: 12px;
  padding: 10px 16px;
  margin-bottom: 36px;
  flex-wrap: wrap;
  opacity: 0;
  animation: gal-fadeUp .6s ease forwards .25s;
}

.gal-toolbar-left {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.gal-toolbar-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.gal-toolbar-divider {
  width: 1px;
  height: 20px;
  background: rgba(13, 27, 62, .1);
  flex-shrink: 0;
}

/* Filter pills */
.gal-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 16px;
  border-radius: 8px;
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .02em;
  cursor: pointer;
  transition: all .15s;
  border: 1.5px solid transparent;
  font-family: 'Outfit', sans-serif;
  line-height: 1;
}

.gal-pill-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  opacity: .6;
}

.gal-pill.active {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}

.gal-pill.inactive {
  background: transparent;
  color: var(--muted);
  border-color: rgba(13, 27, 62, .12);
}

.gal-pill.inactive:hover {
  border-color: var(--navy);
  color: var(--navy);
  background: rgba(13, 27, 62, .04);
}

.gal-pill.gal-pill-photo.active .gal-pill-dot {
  background: #3d7fd4;
  opacity: 1;
}

.gal-pill.gal-pill-video.active .gal-pill-dot {
  background: var(--red);
  opacity: 1;
}

/* Search */
.gal-search {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #f8f9fc;
  border: 1.5px solid rgba(13, 27, 62, .1);
  border-radius: 8px;
  padding: 7px 14px;
  transition: border-color .15s, background .15s;
}

.gal-search:focus-within {
  border-color: var(--navy);
  background: #fff;
}

.gal-search svg {
  width: 14px;
  height: 14px;
  stroke: var(--muted);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  flex-shrink: 0;
}

.gal-search input {
  border: none;
  outline: none;
  background: transparent;
  font-size: .8rem;
  font-family: 'Outfit', sans-serif;
  color: var(--navy);
  width: 180px;
}

.gal-search input::placeholder {
  color: var(--muted);
}

/* Result count */
.gal-result-count {
  font-size: .76rem;
  font-weight: 500;
  color: var(--muted);
  white-space: nowrap;
}

.gal-result-count strong {
  color: var(--navy);
  font-weight: 700;
}

/* ──────────────────────────────────────────
   3. YEAR GROUPS
─────────────────────────────────────────── */
.gal-year-group {
  margin-bottom: 52px;
}

.gal-year-group:last-child {
  margin-bottom: 0;
}

.gal-year-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1.5px solid rgba(13, 27, 62, .09);
}

.gal-year-text {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -.02em;
}

.gal-year-count {
  font-size: .7rem;
  font-weight: 600;
  color: var(--muted);
  background: #fff;
  border: 1px solid rgba(13, 27, 62, .1);
  padding: 4px 12px;
  border-radius: 20px;
  white-space: nowrap;
}

/* Album grid */
.gal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

/* ──────────────────────────────────────────
   4. ALBUM CARDS
─────────────────────────────────────────── */
.gal-card {
  background: #fff;
  border: 1px solid rgba(13, 27, 62, .09);
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  transition: box-shadow .22s, transform .22s, border-color .22s;
  position: relative;
}

.gal-card:hover {
  box-shadow: 0 8px 32px rgba(13, 27, 62, .12);
  transform: translateY(-3px);
  border-color: rgba(13, 27, 62, .15);
}

/* Thumbnail */
.gal-thumb {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #dde5f0;
  flex-shrink: 0;
}

.gal-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .38s ease;
}

.gal-card:hover .gal-thumb-img {
  transform: scale(1.05);
}

/* Hover overlay */
.gal-thumb-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13, 27, 62, .45);
  opacity: 0;
  transition: opacity .22s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gal-card:hover .gal-thumb-overlay {
  opacity: 1;
}

.gal-overlay-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, .8);
  background: rgba(255, 255, 255, .15);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(.75);
  transition: transform .22s;
}

.gal-card:hover .gal-overlay-icon {
  transform: scale(1);
}

.gal-overlay-icon svg {
  width: 18px;
  height: 18px;
  stroke: #fff;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Type badge — top-left */
.gal-type-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 3px 9px;
  border-radius: 4px;
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  z-index: 2;
  backdrop-filter: blur(4px);
}

.gal-badge-photo {
  background: rgba(13, 27, 62, .82);
  color: #fff;
}

.gal-badge-video {
  background: rgba(230, 57, 70, .9);
  color: #fff;
}

/* Count badge — top-right */
.gal-count-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(0, 0, 0, .55);
  color: #fff;
  padding: 3px 8px;
  border-radius: 4px;
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  z-index: 2;
  backdrop-filter: blur(4px);
}

/* Video play circle */
.gal-play-indicator {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  pointer-events: none;
}

.gal-play-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(230, 57, 70, .85);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, .35);
  transition: transform .2s;
}

.gal-card:hover .gal-play-circle {
  transform: scale(1.1);
}

.gal-play-circle svg {
  width: 18px;
  height: 18px;
  fill: #fff;
  margin-left: 3px;
}

/* Card body */
.gal-card-body {
  padding: 16px 16px 14px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.gal-card-title {
  font-size: .88rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.4;
  margin-bottom: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color .15s;
}

.gal-card:hover .gal-card-title {
  color: var(--red);
}

.gal-card-meta {
  display: flex;
  align-items: center;
  margin-top: auto;
  border-top: 1px solid #f0f2f6;
  padding-top: 12px;
  gap: 0;
}

.gal-card-meta-left {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 1;
}

.gal-card-date {
  font-size: .72rem;
  font-weight: 500;
  color: var(--muted);
}

.gal-card-meta-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #ced5e0;
  flex-shrink: 0;
}

.gal-card-tag {
  font-size: .66rem;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: .06em;
  text-transform: uppercase;
}

.gal-card-arrow {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background .18s, transform .18s;
}

.gal-card:hover .gal-card-arrow {
  background: #a80d25;
  transform: translateX(2px);
}

.gal-card-arrow svg {
  width: 13px;
  height: 13px;
  stroke: #fff;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ──────────────────────────────────────────
   5. NO RESULTS
─────────────────────────────────────────── */
.gal-no-results {
  display: none;
  text-align: center;
  padding: 80px 20px;
}

.gal-no-results.visible {
  display: block;
}

.gal-no-results-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #f0f2f6;
  border: 2px solid rgba(13, 27, 62, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.gal-no-results-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--muted);
  fill: none;
  stroke-width: 1.8;
}

.gal-no-results h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

.gal-no-results p {
  font-size: .84rem;
  color: var(--muted);
}

/* ──────────────────────────────────────────
   RESPONSIVE
─────────────────────────────────────────── */
@media (max-width: 1100px) {
  .gal-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 960px) {
  .gal-hero-inner {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 0 36px;
  }

  .gal-hero {
    padding: 48px 0 44px;
  }

  .gal-wrap {
    padding: 36px 36px 60px;
  }
}

@media (max-width: 780px) {
  .gal-wrap {
    padding: 28px 20px 60px;
  }

  .gal-hero-inner {
    padding: 0 20px;
  }

  .gal-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .gal-toolbar {
    padding: 8px 12px;
  }

  .gal-search input {
    width: 120px;
  }
}

@media (max-width: 480px) {
  .gal-grid {
    grid-template-columns: 1fr;
  }

  .gal-hero-title {
    font-size: clamp(1.8rem, 8vw, 2.4rem);
  }
}

/* ─────────────────────────────────────────────────────
   DESIGN TOKENS  (FECE Nepal brand system)
   #f0f2f6  page background
   #ffffff  card / nav background
   #1a2744  headings, nav, dark text
   #0d1b3e  hero dark navy
   #c8102e  red accent (brand)
   #6b7a8d  body copy
   #9aabb8  muted / secondary
   #e2e8f0  borders
───────────────────────────────────────────────────── */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: #f0f2f6;
  color: #6b7a8d;
  -webkit-font-smoothing: antialiased;
}

/* ══ NAV ══ */
.nav {
  background: #fff;
  border-bottom: 1px solid #e2e8f0;
  padding: 0 48px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 300;
  box-shadow: 0 1px 8px rgba(0, 0, 0, .06);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo-icon {
  width: 42px;
  height: 42px;
  background: #c8102e;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 1px;
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-brand {
  font-size: 18px;
  font-weight: 800;
  color: #1a2744;
  letter-spacing: .3px;
}

.logo-brand em {
  color: #c8102e;
  font-style: normal;
}

.logo-tagline {
  font-size: 8px;
  color: #9aabb8;
  margin-top: 2px;
  font-weight: 500;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.nav-links a {
  font-size: 12px;
  font-weight: 600;
  color: #1a2744;
  text-decoration: none;
  padding: 6px 10px;
  border-radius: 4px;
  letter-spacing: .2px;
  transition: color .15s;
  opacity: .75;
}

.nav-links a:hover {
  color: #c8102e;
  opacity: 1;
}

.nav-links a.active {
  color: #c8102e;
  opacity: 1;
}

/* ══ PAGE WRAP ══ */
.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 56px 40px 100px;
}

/* ══ PAGE HEADER — matches screenshot: title left, desc far right ══ */
.page-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 36px;
}

.page-header-left {}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.eyebrow-line {
  width: 26px;
  height: 2px;
  background: #c8102e;
  flex-shrink: 0;
}

.eyebrow-text {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #c8102e;
}

.page-title {
  font-size: 42px;
  font-weight: 900;
  color: #1a2744;
  line-height: 1;
  letter-spacing: -1px;
  text-transform: uppercase;
}

.page-header-right {
  flex-shrink: 0;
  padding-top: 4px;
  max-width: 280px;
}

.page-desc {
  font-size: 13px;
  line-height: 1.72;
  color: #9aabb8;
  text-align: right;
}

/* ══ TOOLBAR: FILTERS + SEARCH ══ */
.toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 10px 16px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.toolbar-left {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.toolbar-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Filter pills */
.filter-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 16px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .2px;
  cursor: pointer;
  transition: all .15s;
  border: 1.5px solid transparent;
  font-family: 'Inter', sans-serif;
  line-height: 1;
}

.filter-pill.active {
  background: #1a2744;
  color: #fff;
  border-color: #1a2744;
}

.filter-pill.inactive {
  background: transparent;
  color: #6b7a8d;
  border-color: #e2e8f0;
}

.filter-pill.inactive:hover {
  border-color: #1a2744;
  color: #1a2744;
  background: rgba(26, 39, 68, .04);
}

.filter-pill .pill-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  opacity: .6;
}

.filter-pill.f-photo.active .pill-dot {
  background: #3d7fd4;
  opacity: 1;
}

.filter-pill.f-video.active .pill-dot {
  background: #c8102e;
  opacity: 1;
}

/* Search box */
.search-box {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #f8f9fc;
  border: 1.5px solid #e2e8f0;
  border-radius: 8px;
  padding: 7px 14px;
  transition: border-color .15s;
}

.search-box:focus-within {
  border-color: #1a2744;
  background: #fff;
}

.search-box svg {
  width: 14px;
  height: 14px;
  stroke: #9aabb8;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  flex-shrink: 0;
}

.search-box input {
  border: none;
  outline: none;
  background: transparent;
  font-size: 12.5px;
  font-family: 'Inter', sans-serif;
  color: #1a2744;
  width: 180px;
}

.search-box input::placeholder {
  color: #9aabb8;
}

/* Sort / count label */
.result-count {
  font-size: 12px;
  font-weight: 500;
  color: #9aabb8;
  white-space: nowrap;
}

.result-count strong {
  color: #1a2744;
  font-weight: 700;
}

/* Divider between toolbar sections */
.toolbar-divider {
  width: 1px;
  height: 20px;
  background: #e2e8f0;
  flex-shrink: 0;
}

/* ══ YEAR GROUP ══ */
.year-group {
  margin-bottom: 52px;
}

.year-group:last-child {
  margin-bottom: 0;
}

.year-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1.5px solid #e2e8f0;
}

.year-label-text {
  font-size: 18px;
  font-weight: 800;
  color: #1a2744;
  letter-spacing: -.3px;
}

.year-label-line {
  display: none;
}

.year-label-count {
  font-size: 11px;
  font-weight: 600;
  color: #9aabb8;
  background: #fff;
  border: 1px solid #e2e8f0;
  padding: 4px 12px;
  border-radius: 20px;
  white-space: nowrap;
}

/* ══ ALBUM GRID ══ */
.album-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

/* ══ ALBUM CARD — Clean white card ══ */
.album-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  transition: box-shadow .22s, transform .22s, border-color .22s;
  position: relative;
}

.album-card:hover {
  box-shadow: 0 8px 32px rgba(26, 39, 68, .11);
  transform: translateY(-3px);
  border-color: #d0d8e8;
}

/* Thumbnail area */
.card-thumb {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #dde5f0;
  flex-shrink: 0;
}

.card-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .38s ease;
}

.album-card:hover .card-thumb-img {
  transform: scale(1.05);
}

/* Hover overlay on thumbnail */
.card-thumb-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13, 27, 62, .45);
  opacity: 0;
  transition: opacity .22s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.album-card:hover .card-thumb-overlay {
  opacity: 1;
}

.overlay-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, .8);
  background: rgba(255, 255, 255, .15);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(.75);
  transition: transform .22s;
}

.album-card:hover .overlay-icon {
  transform: scale(1);
}

.overlay-icon svg {
  width: 18px;
  height: 18px;
  stroke: #fff;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Type badge — top left of thumb */
.card-type-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 3px 9px;
  border-radius: 4px;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  z-index: 2;
  backdrop-filter: blur(4px);
}

.badge-photo {
  background: rgba(26, 39, 68, .82);
  color: #fff;
}

.badge-video {
  background: rgba(200, 16, 46, .9);
  color: #fff;
}

/* Count badge — top right of thumb */
.card-count-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(0, 0, 0, .55);
  color: #fff;
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  z-index: 2;
  backdrop-filter: blur(4px);
}

/* Video play indicator centered on thumb */
.play-indicator {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  pointer-events: none;
}

.play-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(200, 16, 46, .85);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, .35);
  transition: transform .2s;
}

.album-card:hover .play-circle {
  transform: scale(1.1);
}

.play-circle svg {
  width: 18px;
  height: 18px;
  fill: #fff;
  margin-left: 3px;
}

/* Card body — metadata below thumb, matches screenshot exactly */
.card-body {
  padding: 16px 16px 14px;
  display: flex;
  flex-direction: column;
  gap: 0;
  flex: 1;
}

.card-title {
  font-size: 14px;
  font-weight: 700;
  color: #1a2744;
  line-height: 1.4;
  margin-bottom: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color .15s;
  padding-right: 0;
}

.album-card:hover .card-title {
  color: #c8102e;
}

.card-meta {
  display: flex;
  align-items: center;
  margin-top: auto;
  border-top: 1px solid #f0f2f6;
  padding-top: 12px;
  gap: 0;
}

.card-meta-left {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 1;
}

.card-date {
  font-size: 11.5px;
  font-weight: 500;
  color: #9aabb8;
  letter-spacing: .2px;
}

.card-meta-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #ced5e0;
  flex-shrink: 0;
}

.card-tag {
  font-size: 10.5px;
  font-weight: 700;
  color: #9aabb8;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.card-arrow {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #c8102e;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background .18s, transform .18s;
}

.album-card:hover .card-arrow {
  background: #a80d25;
  transform: translateX(2px);
}

.card-arrow svg {
  width: 13px;
  height: 13px;
  stroke: #fff;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ══ NO RESULTS ══ */
.no-results {
  display: none;
  text-align: center;
  padding: 80px 20px;
  grid-column: 1 / -1;
}

.no-results.visible {
  display: block;
}

.no-results-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #f0f2f6;
  border: 2px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.no-results-icon svg {
  width: 22px;
  height: 22px;
  stroke: #9aabb8;
  fill: none;
  stroke-width: 1.8;
}

.no-results h3 {
  font-size: 16px;
  font-weight: 700;
  color: #1a2744;
  margin-bottom: 6px;
}

.no-results p {
  font-size: 13px;
  color: #9aabb8;
}

/* ══ LOAD MORE ══ */
.load-more-wrap {
  text-align: center;
  margin-top: 48px;
}

.load-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 32px;
  border-radius: 8px;
  background: #fff;
  border: 1.5px solid #e2e8f0;
  font-size: 13px;
  font-weight: 700;
  color: #1a2744;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: all .18s;
  letter-spacing: .2px;
}

.load-more-btn:hover {
  border-color: #1a2744;
  background: #1a2744;
  color: #fff;
}

.load-more-btn svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ══ RESPONSIVE ══ */
@media (max-width: 1100px) {
  .album-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 780px) {
  .nav {
    padding: 0 20px;
  }

  .nav-links {
    display: none;
  }

  .wrap {
    padding: 36px 20px 60px;
  }

  .page-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .page-header-right {
    display: none;
  }

  .album-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .toolbar {
    padding: 8px 12px;
  }

  .search-box input {
    width: 120px;
  }
}

@media (max-width: 480px) {
  .album-grid {
    grid-template-columns: 1fr;
  }

  .page-title {
    font-size: 28px;
  }
}