/* ── Blue Hero Section ──────────────────────────────────────────────────────── */
.tih-hero {
  position: relative;
  overflow: hidden;
}

.tih-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(255,255,255,0.06) 0%, transparent 60%);
  pointer-events: none;
}

.tih-hero h1 {
  color: #fff;
  margin-top: 0;
  margin-bottom: 16px;
}

.tih-hero__sub {
  margin-top: 0;
  margin-bottom: 32px;
}

/* ── Quote card inside the hero ─────────────────────────────────────────────── */
/* The [tih_quote_card] shortcode renders .tih-quote-card */
.tih-hero .tih-quote-card {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: var(--tih-radius-lg);
  padding: 28px 32px;
  max-width: 520px;
}

.tih-hero .tih-quote-card__heading {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
}

.tih-hero .tih-quote-card__sub {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.82);
  margin: 0;
}

.tih-hero .tih-btn--hero-white,
.tih-hero .tih-quote-card .tih-btn {
  background: #fff;
  color: var(--tih-primary);
  padding: 14px 28px;
  border-radius: var(--tih-radius-md);
  font-weight: 700;
  font-size: 1rem;
  transition: background 0.15s, transform 0.1s, box-shadow 0.15s;
}

.tih-hero .tih-btn--hero-white:hover,
.tih-hero .tih-quote-card .tih-btn:hover {
  background: var(--tih-primary-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.tih-hero .tih-quote-card__note {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.6);
  margin: 0;
}

@media (max-width: 600px) {
  .tih-hero .tih-quote-card {
    width: 100%;
    padding: 20px;
    align-items: stretch;
  }
  .tih-hero .tih-btn--hero-white {
    text-align: center;
  }
}
