.t2-image {
  max-width: 1376px;
  margin: 0 auto 24px;
}

.t2-image__frame {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 6px;
}

.t2-image__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.t2-image__overlay {
  position: absolute;
  inset: 0;
  padding: clamp(12px, 2vw, 24px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(0,0,0,0) 58%, rgba(0,0,0,0.42) 100%);
}

.t2-image__facts {
  list-style: none;
  margin: 0;
  padding: 0 0 14px;
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  font-size: clamp(13px, 1.4vw, 16px);
  font-weight: 500;
}

.t2-image__facts li {
  padding: 4px 10px;
  background: rgba(15, 20, 22, 0.42);
  backdrop-filter: blur(3px);
  border-radius: 4px;
}

.t2-image__brand {
  position: absolute;
  right: 12px;
  bottom: 8px;
  font-size: 10px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.04em;
}

.t2-image > figcaption {
  margin: 0;
  padding: 14px 18px 16px;
  border: 1px solid rgba(185, 151, 35, 0.22);
  border-left: 4px solid #b99723;
  border-radius: 0 0 6px 6px;
  background: linear-gradient(180deg, #fff 0%, #f8f3e6 100%);
  color: #3a2f10;
  font-size: clamp(0.9rem, 1.25vw, 1rem);
  font-weight: 600;
  line-height: 1.5;
  box-shadow: 0 10px 24px rgba(34, 28, 10, 0.06);
}

.t2-image > figcaption + * {
  margin-top: 0;
}

.t3-image {
  margin: 0 auto 24px;
  max-width: 1600px;
}

.t3-image img {
  width: 100%;
  height: auto;
  display: block;
}

.image-gallery-grid {
  align-items: start;
}

.image-gallery-grid .t2-image {
  width: 100%;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(34, 28, 10, 0.12);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 34px rgba(34, 28, 10, 0.08);
}

.image-gallery-grid .t2-image__frame {
  border-radius: 8px 8px 0 0;
}

.image-gallery-grid .t2-image__overlay { display: none; }

.image-gallery-grid .t2-image figcaption {
  min-height: 118px;
  margin: 0;
  padding: 14px 16px 16px;
  border-top: 3px solid #b99723;
  background: linear-gradient(180deg, #fff 0%, #f8f3e6 100%);
  color: #241f16;
  font-size: 0.98rem;
  font-weight: 500;
  line-height: 1.45;
}

.gallery-signal-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 24px;
}

.gallery-signal-strip span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 12px;
  border: 1px solid rgba(185, 151, 35, 0.3);
  border-radius: 999px;
  background: #f8f3e6;
  color: #3a2f10;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.25;
}

.case-signal-grid,
.stakeholder-grid,
.method-grid,
.sector-stat-grid {
  display: grid;
  gap: 16px;
  margin: 0 0 28px;
}

.case-signal-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.case-signal-grid--three,
.stakeholder-grid,
.method-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.sector-stat-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.case-signal-card,
.stakeholder-card,
.method-card,
.sector-stat {
  border: 1px solid rgba(189, 151, 35, 0.25);
  border-top: 4px solid #b99723;
  border-radius: 6px;
  background: #fff;
  padding: 18px;
  box-shadow: 0 14px 32px rgba(34, 28, 10, 0.06);
}

.case-signal-card span,
.stakeholder-card span,
.method-card span,
.sector-stat span {
  display: block;
  color: #7d6721;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.3;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.case-signal-card strong,
.stakeholder-card strong {
  display: block;
  color: #181818;
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  line-height: 1.35;
}

.method-card h3 {
  color: #181818;
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
  line-height: 1.15;
  margin: 0 0 12px;
}

.method-card p {
  color: #3a2f10;
  font-size: 1rem;
  line-height: 1.65;
  margin: 0;
}

.sector-stat strong {
  color: #181818;
  display: block;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
  margin-bottom: 10px;
}

.sector-stat span {
  color: #3a2f10;
  font-size: 0.95rem;
  letter-spacing: 0;
  text-transform: none;
}

@media (max-width: 900px) {
  .image-gallery-grid {
    grid-template-columns: 1fr !important;
    gap: 32px;
  }

  .image-gallery-grid .t2-image {
    max-width: none;
  }

  .image-gallery-grid .t2-image__frame {
    min-height: 190px;
  }

  .image-gallery-grid .t2-image figcaption {
    max-width: none;
    min-height: 0;
    font-size: 1rem;
    line-height: 1.45;
    padding: 14px 16px 16px;
  }

  .gallery-signal-strip {
    gap: 6px;
    margin-bottom: 22px;
  }

  .gallery-signal-strip span {
    min-height: 30px;
    padding: 5px 9px;
    font-size: 0.82rem;
  }

  .t2-image__overlay {
    padding: 8px;
    justify-content: flex-start;
    background: linear-gradient(180deg, rgba(0,0,0,0.34) 0%, rgba(0,0,0,0) 58%);
  }

  .t2-image__facts {
    align-content: flex-start;
    gap: 5px;
    max-width: 78%;
    padding: 0;
    font-size: 11px;
    line-height: 1.15;
  }

  .t2-image__facts li {
    padding: 3px 6px;
    background: rgba(15, 20, 22, 0.5);
  }

  .t2-image__facts li:nth-child(n+2) {
    display: none;
  }

  .t2-image__brand {
    right: 8px;
    bottom: 6px;
    font-size: 9px;
  }

  .case-signal-grid,
  .case-signal-grid--three,
  .stakeholder-grid,
  .method-grid,
  .sector-stat-grid {
    grid-template-columns: 1fr;
  }
}
