/* CSS for awards.html */
@import url("./index.css");

/* ==================== AWARDS HERO SECTION ==================== */
.awards-hero-section {
  width: 100%;
  background: #FFFFFF;
  padding: 0 40px;
  overflow: visible;
  position: relative;
  box-sizing: border-box;
}

.awards-hero-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 24px 0 40px 0;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Tagline */
.awards-hero-tagline {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.awards-hero-tagline span {
  color: var(--69686E, #69686E);
  font-family: Satoshi, 'Inter', sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 26px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Title */
.awards-title {
  font-family: Satoshi, Inter, sans-serif;
  font-size: 44px;
  font-weight: 500;
  line-height: 56px;
  color: rgb(6, 6, 18);
  font-style: normal;
  margin: 0 0 clamp(16px, 2vw, 28px) 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: center;
}

/* ===== FEATURED SHOWCASE FRAME ===== */
.awards-featured-frame {
  display: flex;
  width: 100%;
  max-width: 1320px;
  padding: 16px;
  justify-content: center;
  align-items: center;
  border-radius: 24px;
  border: 1px solid #FFFFFF;
  background: #F5F5F5;
  box-shadow: 0 0 6px 1px rgba(6, 6, 18, 0.14) inset;
  box-sizing: border-box;
  margin-bottom: 0;
}

.awards-featured-card {
  display: flex;
  width: 100%;
  background: #FFFFFF;
  border-radius: 18px;
  box-shadow: 0 10px 40px rgba(6, 6, 18, 0.05);
  overflow: hidden;
  border: 1px solid #E5E4E2;
}

/* Desktop layout: Side-by-side using CSS Grid */
@media (min-width: 1101px) {
  .awards-featured-inner {
    display: grid;
    grid-template-columns: 1fr 520px;
    grid-template-rows: auto auto;
    grid-template-areas:
      "top  img"
      "btm  img";
    gap: 0;
    width: 100%;
  }

  .awards-featured-left-top    { grid-area: top; }
  .awards-featured-right       { grid-area: img; }
  .awards-featured-left-bottom { grid-area: btm; }
}

.awards-featured-left-top,
.awards-featured-left-bottom {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  padding: 44px 48px;
  box-sizing: border-box;
}

.awards-featured-left-top {
  padding-bottom: 0;
}

.awards-featured-left-bottom {
  padding-top: 24px;
}

.awards-featured-heading {
  color: #060612;
  font-family: Satoshi, 'Inter', sans-serif;
  font-size: 44px;
  font-weight: 500;
  line-height: 56px;
  margin: 0;
  width: 100%;
}

.awards-featured-heading .green-spotlight {
  color: #85BD56;
}

.awards-featured-desc {
  color: #69686E;
  font-family: Satoshi, 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
  margin: 0 0 20px 0;
  width: 100%;
  max-width: 100%;
}

.awards-featured-desc.desc-secondary {
  margin-bottom: 32px;
}

/* Statistics Row */
.awards-stats-row {
  display: flex;
  align-items: center;
  width: 100%;
  border-top: none;
  margin-top: 36px;
  padding-top: 0;
  gap: clamp(32px, 4vw, 52px);
  box-sizing: border-box;
}

.awards-stat-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.awards-stat-number {
  font-family: Satoshi, 'Inter', sans-serif;
  font-size: 38px;
  font-weight: 700;
  color: #75BF46;
  line-height: 1.1;
  margin-bottom: 6px;
}

.awards-stat-label {
  font-family: Satoshi, 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #69686E;
  white-space: nowrap;
}

.awards-stat-divider {
  width: 1px;
  height: 44px;
  background-color: #E5E7EB;
  display: block;
  flex-shrink: 0;
}

/* Featured Right Image / Video Cover */
.awards-featured-right {
  width: 520px;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  background: #FFFFFF;
  align-self: stretch;
}
.awards-featured-img-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  box-sizing: border-box;
  background: #FFFFFF;
}

.awards-featured-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 0;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Video Play Overlay */
.video-play-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.play-btn-circle {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: #75BF46;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(117, 191, 70, 0.4);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.play-btn-circle svg {
  margin-left: 3px;
}

.awards-featured-right:hover .play-btn-circle {
  transform: scale(1.08);
}

/* ==================== CONTRIBUTION SECTION ==================== */
.contribution-section {
  width: 100%;
  background: #FFFFFF;
  padding: 0 40px;
  box-sizing: border-box;
  overflow: visible;
  position: relative;
}

.contribution-container {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(40px, 6vw, 90px);
  box-sizing: border-box;
  width: 100%;
  padding: 40px 0;
}

.contribution-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.contribution-tagline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.contribution-tagline span {
  color: var(--69686E, #69686E);
  font-family: Satoshi, 'Inter', sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 26px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.contribution-heading {
  color: var(--060612, #060612);
  font-family: Satoshi, 'Inter', sans-serif;
  font-size: clamp(34px, 3.6vw, 44px);
  font-style: normal;
  font-weight: 500;
  line-height: clamp(42px, 4.4vw, 56px);
  margin: 0 0 24px 0;
  letter-spacing: -0.01em;
}

.contribution-paragraphs {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 530px;
}

.contribution-paragraphs p {
  color: #69686E;
  font-family: Satoshi, 'Inter', sans-serif;
  font-size: 15.5px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.65;
  margin: 0;
  text-align: left;
}

/* Images Layout */
.contribution-right {
  width: 100%;
  display: flex;
  justify-content: flex-end;
}

.contribution-images-grid {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  width: 100%;
  max-width: 600px;
  position: relative;
}

.contribution-col-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1.12;
}

.contribution-col-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
}

.contribution-img-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(6, 6, 18, 0.06);
  background: #F0F0F0;
  border: 1px solid #EDEDED;
}

.contribution-col-left .contribution-img-card {
  height: 250px;
}

.contribution-col-left .contribution-img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.contribution-img-card:hover img {
  transform: scale(1.03);
}

.contribution-card-tall {
  height: 380px;
  overflow: visible;
  border-radius: 20px;
  border: 1px solid #EDEDED;
  position: relative;
}

.contribution-card-tall > img:first-child {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 20px;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.contribution-leaf-vector {
  position: absolute;
  bottom: -25px;
  right: -25px;
  width: 110px;
  height: auto;
  z-index: 3;
  pointer-events: none;
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.08));
}

/* ==================== TIMELINE SECTION ==================== */
.timeline-section {
  width: 100%;
  background: #FFFFFF;
  padding: 0 40px;
  box-sizing: border-box;
  overflow: visible;
  position: relative;
}

.timeline-container {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-sizing: border-box;
  width: 100%;
  padding: 40px 0;
}

/* Timeline Header */
.timeline-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 36px;
  text-align: left;
}

.timeline-tagline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.timeline-tagline span {
  color: var(--69686E, #69686E);
  font-family: Satoshi, 'Inter', sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 26px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.timeline-heading {
  color: var(--060612, #060612);
  font-family: Satoshi, 'Inter', sans-serif;
  font-size: clamp(32px, 3.5vw, 44px);
  font-style: normal;
  font-weight: 500;
  line-height: clamp(40px, 4.4vw, 56px);
  margin: 0;
  letter-spacing: -0.01em;
}

/* Timeline Cards List */
.timeline-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
  width: 100%;
}

/* Standard Year Card (2023, 2024) */
.timeline-card {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  align-items: start;
  gap: clamp(32px, 4.5vw, 60px);
  background: #FFFFFF;
  border-radius: 24px;
  border: 1px solid #ECECEC;
  box-shadow: 0 10px 40px rgba(6, 6, 18, 0.04);
  padding: clamp(28px, 3.2vw, 42px);
  box-sizing: border-box;
  width: 100%;
}

.timeline-card-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  align-self: flex-start;
  text-align: left;
}

.timeline-year-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.timeline-accent-bar {
  width: 4px;
  height: 52px;
  background-color: #75BF46;
  border-radius: 4px;
  display: inline-block;
  flex-shrink: 0;
  margin-right: 2px;
}

.timeline-year-leaf {
  width: 48px;
  height: 48px;
  object-fit: contain;
  display: block;
}

.timeline-year-text {
  font-family: Satoshi, 'Inter', sans-serif;
  font-size: clamp(46px, 4.8vw, 58px);
  font-weight: 700;
  color: #75BF46;
  line-height: 1;
  letter-spacing: -0.02em;
}

.timeline-card-subtitle {
  font-family: Satoshi, 'Inter', sans-serif;
  font-size: clamp(17px, 1.4vw, 20px);
  font-weight: 700;
  color: #060612;
  margin: 0 0 14px 0;
  line-height: 1.35;
}

.timeline-card-desc {
  font-family: Satoshi, 'Inter', sans-serif;
  font-size: 14px;
  line-height: 1.65;
  color: #69686E;
  margin: 0 0 26px 0;
  max-width: 430px;
}

/* Timeline Action Button */
.timeline-btn {
  margin-top: 2px;
}

/* Visuals Showcase Rows */
.timeline-card-right {
  width: 100%;
}

.timeline-visuals-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.timeline-visual-row {
  display: flex;
  align-items: stretch;
  gap: 16px;
  width: 100%;
  height: 300px;
}

.timeline-img-box {
  flex: 1;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
  
  background: #F0F0F0;
  border: 1px solid #EDEDED;
}

.timeline-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.timeline-img-box:hover img {
  transform: scale(1.04);
}

.timeline-img-box--wide {
  flex: 1;
  width: 398px;
}

.timeline-icon-box {
  width: 252px;
  height: 300px;
  flex: 0 0 252px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
  box-sizing: border-box;
}

.timeline-icon-box svg {
  width: 97px;
  height: 97px;
  display: block;
}

.timeline-icon-box:hover {
  transform: scale(1.02);
}

.timeline-icon-box--green {
  background: #75BF46;
}

.timeline-icon-box--yellow {
  background: #F3A824;
}

/* Upcoming 2025 Card */
.timeline-card--dashed {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  background: #FFFFFF;
  border: 1.5px dashed #C8C8C8;
  box-shadow: none;
  padding: 24px 36px;
}

.timeline-2025-left .timeline-year-row {
  margin-bottom: 0;
}

.timeline-2025-right {
  display: flex;
  justify-content: flex-end;
  flex: 1;
}

.timeline-upcoming-box {
  border: 1px dashed #75BF46;
  border-radius: 12px;
  background: #FAFCF8;
  padding: 16px 24px;
  max-width: 520px;
  width: 100%;
  text-align: left;
}

.timeline-upcoming-title {
  color: #75BF46;
  font-family: Satoshi, 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 700;
  margin: 0 0 4px 0;
}

.timeline-upcoming-desc {
  color: #69686E;
  font-family: Satoshi, 'Inter', sans-serif;
  font-size: 12.5px;
  line-height: 1.55;
  margin: 0;
}

/* ==================== BEHIND THE TROPHY / GALLERY SECTION ==================== */
.gallery-showcase-section {
  width: 100%;
  background: #FFFFFF;
  padding: 0 40px;
  box-sizing: border-box;
  overflow: visible;
  position: relative;
}

.gallery-showcase-container {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  width: 100%;
  padding: 40px 0;
}

/* Top Header */
.gallery-top-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 28px;
}

.gallery-header-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.gallery-tagline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.gallery-tagline span {
  color: var(--69686E, #69686E);
  font-family: Satoshi, 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 26px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.gallery-heading {
  color: var(--060612, #060612);
  font-family: Satoshi, 'Inter', sans-serif;
  font-size: clamp(32px, 3.5vw, 44px);
  font-weight: 500;
  line-height: clamp(40px, 4.4vw, 56px);
  margin: 0;
  letter-spacing: -0.01em;
}

.gallery-header-right {
  display: flex;
  align-items: flex-end;
  text-align: left;
  max-width: 360px;
}

.gallery-header-note {
  color: #69686E;
  font-family: Satoshi, 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

/* Highlight & Intro */
.gallery-intro-wrap {
  margin-bottom: 36px;
  text-align: left;
}

.gallery-highlight-text {
  color: #75BF46;
  font-family: Satoshi, 'Inter', sans-serif;
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 700;
  line-height: 1.45;
  margin: 0 0 16px 0;
  max-width: 1120px;
}

.gallery-subtext {
  color: #69686E;
  font-family: Satoshi, 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.65;
  margin: 0;
  max-width: 1040px;
}

.gallery-subtext strong {
  color: #060612;
  font-weight: 700;
}

/* Gallery 2-Column Grid */
.gallery-columns-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  width: 100%;
  margin-bottom: 40px;
}

.gallery-col-part {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.gallery-card-row {
  display: flex;
  width: 100%;
}

.gallery-card-row--split {
  display: flex;
  gap: 20px;
  width: 100%;
}

.gallery-media-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: #F0F0F0;
  border: 1px solid #EDEDED;
  width: 100%;
  height: 220px;
}

.gallery-media-card--tall {
  height: 350px;
}

.gallery-media-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-media-card:hover img {
  transform: scale(1.035);
}

/* Play button overlay */
.gallery-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  pointer-events: none;
  transition: transform 0.3s ease, background 0.3s ease;
}

.gallery-media-card:hover .gallery-play-btn {
  transform: translate(-50%, -50%) scale(1.1);
  background: rgba(117, 191, 70, 0.9);
}

/* Caption on bottom left */
.gallery-card-caption {
  position: absolute;
  bottom: 16px;
  left: 16px;
  color: #FFFFFF;
  font-family: Satoshi, 'Inter', sans-serif;
  font-size: 13.5px;
  font-weight: 500;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.7);
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.caption-video-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(0, 0, 0, 0.5);
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 11.5px;
  font-weight: 600;
}

/* Bottom Action */
.gallery-bottom-action {
  display: flex;
  justify-content: center;
  width: 100%;
}

/* ==================== RESPONSIVE ADAPTATIONS ==================== */

/* ── Tablet Landscape (≤ 1100px) ── */
@media (max-width: 1100px) {
  .awards-hero-section,
  .contribution-section,
  .timeline-section,
  .gallery-showcase-section {
    padding: 0 24px;
  }

  .contribution-container {
    gap: 40px;
  }

  /* Tech Stack Hero vertically */
  .awards-featured-inner {
    display: flex;
    flex-direction: column;
    width: 100%;
    box-sizing: border-box;
  }

  .awards-featured-left-top    { order: 1; padding: 36px 32px 12px 32px; align-items: flex-start; text-align: left; }
  .awards-featured-right       { order: 2; width: 100%; min-height: 280px; }
  .awards-featured-left-bottom { order: 3; padding: 20px 32px 36px 32px; align-items: flex-start; text-align: left; }

  .awards-featured-heading {
    text-align: left;
    font-size: 36px;
    line-height: 46px;
  }

  .awards-featured-desc {
    text-align: left;
  }

  .awards-stats-row {
    justify-content: flex-start;
  }

  .awards-featured-img-wrap {
    height: 100%;
  }
}

/* ── Tablet Portrait (≤ 960px) ── */
@media (max-width: 960px) {
  .awards-hero-section,
  .contribution-section,
  .timeline-section,
  .gallery-showcase-section {
    padding: 0 24px;
  }

  .awards-hero-container {
    padding: 16px 0 32px 0 !important;
  }

  .contribution-container,
  .timeline-container,
  .gallery-showcase-container {
    padding: 32px 0;
  }

  .gallery-top-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .gallery-columns-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .gallery-media-card--tall {
    height: 280px;
  }

  .gallery-media-card {
    height: 180px;
  }

  .contribution-container {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .contribution-right {
    justify-content: center;
  }

  .contribution-images-grid {
    justify-content: center;
    max-width: 540px;
    margin: 0 auto;
  }

  .timeline-card {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 28px 24px;
  }

  .timeline-card--dashed {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 24px 20px;
  }

  .timeline-upcoming-box {
    max-width: 100%;
  }

  .timeline-2025-right {
    width: 100%;
    justify-content: flex-start;
  }
}

/* ── Tablet Portrait (≤ 850px) ── */
@media (max-width: 850px) {
  .awards-hero-section,
  .contribution-section,
  .timeline-section,
  .gallery-showcase-section {
    padding: 0 20px;
  }

  .awards-hero-container {
    padding: 16px 0 28px 0 !important;
  }

  .contribution-container,
  .timeline-container,
  .gallery-showcase-container {
    padding: 28px 0;
  }

  .awards-title {
    font-size: 38px;
    line-height: 50px;
  }

  .awards-featured-frame {
    padding: 12px;
    border-radius: 18px;
  }

  .awards-featured-card {
    border-radius: 14px;
  }

  .awards-featured-left-top {
    padding: 28px 24px 8px 24px;
  }

  .awards-featured-left-bottom {
    padding: 16px 24px 28px 24px;
  }

  .awards-featured-heading {
    font-size: 30px;
    line-height: 40px;
  }

  .awards-featured-desc {
    font-size: 15px;
  }

  .awards-stats-row {
    gap: 24px;
  }

  .awards-stat-number {
    font-size: 30px;
  }
}

/* ── Mobile Large (≤ 640px) ── */
@media (max-width: 640px) {
  .awards-hero-section,
  .contribution-section,
  .timeline-section,
  .gallery-showcase-section {
    padding: 0 16px;
  }

  .awards-hero-container {
    padding: 12px 0 24px 0 !important;
  }

  .contribution-container,
  .timeline-container,
  .gallery-showcase-container {
    padding: 24px 0;
  }

  .awards-hero-tagline span,
  .timeline-tagline span,
  .gallery-tagline span {
    font-size: 11px;
  }

  .awards-title {
    font-size: 30px;
    line-height: 40px;
  }

  .awards-featured-frame {
    padding: 10px;
    border-radius: 14px;
  }

  .awards-featured-left-top {
    padding: 24px 20px 8px 20px;
  }

  .awards-featured-left-bottom {
    padding: 12px 20px 24px 20px;
  }

  .awards-featured-heading {
    font-size: 26px;
    line-height: 34px;
  }

  .awards-featured-desc {
    font-size: 14px;
    margin-bottom: 16px;
  }

  .awards-stats-row {
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    gap: clamp(6px, 2.5vw, 16px);
    width: 100%;
  }

  .awards-stat-item {
    flex: 1 1 auto;
    min-width: 0;
  }

  .awards-stat-number {
    font-size: 24px;
  }

  .awards-stat-label {
    font-size: 12px;
    white-space: nowrap;
  }

  .awards-stat-divider {
    height: 32px;
  }

  .contribution-col-left .contribution-img-card {
    height: 190px;
  }

  .contribution-card-tall {
    height: 290px;
  }

  .contribution-leaf-vector {
    width: 85px;
    bottom: -18px;
    right: -18px;
  }

  .timeline-year-text {
    font-size: 40px;
  }

  .timeline-year-leaf {
    width: 34px;
    height: 34px;
  }

  .timeline-visual-row {
    height: 160px;
    gap: 10px;
  }

  .timeline-visuals-wrap {
    gap: 10px;
  }

  .timeline-img-box,
  .timeline-icon-box {
    border-radius: 14px;
  }

  .timeline-icon-box {
    width: 140px;
    height: 160px;
    flex: 0 0 140px;
  }

  .timeline-icon-box svg {
    width: 52px;
    height: 52px;
  }

  .timeline-img-box--wide {
    width: auto;
  }

  .timeline-card-subtitle {
    font-size: 18px;
  }

  .gallery-heading {
    font-size: 30px;
    line-height: 40px;
  }

  .gallery-highlight-text {
    font-size: 20px;
    line-height: 1.4;
  }

  .gallery-card-row--split {
    gap: 12px;
  }

  .gallery-col-part {
    gap: 12px;
  }

  .gallery-columns-grid {
    gap: 12px;
  }

  .gallery-media-card {
    height: 160px;
    border-radius: 14px;
  }

  .gallery-media-card--tall {
    height: 240px;
    border-radius: 14px;
  }
}

/* ── Mobile Small (≤ 480px) ── */
@media (max-width: 480px) {
  .awards-hero-section,
  .contribution-section,
  .timeline-section,
  .gallery-showcase-section {
    padding: 0 16px;
  }

  .awards-hero-container {
    padding: 4px 0 20px 0 !important;
  }

  .contribution-container,
  .timeline-container,
  .gallery-showcase-container {
    padding: 20px 0;
  }

  .awards-title {
    font-size: 26px;
    line-height: 36px;
  }

  .awards-featured-left-top {
    padding: 20px 16px 6px 16px;
  }

  .awards-featured-left-bottom {
    padding: 10px 16px 20px 16px;
  }

  .awards-featured-heading {
    font-size: 22px;
    line-height: 30px;
  }

  .awards-featured-desc {
    font-size: 13.5px;
  }

  .awards-stat-number {
    font-size: 20px;
  }

  .awards-stat-label {
    font-size: 11px;
    white-space: nowrap;
  }

  .awards-stat-divider {
    height: 28px;
  }

  .contribution-heading,
  .timeline-heading,
  .gallery-heading {
    font-size: 28px;
    line-height: 36px;
  }

  .contribution-images-grid {
    gap: 12px;
  }

  .contribution-col-left {
    gap: 12px;
  }

  .contribution-col-left .contribution-img-card {
    height: 150px;
    border-radius: 14px;
  }

  .contribution-card-tall {
    height: 230px;
    border-radius: 14px;
  }

  .contribution-card-tall > img:first-child {
    border-radius: 14px;
  }

  .contribution-leaf-vector {
    width: 70px;
    bottom: -14px;
    right: -14px;
  }

  .timeline-card,
  .timeline-card--dashed {
    padding: 20px 16px;
    border-radius: 18px;
  }

  .timeline-visual-row {
    height: 125px;
    gap: 8px;
  }

  .timeline-visuals-wrap {
    gap: 8px;
  }

  .timeline-img-box,
  .timeline-icon-box {
    border-radius: 12px;
  }

  .timeline-icon-box {
    width: 110px;
    height: 125px;
    flex: 0 0 110px;
  }

  .timeline-img-box--wide {
    width: auto;
  }

  .timeline-icon-box svg {
    width: 32px;
    height: 32px;
  }

  .gallery-highlight-text {
    font-size: 17px;
  }

  .gallery-subtext {
    font-size: 13.5px;
  }

  .gallery-media-card {
    height: 120px;
    border-radius: 12px;
  }

  .gallery-media-card--tall {
    height: 180px;
    border-radius: 12px;
  }

  .gallery-play-btn {
    width: 34px;
    height: 34px;
  }

  .gallery-card-caption {
    font-size: 11px;
    bottom: 10px;
    left: 10px;
  }
}