/* ── Civic Talks — Landing Page Styles ─────────────────────────────────── */

/* ── Hero ────────────────────────────────────────────────────────────────── */

.ct-hero {
  background: var(--ct-maroon);
  padding: 80px 0 72px;
  overflow: hidden;
}

.ct-hero-inner {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 56px;
  align-items: center;
}

/* "EMPOWERING CITIZENS" badge */
.ct-badge-empowering {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(80, 20, 35, 0.85);
  color: var(--ct-gold-light);
  border: 1px solid rgba(212, 148, 10, 0.35);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.ct-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ct-gold);
  flex-shrink: 0;
}

.ct-hero-left h1 {
  color: var(--ct-white);
  margin: 0 0 20px;
  line-height: 1.12;
}

.ct-hero-left p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1rem;
  max-width: 520px;
  margin-bottom: 40px;
  line-height: 1.78;
}

.ct-hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.ct-survey-nudge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.82rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 250ms ease;
}

.ct-survey-nudge svg {
  flex-shrink: 0;
  opacity: 0.7;
  transition: opacity 250ms ease;
}

.ct-survey-nudge:hover {
  color: var(--ct-gold);
}

.ct-survey-nudge:hover svg {
  opacity: 1;
}

/* Dark "Watch Latest Talk" button */
.ct-btn-dark {
  background: #2d2d35;
  color: var(--ct-white);
  border-color: #2d2d35;
}
.ct-btn-dark:hover {
  background: #3d3d48;
  border-color: #3d3d48;
}

/* Hero card — image only */
.ct-hero-card {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--ct-shadow-lg);
  line-height: 0;
}

.ct-hero-card-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 20px;
}

/* ── Mission / Stats ─────────────────────────────────────────────────────── */

.ct-mission {
  padding: 100px 0;
  background: var(--ct-white);
}

.ct-mission-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.ct-mission-image-wrap {
  position: relative;
}

.ct-mission-img {
  width: 100%;
  border-radius: 20px;
  object-fit: contain;
  height: 420px;
  background: #f0f4f8;
  border: 3px solid #6ec6f5;
  display: block;
}

.ct-pull-quote {
  position: absolute;
  bottom: -32px;
  right: -20px;
  background: var(--ct-white);
  border-radius: 16px;
  padding: 20px 24px;
  max-width: 280px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.13);
}

.ct-pull-quote p {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ct-text);
  line-height: 1.55;
  margin-bottom: 8px;
  font-style: normal;
}

.ct-pull-quote-attr {
  font-size: 0.8rem;
  color: var(--ct-text-muted);
  font-style: italic;
}

.ct-eyebrow-line {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ct-text-muted);
  margin-bottom: 16px;
}

.ct-eyebrow-line::before {
  content: "";
  display: block;
  width: 36px;
  height: 3px;
  background: var(--ct-maroon);
  flex-shrink: 0;
  border-radius: 2px;
}

.ct-mission-content h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--ct-maroon);
  margin-bottom: 20px;
  line-height: 1.15;
}

.ct-mission-content > p {
  color: var(--ct-text-muted);
  line-height: 1.85;
  margin-bottom: 40px;
  font-size: 0.97rem;
}

.ct-mission-content strong {
  color: var(--ct-text);
  font-weight: 700;
}

.ct-stats {
  display: flex;
  gap: 0;
}

.ct-stat {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-right: 40px;
  border-left: 4px solid var(--ct-gold);
  padding-left: 16px;
  margin-right: 40px;
}

.ct-stat:last-child {
  margin-right: 0;
}

.ct-stat-number {
  font-family: var(--ct-font-display);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--ct-text);
  line-height: 1;
  display: block;
}

.ct-stat-label {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--ct-text-muted);
  display: block;
  margin-top: 4px;
}

/* ── Video ───────────────────────────────────────────────────────────────── */

.ct-video-section {
  padding: 96px 0;
  background: #f0f0f5;
}

.ct-video-section h2 {
  margin-bottom: 8px;
  color: var(--ct-maroon);
}

.ct-video-card {
  background: var(--ct-white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 32px rgba(0,0,0,0.1);
  margin-top: 40px;
}

.ct-vc-thumb-link {
  display: block;
  position: relative;
  aspect-ratio: 16/9;
  width: 100%;
  overflow: hidden;
}

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

.ct-vc-thumb-link:hover .ct-vc-thumb-img {
  transform: scale(1.02);
}

.ct-vc-thumb-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  background: var(--ct-maroon-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--ct-white);
  padding-left: 5px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.45);
  transition: transform 0.2s ease, background 0.2s ease;
}

.ct-vc-thumb-link:hover .ct-vc-thumb-play {
  transform: translate(-50%, -50%) scale(1.1);
  background: var(--ct-maroon);
}

/* No-video placeholder */
.ct-vc-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 320px;
  background: #f5f0eb;
  border-radius: 16px 16px 0 0;
  gap: 14px;
}

.ct-vc-placeholder-icon {
  width: 64px;
  height: 64px;
  background: var(--ct-maroon);
  color: var(--ct-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  padding-left: 4px;
}

.ct-vc-placeholder p {
  font-size: 0.9rem;
  color: var(--ct-text-muted);
  font-weight: 500;
}

/* Placeholder inner layout */
.ct-vc-inner {
  display: grid;
  grid-template-columns: 1fr 340px;
  position: relative;
  min-height: 380px;
}

.ct-vc-left {
  background: #faf8f2;
  padding: 36px 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.ct-vc-logo {
  height: 44px;
  width: auto;
  margin-bottom: 20px;
}

.ct-vc-title {
  font-family: var(--ct-font-display);
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--ct-text);
  line-height: 1.2;
  margin-bottom: 12px;
}

.ct-vc-subtitle {
  font-size: 0.95rem;
  color: var(--ct-text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.ct-vc-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.ct-vc-date {
  font-size: 0.8rem;
  color: var(--ct-text);
  background: var(--ct-gold);
  color: #fff;
  padding: 4px 12px;
  border-radius: 6px;
  font-weight: 600;
}

.ct-vc-hybrid {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #27ae60;
  background: #e8f8ef;
  padding: 4px 12px;
  border-radius: 6px;
}

/* Right speakers grid */
.ct-vc-right {
  background: var(--ct-gold);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  padding: 3px;
}

.ct-vc-speaker img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  aspect-ratio: 1/1;
}

/* Centered play button */
.ct-vc-play-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.ct-play-btn-dark {
  width: 68px;
  height: 68px;
  background: var(--ct-maroon-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--ct-white);
  cursor: pointer;
  transition: transform var(--ct-transition), box-shadow var(--ct-transition);
  box-shadow: 0 4px 24px rgba(0,0,0,0.4);
  padding-left: 5px;
}

.ct-play-btn-dark:hover {
  transform: scale(1.1);
}

/* Bottom strip */
.ct-vc-bottom-strip {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 24px;
  border-top: 1px solid var(--ct-border);
  background: var(--ct-white);
}

.ct-latest-session-badge {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--ct-maroon-dark);
  color: var(--ct-white);
  padding: 5px 14px;
  border-radius: 100px;
  white-space: nowrap;
  flex-shrink: 0;
}

.ct-vc-episode-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ct-text);
}

/* ── Why Civic Talks ─────────────────────────────────────────────────────── */

.ct-why {
  padding: 96px 0;
  background: #f5f5f5;
}

.ct-why h2 {
  margin-bottom: 8px;
  color: var(--ct-text);
}

.ct-why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.ct-why-card {
  background: var(--ct-white);
  border-radius: 16px;
  padding: 32px 24px;
  border: 1px solid #e8e8e8;
  transition: box-shadow var(--ct-transition);
}

.ct-why-card:hover {
  box-shadow: var(--ct-shadow);
}

.ct-why-card--blue {
  background: #d6e8fc;
  border-color: #b8d4f8;
}

.ct-why-card--dark {
  background: var(--ct-maroon);
  border-color: var(--ct-maroon);
  color: var(--ct-white);
}

.ct-why-card.ct-why-card--dark h3 {
  color: var(--ct-white);
}

.ct-why-card.ct-why-card--dark p {
  color: rgba(255, 255, 255, 0.85);
}

.ct-why-card.ct-why-card--dark .ct-why-icon {
  color: rgba(255, 255, 255, 0.85);
}

.ct-why-icon {
  color: var(--ct-maroon);
  margin-bottom: 16px;
}

.ct-why-card--blue .ct-why-icon {
  color: #2c6cb0;
}

.ct-why-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--ct-text);
  line-height: 1.3;
}

.ct-why-card p {
  font-size: 0.88rem;
  color: var(--ct-text-muted);
  line-height: 1.7;
}

.ct-why-card--blue h3 {
  color: #1a4b8c;
}

.ct-why-card--blue p {
  color: #3a5a8a;
}

/* ── Focus Areas ─────────────────────────────────────────────────────────── */

.ct-focus {
  background: var(--ct-maroon);
  padding: 96px 0;
  color: var(--ct-white);
}

.ct-focus h2 {
  color: var(--ct-white);
  margin-bottom: 12px;
  font-size: clamp(2rem, 4vw, 3rem);
}

.ct-focus .ct-section-sub {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 64px;
}

.ct-focus-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.ct-focus-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding: 36px 16px;
  background: rgba(255,255,255,0.06);
  border-radius: 16px;
  text-align: center;
  transition: background var(--ct-transition);
  cursor: default;
}

.ct-focus-item:hover {
  background: rgba(255, 255, 255, 0.1);
}

.ct-focus-icon {
  width: 68px;
  height: 68px;
  border-radius: 14px;
  background: rgba(212, 148, 10, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ct-gold);
}

.ct-focus-item span {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.88);
}

/* ── Strategic Approach ──────────────────────────────────────────────────── */

.ct-approach {
  padding: 96px 0;
  background: var(--ct-off-white);
}

.ct-approach h2 {
  margin-bottom: 8px;
}

.ct-section-divider {
  border: none;
  border-top: 1px solid var(--ct-border);
  margin: 16px 0 20px;
}

.ct-approach-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin: 40px 0 56px;
}

.ct-approach-item {
  background: var(--ct-white);
  border-radius: var(--ct-radius-lg);
  padding: 30px;
  border: 1px solid var(--ct-border);
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.ct-approach-num {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: var(--ct-white);
  background: var(--ct-maroon-dark);
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
}

.ct-approach-content {
  flex: 1;
}

.ct-approach-item h3 {
  margin-bottom: 10px;
  color: var(--ct-maroon);
  font-size: 1rem;
}

.ct-approach-item p {
  font-size: 0.88rem;
  color: var(--ct-text-muted);
  line-height: 1.72;
}

.ct-what-we-do {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.ct-wwd-card {
  background: var(--ct-white);
  border-radius: var(--ct-radius-lg);
  overflow: hidden;
  border: 1px solid var(--ct-border);
  transition: box-shadow var(--ct-transition);
}

.ct-wwd-card:hover {
  box-shadow: var(--ct-shadow);
}

.ct-wwd-card img {
  width: 100%;
  height: 185px;
  object-fit: cover;
  display: block;
}

.ct-wwd-body {
  padding: 20px;
}

.ct-wwd-body h4 {
  font-size: 0.97rem;
  margin-bottom: 8px;
  color: var(--ct-maroon);
}

.ct-wwd-body p {
  font-size: 0.84rem;
  color: var(--ct-text-muted);
  line-height: 1.7;
}

/* ── Impact ──────────────────────────────────────────────────────────────── */

.ct-impact {
  background: var(--ct-maroon-dark);
  padding: 96px 0;
  color: var(--ct-white);
}

.ct-impact-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
}

.ct-impact-list h2 {
  color: var(--ct-white);
  margin-bottom: 36px;
}

.ct-impact-list ul {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.ct-impact-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.ct-impact-icon {
  width: 24px;
  min-width: 24px;
  color: var(--ct-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.ct-impact-item-body strong {
  display: block;
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--ct-white);
  margin-bottom: 5px;
}

.ct-impact-item-body p {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.65;
  margin: 0;
}

.ct-impact-stat-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 44px 40px;
  text-align: center;
}

.ct-impact-big-num {
  display: block;
  font-family: var(--ct-font-display);
  font-size: 6rem;
  font-weight: 800;
  color: var(--ct-white);
  line-height: 1;
  margin-bottom: 16px;
}

.ct-impact-stat-card p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.72;
  margin-bottom: 28px;
}

.ct-progress-bar {
  background: rgba(255, 255, 255, 0.14);
  border-radius: 100px;
  height: 8px;
  overflow: hidden;
}

.ct-progress-fill {
  height: 100%;
  background: var(--ct-gold);
  border-radius: 100px;
}

/* ── Event / Countdown ───────────────────────────────────────────────────── */

.ct-event {
  padding: 96px 0;
  background: var(--ct-white);
}

.ct-event-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.ct-event-inner .ct-badge-outline {
  margin-bottom: 40px;
}

.ct-countdown {
  display: flex;
  gap: 14px;
  margin-bottom: 28px;
}

.ct-countdown-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--ct-white);
  border: 1px solid var(--ct-border);
  box-shadow: 0 2px 12px rgba(92, 26, 46, 0.08);
  border-radius: 14px;
  padding: 20px 28px;
  min-width: 96px;
}

.ct-countdown-num {
  font-family: var(--ct-font-display);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--ct-maroon-dark) !important;
  line-height: 1;
}

.ct-countdown-label {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ct-text-muted);
  margin-top: 6px;
}

.ct-event-meta {
  display: flex;
  gap: 32px;
  font-size: 0.9rem;
  color: var(--ct-text-muted);
  margin: 20px 0 36px;
}

.ct-event-meta-item {
  display: flex;
  align-items: center;
  gap: 7px;
}

.ct-event-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.ct-event-ctas .ct-btn {
  border-radius: 8px;
}

/* ── Responsive ──────────────────────────────────────────────────────────── */

@media (max-width: 1024px) {
  .ct-why-grid { grid-template-columns: repeat(2, 1fr); }
  .ct-focus-grid { grid-template-columns: repeat(3, 1fr); }
  .ct-vc-inner { grid-template-columns: 1fr; }
  .ct-vc-right { grid-template-columns: repeat(6, 1fr); min-height: 100px; }
  .ct-vc-play-wrap { top: 40%; }
}

@media (max-width: 768px) {
  .ct-hero-inner { grid-template-columns: 1fr; }
  .ct-hero-card { max-width: 420px; }
  .ct-mission-inner { grid-template-columns: 1fr; gap: 64px; }
  .ct-pull-quote { position: static; margin-top: 24px; right: auto; bottom: auto; }
  .ct-approach-grid { grid-template-columns: 1fr; }
  .ct-what-we-do { grid-template-columns: 1fr; }
  .ct-impact-inner { grid-template-columns: 1fr; }
  .ct-countdown-box { padding: 16px 18px; min-width: 76px; }
  .ct-countdown-num { font-size: 2.1rem; }
}

@media (max-width: 600px) {
  .ct-why-grid { grid-template-columns: 1fr; }
  .ct-focus-grid { grid-template-columns: repeat(2, 1fr); }
  .ct-hero-ctas { flex-direction: column; align-items: flex-start; }
  .ct-event-meta { flex-direction: column; gap: 10px; align-items: center; }
  .ct-countdown { flex-wrap: wrap; justify-content: center; }
}
