/* ═══════════════════════════════════════════════════════
   FIX #1 — Clickable industry tags
═══════════════════════════════════════════════════════ */
a.industry-tag {
  text-decoration: none;
  cursor: pointer;
}
a.industry-tag:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,168,76,0.06);
  transform: translateY(-2px);
}

/* ═══════════════════════════════════════════════════════
   FIX #2 — Case study placeholder shows title not letter
═══════════════════════════════════════════════════════ */
.case-card__placeholder-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: rgba(201,168,76,0.6);
  text-align: center;
  padding: 1.5rem;
  line-height: 1.4;
  max-width: 200px;
}

/* ═══════════════════════════════════════════════════════
   Industry detail page
═══════════════════════════════════════════════════════ */
.industry-hero {
  min-height: 40vh;
  background: var(--navy);
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
  padding-bottom: 4rem;
}
.industry-hero::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(13,27,42,0.97) 0%, rgba(22,35,51,0.9) 100%);
}
.industry-hero__content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 6rem 2rem 0;
  width: 100%;
}
.industry-hero__back {
  display: inline-block;
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  margin-bottom: 1.5rem;
  opacity: 0.8;
  transition: opacity 0.2s;
}
.industry-hero__back:hover { opacity: 1; }
.industry-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
}

.industry-detail { background: var(--white); }
.industry-detail__grid {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 5rem;
  align-items: start;
}
.industry-detail__description {
  font-size: 1.1rem;
  line-height: 1.85;
  color: var(--text-muted);
}
.industry-detail__sidebar {
  background: var(--platinum);
  border-radius: 8px;
  padding: 2rem;
  position: sticky;
  top: 100px;
}
.industry-detail__sidebar-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}
.industry-detail__list {
  list-style: none;
  padding: 0; margin: 0;
}
.industry-detail__list li { margin-bottom: 0.5rem; }
.industry-detail__link {
  font-size: 0.875rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.industry-detail__link:hover { color: var(--gold); }

@media (max-width: 768px) {
  .industry-detail__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .industry-detail__sidebar { position: static; }
}
