/* ============================================================
   CIDE GLOBAL STYLESHEET
   Version: 1.0 — 2026-05-26

   USAGE: Load this file once, site-wide. Do NOT duplicate
   :root or these component classes in page stylesheets.
   Page stylesheets should only contain page-specific overrides.

   TABLE OF CONTENTS
   ---------------------------------------------------------
   01. Design Tokens (:root)
   02. Utility Classes
   03. Section Backgrounds
   04. Section Headers (mdtd-intro system)
   05. Hero
   06. Button System
       06a. .cide-hero-btn (hero inline buttons)
       06b. .cide-cta-primary (standalone gold CTA)
       06c. .cide-gold-cta (small inline CTA with arrow)
       06d. .cide-help-btn-block (help block buttons)
   07. Tag / Anchor Nav (hero tags)
   08. Hero CTA Cards
   09. Course / Program Cards
   10. Modal System
   11. Impact Cards + Stories Grid
   12. Featured Story
   13. Section Intro (Industry Services variant)
   14. Feature Cards (icon-centered)
   15. Service Cards (left-border link cards)
   16. Service Banner (gold header band)
   17. Content Sections (.cide-content)
   18. Testimonials
   19. Disclosure Cards (Academics expandable cards)
   ---------------------------------------------------------

   NOT IN THIS FILE (page-specific):
   - 08-book-with-us.css (iframe wrapper)
   - 11-field-research-s2-rcp-widget.css (scoped .cide-indServ)
   - 12-researcher-bio-pages.css (needs full rewrite with cide- prefix)
   - Research page: .mdtd-container1, .mdtd-card1, .mdtd-grid1, etc.
   - Package cards (.cide-package-card--gold/silver/custom)
   - Timeline (.timeline-row, .step-number, .col-md-2-4)

   CONFLICTS RESOLVED (from NOTE comments in source files):
   - .cide-course-grid: default = auto-fit minmax(280px, 1fr)
   - .cide-course-card padding: 1.5rem (was: 2.7rem on home — use modifier .cide-course-card--spacious)
   - .cide-course-card-header: row layout (was: column on home — use modifier .cide-course-card-header--centered)
   - .cide-course-card-icon: 40px (was: 50px on home — use modifier .cide-course-card-icon--lg)
   - .cide-course-card-title: 1.15rem / weight 600 (was: 1.4rem / weight 200 on home)
   - .cide-impact-card border: 1px (was: 2px in programs-and-services — FIXED)
   - .cide-impact-card img height: 200px default (override per page as needed)
   - .cide-gold-cta border: rgba(0,0,0,0.55) — accessibility correct (was: 0.08 in cide-home-4.css)
   - .cide-service-card border-left: var(--cu-gold) (was: #8a7a56 in our-services — FIXED)
   - .cide-service-banner: no box-shadow (was: shadow in our-services — REMOVED)
   - .cide-testimonial: 1px border-light + subtle shadow (was: 6px teal — REMOVED)
   - .mdtd-header__title1 underline: bottom -10px (was: -20px in all-programs/programs — STANDARDIZED)
   - .cide-ctaCard border: rgba(0,0,0,0.55) — accessibility correct (industry-services had 0.08 — FIXED)
   - .card-chevron svg stroke: #000 (was: var(--cu-gold) — accessibility fail — FIXED)
   ============================================================ */


/* ============================================================
   01. DESIGN TOKENS
   ============================================================ */

:root {
  /* --- Brand colors --- */
  --cu-gold:          #CFB87C;
  --cu-gold-hover:    #A59669;
  --cu-sandstone:     #F1EAD8;
  --cu-gold-tint:     #FCFBF7;  /* very light gold wash for backgrounds */
  --teal:             #00535C;

  /* --- Text --- */
  --text-dark:        #2C2A29;
  --text-muted:       #6b7280;

  /* --- Backgrounds --- */
  --bg-gray:          #f8f8f8;
  --bg-light-gray:    #f5f5f5;
  --white:            #FFFFFF;
  --black:            #000000;
  --testimonial-bg:   #1a1a1a;

  /* --- Borders --- */
  --border-light:       #eeeeee;
  --border-hairline:    #d1d5db;
  --border-interactive: #949494;
  --border-dark:        #999999;

  /* --- Hero layout --- */
  --hero-gap:         3rem;

  /* --- Focus — apply to all focusable elements --- */
  --focus-outline:        3px solid rgba(0, 0, 0, .85);
  --focus-outline-offset: 3px;
}


/* ============================================================
   02. UTILITY CLASSES
   ============================================================ */

/* Light gray background — use either class name (legacy .CIDE_lightGray supported) */
.cide-background-gray,
.CIDE_lightGray {
  background-color: var(--bg-light-gray);
}

.cide-background-white {
  background-color: var(--white);
}


/* ============================================================
   03. SECTION BACKGROUNDS
   ============================================================ */

.section-background-gray {
  background-color: var(--bg-gray);
  border-bottom: 1px solid #d9dadb;
}

.section-background-white {
  background-color: var(--white);
  border-bottom: 1px solid #d9dadb;
}


/* ============================================================
   04. SECTION HEADERS (mdtd-intro system)
   Used on: All Programs, Programs & Services, Get Involved,
            Choose Your Path, Research
   ============================================================ */

/* Centered intro wrapper */
.mdtd-intro {
  max-width: 760px;
  margin: 0 auto 3rem;
  padding: 0 1rem;
  text-align: center;
}

/* Section title with gold underline rule
   CONFLICT RESOLVED: underline at bottom: -10px (standardized from -10px / -20px variants) */
.mdtd-header__title1 {
  font-size: 2.5rem;
  color: var(--text-dark);
  margin-top: 2.5rem;
  margin-bottom: 2.75rem;
  position: relative;
  display: inline-block;
}

.mdtd-header__title1::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 3px;
  background-color: var(--cu-gold);
  border-radius: 2px;
}

/* Subtitle */
.mdtd-intro__text {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #4b5563;
  margin-top: 1rem;
}

/* Subheading (e.g. "I am a...") */
.cide-course-subheading {
  font-size: 1.5rem;
  color: var(--text-dark);
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .mdtd-header__title1 { font-size: 1.8rem; }
}

@media (max-width: 576px) {
  .mdtd-header__title1::after { width: 200px; }
}


/* ============================================================
   05. HERO
   Sitefinity structure:
   container-fluid > [wrapper: cide-hero]
     container > (no extra class)
       grid-6+6 > [Row: hero-row]
         col-lg-6 [hero-col-left] > [hero-text-content]
           h1, p, [cide-tag-container], [cide-hero-cta]
         col-lg-6 [hero-col-right] > Image widget
   ============================================================ */

.cide-hero {
  background-color: var(--white);
  border-bottom: 1px solid var(--border-hairline);
}

.cide-hero > .container {
  padding-top: 40px;
  padding-bottom: 64px;
}

/* Two-column row with faded center divider */
.hero-row {
  position: relative;
  z-index: 0;
}

.hero-row::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-0.5px);
  top: 12%;
  bottom: 12%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.15), transparent);
  pointer-events: none;
  z-index: 2;
}

/* Optional left-edge faded divider */
.hero-divider-fade {
  position: relative;
}

.hero-divider-fade::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12%;
  bottom: 12%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.15), transparent);
}

/* Columns */
.hero-col-left {
  padding-right: var(--hero-gap);
}

.hero-col-right {
  padding-left: var(--hero-gap);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-col-right img {
  border-radius: 6px;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

/* Tagline (immediately below h1) */
.cide-hero-tagline,
.hero-text-content .sf-Long-text .cide-hero-tagline,
.hero-text-content .t-contentBlock .cide-hero-tagline {
  font-size: 1.4rem !important;
  font-weight: 500;
  color: #000;
  line-height: 1.4;
  margin-top: 0.25rem;
  margin-bottom: 1rem;
}

/* Text content */
.hero-text-content h1 {
  color: #000;
  font-size: 2.7rem;
  font-weight: bold;
  line-height: 1.3;
  margin-bottom: 1rem;
}

.hero-text-content h2 {
  font-size: 1.8rem;
  font-weight: 500;
  color: #2b2b2b;
  line-height: 1.3;
  margin-top: 0.2rem;
  margin-bottom: 1rem;
}

.hero-text-content h3 {
  font-size: 1.4rem;
  font-weight: 500;
  color: #2b2b2b;
  margin-top: 0.85rem;
  margin-bottom: 1rem;
}

.hero-text-content p {
  color: #000;
  font-size: 1.15rem;
  line-height: 1.5;
}

/* Mobile */
@media (max-width: 991.98px) {
  .hero-row::after { display: none; }

  .hero-col-left,
  .hero-col-right {
    padding-left: 0;
    padding-right: 0;
  }

  .hero-col-right { display: none; }
}


/* ============================================================
   06a. HERO INLINE BUTTONS (.cide-hero-cta)
   Usage: wrap in <div class="cide-hero-cta">
   Available variants: -primary, -secondary, -outline
   ============================================================ */

.cide-hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: nowrap;
  margin-top: 0.5rem;
  justify-content: flex-start;
}

/* Base */
.cide-hero-cta .cide-hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  padding: 0.9rem 0.5rem;
  border-radius: 3px;
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1.4;
  text-align: center;
  text-decoration: none;
  box-shadow: none;
  transform: none;
  transition: background-color 120ms ease, border-color 120ms ease, color 120ms ease;
}

.cide-hero-cta .cide-hero-btn:hover,
.cide-hero-cta .cide-hero-btn:active {
  transform: none;
  box-shadow: none;
}

.cide-hero-cta .cide-hero-btn:focus-visible {
  outline: var(--focus-outline);
  outline-offset: var(--focus-outline-offset);
}

/* Primary — gold fill */
.cide-hero-cta .cide-hero-btn-primary {
  background: var(--cu-gold);
  border: 1px solid var(--cu-gold);
  color: #000;
  min-width: 190px;
}

.cide-hero-cta .cide-hero-btn-primary:hover,
.cide-hero-cta .cide-hero-btn-primary:focus-visible {
  background-color: #C3A65B;
  border-color: #c8b072;
}

/* Secondary — black fill, gold text */
.cide-hero-cta .cide-hero-btn-secondary {
  background: #000;
  border: 1px solid #000;
  color: var(--cu-gold);
  min-width: 120px;
}

.cide-hero-cta .cide-hero-btn-secondary:hover,
.cide-hero-cta .cide-hero-btn-secondary:focus-visible {
  background-color: #111;
  border-color: #111;
  color: #e6d39a;
}

/* Outline — transparent with gold border */
.cide-hero-cta .cide-hero-btn-outline {
  background: transparent;
  border: 2px solid var(--cu-gold);
  color: #000;
  min-width: 110px;
}

.cide-hero-cta .cide-hero-btn-outline:hover,
.cide-hero-cta .cide-hero-btn-outline:focus-visible {
  background-color: rgba(207, 184, 124, 0.18);
  border-color: var(--cu-gold);
  color: #000;
}

@media (max-width: 991.98px) {
  .cide-hero-cta { flex-wrap: wrap; }
}


/* ============================================================
   06b. STANDALONE GOLD CTA (.cide-cta-primary)
   Control alignment via parent: text-align: left/center/right
   ============================================================ */

.cide-cta-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.5rem;
  border-radius: 3px;
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1.4;
  text-align: center;
  text-decoration: none;
  background: var(--cu-gold);
  border: 1px solid var(--cu-gold);
  color: #000;
  box-shadow: none;
  transform: none;
  transition: background-color 120ms ease, border-color 120ms ease;
}

.cide-cta-primary,
.cide-cta-primary:visited,
.cide-cta-primary:focus {
  color: #000;
  text-decoration: none;
}

.cide-cta-primary:hover,
.cide-cta-primary:focus-visible {
  background-color: #C3A65B;
  border-color: #c8b072;
  color: #000;
  text-decoration: none;
}

.cide-cta-primary:focus-visible {
  outline: var(--focus-outline);
  outline-offset: var(--focus-outline-offset);
}


/* ============================================================
   06c. SMALL GOLD CTA WITH ARROW (.cide-gold-cta)
   Used on impact cards, academics, research.
   CONFLICT RESOLVED: border rgba(0,0,0,0.55) — accessibility correct.
   Old name .cide-impact-cta is an alias — do not use on new pages.
   ============================================================ */

.cide-gold-cta,
.cide-impact-cta {    /* .cide-impact-cta is legacy — use .cide-gold-cta on new pages */
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.25rem;
  padding: 0.55rem 1rem;
  border-radius: 3px;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.02em;
  background: var(--cu-gold);
  color: #000;
  border: 1px solid rgba(0, 0, 0, 0.55);
  transition: background 0.15s ease, border-color 0.15s ease;
}

.cide-gold-cta::after,
.cide-impact-cta::after {
  content: "";
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M18 8L22 12L18 16'/%3E%3Cpath d='M2 12H22'/%3E%3C/svg%3E") center / contain no-repeat;
}

.cide-gold-cta,
.cide-gold-cta:hover,
.cide-gold-cta:visited,
.cide-gold-cta:focus,
.cide-impact-cta,
.cide-impact-cta:hover,
.cide-impact-cta:visited,
.cide-impact-cta:focus {
  color: #000;
  text-decoration: none;
}

.cide-gold-cta:hover,
.cide-gold-cta:focus-visible,
.cide-impact-cta:hover,
.cide-impact-cta:focus-visible {
  background-color: #C3A65B;
  border-color: #c8b072;
}

.cide-gold-cta:focus-visible,
.cide-impact-cta:focus-visible {
  outline: var(--focus-outline);
  outline-offset: var(--focus-outline-offset);
  border-radius: 0.5px;
}


/* ============================================================
   06d. HELP BLOCK BUTTONS (.cide-help-btn-block)
   "Can't find what you're looking for?" section
   ============================================================ */

.cide-help-btn-block {
  display: flex;
  gap: 1rem;
  flex-wrap: nowrap;
  margin-top: 0.5rem;
  justify-content: center;
}

.cide-help-btn-block a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.55rem 1rem;
  border-radius: 2px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  transform: none;
  box-shadow: none;
  transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.cide-help-btn-block a:visited,
.cide-help-btn-block a:focus { text-decoration: none; }

.cide-help-btn-block a:hover,
.cide-help-btn-block a:active { transform: none; box-shadow: none; }

/* Primary: Contact Us */
.cide-help-btn-block .cide-contact {
  background-color: var(--cu-gold);
  color: #000;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.cide-help-btn-block .cide-contact:hover,
.cide-help-btn-block .cide-contact:focus-visible {
  background-color: #C3A65B;
  border-color: #c8b072;
  color: #000;
}

/* Secondary: View All Services */
.cide-help-btn-block .cide-btn-services {
  background-color: var(--white);
  border: 2px solid var(--cu-gold);
  color: #000;
}

.cide-help-btn-block .cide-btn-services:hover,
.cide-help-btn-block .cide-btn-services:focus-visible {
  background-color: rgba(207, 184, 124, 0.10);
  border-color: var(--cu-gold);
  color: #000;
}

.cide-help-btn-block a:focus-visible {
  outline: var(--focus-outline);
  outline-offset: var(--focus-outline-offset);
}


/* ============================================================
   07. TAG / ANCHOR NAV (.cide-tag-container)
   NOTE: .cide-tag-container a.tag = clickable anchor buttons.
   Do NOT confuse with .cide-featured-tags .cide-story-tag
   (non-clickable pills — see Section 12).
   ============================================================ */

.cide-tag-container {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 16px;
}

.cide-tag-container a.tag {
  display: block;
  flex: 1 1 auto;
  text-align: center;
  padding: 8px 16px;
  font-size: 1.1rem;
  color: var(--text-dark);
  background: var(--white);
  border: 1px solid var(--border-interactive);
  border-radius: 4px;
  text-decoration: none;
  transition: border-color 0.15s ease, background-color 0.15s ease;
}

.cide-tag-container a.tag:hover,
.cide-tag-container a.tag:focus-visible {
  border-color: var(--cu-gold);
  background-color: rgba(207, 184, 124, 0.08);
}

.cide-tag-container a.tag:focus-visible {
  outline: var(--focus-outline);
  outline-offset: var(--focus-outline-offset);
}


/* ============================================================
   08. HERO CTA CARDS (.cide-hero-cta-cards)
   Icon + title + subtitle cards below hero text
   ============================================================ */

.cide-hero-cta-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  padding-top: 16px;
  max-width: 600px;
}

@media (min-width: 640px) {
  .cide-hero-cta-cards { grid-template-columns: 1fr 1fr; }
}

.cide-hero-cta-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: var(--white);
  border: 1px solid var(--border-interactive);
  border-radius: 4px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.15s ease, background-color 0.15s ease;
  box-shadow: none;
  transform: none;
}

.cide-hero-cta-card:hover,
.cide-hero-cta-card:focus-visible {
  border-color: var(--cu-gold);
  background-color: rgba(207, 184, 124, 0.08);
  text-decoration: none;
}

.cide-hero-cta-card:focus-visible {
  outline: var(--focus-outline);
  outline-offset: var(--focus-outline-offset);
}

/* Icon circle */
.cide-hero-cta-card .cta-icon {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--cu-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.15s ease;
}

.cide-hero-cta-card:hover .cta-icon,
.cide-hero-cta-card:focus-visible .cta-icon {
  background-color: var(--cu-gold-hover);
}

.cide-hero-cta-card .cta-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  color: #000;
  fill: none;
  stroke: currentColor;
}

/* Text */
.cide-hero-cta-card .cta-content { flex: 1; }

.cide-hero-cta-card .cta-title {
  font-weight: 700;
  font-size: 0.875rem;
  color: #000;
  margin: 0 0 0.25rem 0;
}

.cide-hero-cta-card .cta-subtitle {
  font-size: 0.75rem;
  color: #595955;
  margin: 0;
}


/* ============================================================
   09. COURSE / PROGRAM CARDS

   CONFLICT RESOLVED:
   - Grid: auto-fit minmax(280px, 1fr) [was: 4-col fixed on home, auto-fit on Get Involved]
   - Card header: row layout [was: column on home]
   - Icon size: 40px [was: 50px on home]
   - Card padding: 1.5rem [was: 2.7rem on home]
   - Title: 1.15rem / weight 600 [was: 1.4rem / weight 200 on home]

   MODIFIERS for home page variant:
   - .cide-course-card--spacious  → padding 2.7rem
   - .cide-course-card-header--centered → column layout, center-aligned
   - .cide-course-card-icon--lg  → 50px icon
   ============================================================ */

.cide-course-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  padding: 1rem;
}

/* Link wrapper */
.cide-course-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
  cursor: pointer;
  height: 100%;
  position: relative;
}

.cide-course-card-link:hover { text-decoration: none; }

.cide-course-card-link:focus-visible {
  outline: var(--focus-outline);
  outline-offset: var(--focus-outline-offset);
  border-radius: 0.5px;
}

/* Gold top-bar accent (revealed on hover) */
.cide-course-card-link::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(to right, var(--cu-gold), #e5d5a8);
  border-radius: 0.5rem 0.5rem 0 0;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.cide-course-card-link:hover::before,
.cide-course-card-link:focus-visible::before { opacity: 1; }

/* Card box */
.cide-course-card {
  background: #fff;
  border-radius: 0.4rem;
  padding: 1.5rem;
  border: 1px solid var(--border-dark);
  box-shadow: none;
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.cide-course-card-link:hover .cide-course-card,
.cide-course-card-link:focus-visible .cide-course-card {
  box-shadow: 0 4px 12px rgba(207, 184, 124, 0.2);
  border-color: var(--cu-gold);
}

/* Modifier: spacious (home page large cards) */
.cide-course-card--spacious { padding: 2.7rem; }

/* Card header — row layout (default) */
.cide-course-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

/* Modifier: centered column layout (home page) */
.cide-course-card-header--centered {
  flex-direction: column;
  text-align: center;
  gap: 20px;
  margin-bottom: 20px;
}

/* Icon */
.cide-course-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--cu-gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 40px;
}

/* Modifier: large icon (home page) */
.cide-course-card-icon--lg {
  width: 50px;
  height: 50px;
  flex-basis: 50px;
  flex-shrink: 0;
}

.cide-course-card-icon svg { width: 20px; height: 20px; display: block; }

.cide-course-card-icon svg * {
  fill: none !important;
  stroke: #000 !important;
  stroke-width: 2 !important;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Title */
.cide-course-card-title {
  margin: 0;
  padding-top: 1px;
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.15;
  color: var(--text-dark);
}

/* Description (optional) */
.cide-course-card-desc {
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  line-height: 1.5;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}

/* Responsive */
@media (max-width: 991px) {
  .cide-course-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 575px) {
  .cide-course-grid { grid-template-columns: 1fr; gap: 1rem; }
}

@media (max-width: 768px) {
  .cide-course-card-title { font-size: 1.1rem; }
}

@media (max-width: 576px) {
  .cide-course-card-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    flex-basis: 32px;
  }
  .cide-course-card-icon svg { width: 18px; height: 18px; }
}


/* ============================================================
   10. MODAL SYSTEM
   Used on: Get Involved / Choose Your Path
   ============================================================ */

.cide-modal { display: none; }
.cide-modal.is-open { display: block; }

.cide-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .6);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  z-index: 9999;
}

.cide-modal-container {
  position: relative;
  background: #fff;
  width: 100%;
  max-width: 720px;
  border-radius: 0.4rem;
  padding: 0;
  border: 1px solid var(--cu-gold);
  box-shadow: 0 4px 12px rgba(207, 184, 124, 0.2);
  overflow: hidden;
}

/* Gold top-bar accent */
.cide-modal-container::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(to right, var(--cu-gold), #e5d5a8);
}

/* Black header bar */
.cide-modal-headerbar {
  background: #000;
  color: #fff;
  padding: 1.1rem 1.25rem;
}

/* Icon | title | close — 3-col grid */
.cide-modal-title-row {
  display: grid;
  grid-template-columns: 40px 1fr 40px;
  align-items: center;
  gap: 12px;
}

/* Gold icon square */
.cide-modal-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--cu-gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.cide-modal-icon svg { width: 20px; height: 20px; display: block; }

.cide-modal-icon svg * {
  fill: none !important;
  stroke: #000 !important;
  stroke-width: 2 !important;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Title */
.cide-modal-title {
  margin: 0;
  font-size: 1.45rem;
  font-weight: 800;
  line-height: 1.2;
  color: #fff !important;  /* !important required to override platform base styles */
}

/* Close button */
.cide-modal-close {
  appearance: none;
  background: transparent;
  border: 2px solid transparent;
  border-radius: 10px;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  cursor: pointer;
  color: #fff;
  justify-self: end;
}

.cide-modal-close:hover { background: rgba(255, 255, 255, 0.12); }

.cide-modal-close:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 3px;
}

/* Body */
.cide-modal-content {
  padding: 0.75rem 1.25rem 0;
  color: var(--text-dark);
  line-height: 1.6;
}

.cide-modal-subtitle {
  margin: 0 0 0.2rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: 0.2px;
}

.cide-modal-content a {
  color: var(--text-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 500;
}

.cide-modal-content a:focus-visible {
  outline: 3px solid #000;
  outline-offset: 3px;
}

/* Footer */
.cide-modal-footer {
  margin-top: 1rem;
  padding: 0.9rem 1.25rem 1rem;
  border-top: 1px solid var(--border-light);
  display: flex;
  justify-content: flex-end;
}

.cide-modal-btn {
  min-width: 96px;
  padding: 0.6rem 1rem;
  border-radius: 0.375rem;
  border: 1px solid var(--border-light);
  background: #fff;
  color: var(--text-dark);
  font-weight: 600;
  cursor: pointer;
}

.cide-modal-btn:hover {
  box-shadow: 0 4px 12px rgba(207, 184, 124, 0.2);
  border-color: var(--cu-gold);
}

.cide-modal-btn:focus-visible {
  outline: 3px solid #000;
  outline-offset: 3px;
}

/* Responsive */
@media (max-width: 480px) {
  .cide-modal-headerbar { padding: 0.8rem 1rem; }
  .cide-modal-content,
  .cide-modal-footer { padding-left: 1rem; padding-right: 1rem; }
  .cide-modal-title-row { grid-template-columns: 32px 1fr 36px; }
  .cide-modal-icon { width: 32px; height: 32px; border-radius: 8px; }
  .cide-modal-close { width: 36px; height: 36px; }
  .cide-modal-title { font-size: 1.2rem; }
}


/* ============================================================
   11. IMPACT CARDS + STORIES GRID

   CONFLICT RESOLVED:
   - border: 1px (was: 2px in programs-and-services — FIXED)
   - img height: 200px default (override per page with inline style or modifier)

   NOTE: .cide-impact-card can be used standalone (with direct hover)
   or wrapped in .cide-impact-card-link (hover delegated to parent).
   Both patterns are supported below.

   NOTE: The black title band (.cide-impact-card h3.t-rssContentFirst)
   is only used on Programs & All Programs pages (RSS feed output).
   ============================================================ */

/* 3-column grid (impact stories, research) */
.cide-stories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding: 1rem 0;
}

@media (max-width: 900px) { .cide-stories-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 576px) { .cide-stories-grid { grid-template-columns: 1fr; } }

/* 4-column grid (programs pages) */
.cide-programs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  padding: 1rem 0;
}

@media (max-width: 1200px) { .cide-programs-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 1000px) { .cide-programs-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 576px)  { .cide-programs-grid { grid-template-columns: 1fr; } }

/* Link wrapper (focus delegated to child card) */
.cide-impact-card-link,
.cide-impact-card-link:hover { text-decoration: none; }

.cide-impact-card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  outline: none;
}

.cide-impact-card-link .cide-impact-card { flex: 1; }

.cide-impact-card-link:hover .cide-impact-card {
  border-color: var(--cu-gold);
  box-shadow: 0 4px 12px rgba(207, 184, 124, 0.2);
}

.cide-impact-card-link:hover .cide-impact-card::after { opacity: 1; }

.cide-impact-card-link:focus-visible .cide-impact-card {
  outline: var(--focus-outline);
  outline-offset: var(--focus-outline-offset);
  border-radius: 0.5px;
  border-color: var(--cu-gold);
  box-shadow: 0 4px 12px rgba(207, 184, 124, 0.2);
}

.cide-impact-card-link:focus-visible .cide-impact-card::after { opacity: 1; }
.cide-impact-card-link:active .cide-impact-card {
  box-shadow: inset 0 4px 12px rgba(0, 0, 0, 0.3);
  border-color: var(--cu-gold);
}

/* Card */
.cide-impact-card {
  background: #fff;
  border-radius: 3px;
  border: 1px solid var(--border-interactive);
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

/* Gold top-bar accent */
.cide-impact-card::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(to right, var(--cu-gold), #e5d5a8);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.cide-impact-card:hover::after { opacity: 1; }

.cide-impact-card:hover {
  border-color: var(--cu-gold);
  box-shadow: 0 4px 12px rgba(207, 184, 124, 0.2);
}

.cide-impact-card img {
  width: 100%;
  display: block;
  height: 200px;  /* override per page with class or inline style */
  object-fit: cover;
}

/* Content area */
.cide-impact-card-content {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.cide-impact-card-content .cide-gold-cta { margin-top: auto; }

.cide-impact-card-content p {
  font-size: 0.9rem;
  color: var(--text-dark);
  margin: 0 0 0.5rem;
  line-height: 1.5;
}

/* NOTE: .cide-impact-card h3.t-rssContentFirst (black title band) is NOT here.
   That rule is PAGE-SPECIFIC — it lives in 05-programs-and-services.css and
   cide-all-programs.css only. Sitefinity adds t-rssContentFirst to ALL RSS
   widget output, including the home page, so the rule cannot be global. */

/* Border-top hover variant (Academics) */
.cide-impact-card--top-accent {
  border-top: 4px solid transparent;
  border-bottom: 1px solid #eeeeee;
  border-left: 1px solid #eeeeee;
  border-right: 1px solid #eeeeee;
}

.cide-impact-card--top-accent:hover {
  border-color: var(--cu-gold);
  border-top-color: var(--cu-gold);
}


/* ============================================================
   12. FEATURED STORY
   NOTE: .cide-story-tag (non-clickable pills) ≠ .cide-tag-container a.tag
   Do not merge these two patterns.
   ============================================================ */

.cide-featured-story {
  background: #fff;
  border-radius: 6px;
  border: 1px solid var(--border-interactive);
  border-left: 6px solid var(--cu-gold);
  box-shadow: none;
  padding: 1.25rem;
}

.cide-featured-media { height: 100%; overflow: hidden; }

.cide-featured-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 3px;
}

/* "FEATURED STORY" pill label auto-inserted above h3 */
.cide-featured-story h3::before {
  content: "FEATURED STORY";
  display: block;
  width: fit-content;
  margin: 0 0 0.6rem 0;
  padding: 0.3rem 0.5rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #8D7334;
  background: rgba(207, 184, 124, 0.25);
}

/* Non-clickable tag pills */
.cide-featured-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0.4rem 0 0.75rem 0;
}

.cide-featured-tags .cide-story-tag,
.cide-featured-tags .cide-tag {  /* .cide-tag is legacy name — use .cide-story-tag on new pages */
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.6rem;
  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1.2;
  border-radius: 999px;
  background: #f3f4f6;
  color: #374151;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

/* Teal nav link (impact story back-link) */
.cide-impact-nav {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #244C5A;
  text-decoration: none;
  background: none;
  padding: 0;
  border: 0;
  transition: color 0.15s ease;
}

.cide-impact-nav::after {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23244C5A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M18 8L22 12L18 16'/%3E%3Cpath d='M2 12H22'/%3E%3C/svg%3E") center / contain no-repeat;
  transition: transform 0.15s ease;
}

.cide-impact-nav,
.cide-impact-nav:hover,
.cide-impact-nav:visited,
.cide-impact-nav:focus { text-decoration: none; }

.cide-impact-nav:hover,
.cide-impact-nav:focus-visible { color: #28939D; }

.cide-impact-nav:hover::after,
.cide-impact-nav:focus-visible::after {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2328939D' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M18 8L22 12L18 16'/%3E%3Cpath d='M2 12H22'/%3E%3C/svg%3E") center / contain no-repeat;
}

.cide-impact-nav:focus-visible {
  outline: var(--focus-outline);
  outline-offset: var(--focus-outline-offset);
  border-radius: 0.5px;
}


/* ============================================================
   13. SECTION INTRO (Industry Services variant)
   ============================================================ */

.cide-section-intro { text-align: center; margin-bottom: 2.5rem; }
.cide-section-intro h2 { font-size: 2.5rem; font-weight: 800; color: var(--text-dark); margin-bottom: 0.5rem; }
.cide-section-intro p { font-size: 1.15rem; color: var(--text-muted); font-weight: 600; line-height: 1.6; margin-bottom: 0; }


/* ============================================================
   14. FEATURE CARDS (icon-centered, no link)
   Used in: Industry Services — "What we offer" row
   ============================================================ */

.col-lg-3.d-flex > .t-contentBlock,
.col-lg-3.d-flex > .t-contentBlock > .sf-Long-text {
  display: flex !important;
  flex-direction: column;
  flex-grow: 1;
  width: 100%;
}

.cide-feature-card {
  display: flex !important;
  flex-direction: column;
  align-items: center;
  align-self: stretch;
  flex-grow: 1;
  width: 100%;
  text-align: center;
}

.cide-feature-card__icon {
  height: 100px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  margin-bottom: 1.25rem;
}

.cide-feature-card h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.cide-feature-card p {
  font-size: 1.05rem !important;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 0;
}


/* ============================================================
   15. SERVICE CARDS (left-border link cards)
   CONFLICT RESOLVED: border-left: var(--cu-gold) (was: #8a7a56 — FIXED)
   ============================================================ */

.col-lg-6.d-flex > .t-contentBlock,
.col-lg-6.d-flex > .t-contentBlock > .sf-Long-text {
  display: flex !important;
  flex-direction: column;
  flex-grow: 1;
  width: 100%;
}

.cide-service-card {
  display: flex !important;
  flex-direction: column;
  align-items: flex-start;
  align-self: stretch;
  flex-grow: 1;
  width: 100%;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-left: 4px solid var(--cu-gold);
  border-radius: 0 4px 4px 0;
  padding: 24px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.cide-service-card:hover,
.cide-service-card:focus-visible {
  border-left-color: var(--cu-gold-hover);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  text-decoration: none;
  color: inherit;
}

.cide-service-card:focus-visible {
  outline: var(--focus-outline);
  outline-offset: var(--focus-outline-offset);
}

.cide-service-card__icon {
  height: 72px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  margin-bottom: 1rem;
}

.cide-service-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  padding-top: 0;
}

.cide-service-card h3::after { display: none; }

.cide-service-card p {
  font-size: 1.05rem !important;
  color: var(--text-dark);
  line-height: 1.6;
  margin-bottom: 0;
}


/* ============================================================
   16. SERVICE BANNER (gold header band)
   CONFLICT RESOLVED: no box-shadow (was: 0 6px 16px in our-services — REMOVED)
   ============================================================ */

.cide-service-banner {
  position: relative;
  background-color: var(--cu-gold);
  background-image: url('/images/librariesprovider38/default-album/gold-bar-header.svg');
  background-size: cover;
  background-blend-mode: normal;
  overflow: hidden;
}

.cide-service-banner > .container {
  position: relative;
  z-index: 3;
  padding-top: 44px;
  padding-bottom: 52px;
}

.cide-service-banner > .container .sf-Long-text { max-width: 750px; }

.cide-service-banner h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 0;
}

.cide-service-banner p,
.cide-service-banner .sf-Long-text p,
.cide-service-banner .t-contentBlock p {
  font-size: 1.15rem;
  color: var(--text-dark);
  line-height: 1.6;
  margin-bottom: 0;
}

.cide-service-banner .cide-banner-subtitle {
  font-size: 1.8rem;
  font-weight: 500;
  color: #2b2b2b;
  line-height: 1.3;
  margin-top: 10px;
  margin-bottom: 0;
}

@media (max-width: 991.98px) {
  .cide-service-banner > .container .sf-Long-text { max-width: 100%; }
}


/* ============================================================
   17. CONTENT SECTIONS (.cide-content)
   Used in: Industry Services, Our Services
   ============================================================ */

.cide-content p,
.cide-content .sf-Long-text p,
.cide-content .t-contentBlock p {
  font-size: 1.15rem !important;
  color: var(--text-dark);
  line-height: 1.6;
  margin-bottom: 0;
}

.cide-content h3 {
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 5px;
  padding-top: 32px;
}

.cide-content h3::after {
  content: "";
  display: block;
  margin-top: 5px;
  border: none;
  border-bottom: 1px solid var(--cu-gold);
}

/* Modifiers to suppress the gold underline on h3 */
.cide-no-underline { margin-top: -16px; }
.cide-no-underline h3 { padding-top: 16px; margin-bottom: 0; padding-bottom: 0; }
.cide-no-underline h3::after { display: none; }
.cide-tight-top h3 { padding-top: 8px; }

/* Text helpers */
.cide-content .cide-overview-desc {
  font-size: 1.15rem;
  color: var(--text-dark);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.cide-content .cide-tagline-check {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-top: 8px;
  margin-bottom: 1rem;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-dark);
}

.cide-content .cide-tagline-check svg {
  flex-shrink: 0;
  background: transparent;
}

/* Info box (gold left-border callout)
   CONFLICT RESOLVED: border rgba(0,0,0,0.55) for accessibility */
.cide-content .cide-infoBox {
  border: none;
  border-left: 4px solid var(--cu-gold);
  border-top: 1px solid var(--cu-gold);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  padding: 40px;
  margin: 1rem 0 2rem;
  background: var(--white);
  color: #000;
}

.cide-content .cide-infoBox p,
.cide-content .cide-infoBox h1,
.cide-content .cide-infoBox h2,
.cide-content .cide-infoBox h3,
.cide-content .cide-infoBox h4,
.cide-content .cide-infoBox h5,
.cide-content .cide-infoBox li { color: #000; }

/* Row of comparison cards */
.cide-content .cide-cardRow { display: flex; gap: 1.5rem; margin-bottom: 1.5rem; }

.cide-content .cide-card {
  flex: 1;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-left: 4px solid var(--border-light);
  border-radius: 0 4px 4px 0;
  padding: 20px 24px;
}

.cide-content .cide-card h4 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 0.75rem;
}

.cide-content .cide-card p { color: #000; margin-bottom: 0; }

/* Bottom row layout */
.cide-content .cide-bottomRow { display: flex; gap: 1.5rem; align-items: flex-start; }
.cide-content .cide-servicesList { flex: 2; }

.cide-content .cide-servicesList h4,
.cide-content .cide-ctaSection h4 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.cide-content .cide-servicesList ul { padding-left: 1.25rem; margin-bottom: 0; }
.cide-content .cide-servicesList li { font-size: 1.15rem; color: var(--text-dark); line-height: 1.6; }

.cide-content .cide-ctaSection { flex: 0 0 337px; }

/* Centered CTA section variant */
.cide-content .cide-ctaSection--centered {
  flex: unset;
  width: 100%;
  margin-left: 0;
  margin-right: 0;
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cide-content .cide-ctaSection--centered h4 { text-align: center; margin-bottom: 1rem; }
.cide-content .cide-ctaSection--centered .cide-ctaCard { width: auto; flex: 1 1 230px; margin-bottom: 0; }
.cide-content .cide-cta-buttons { display: flex; flex-direction: row; gap: 1rem; flex-flow: wrap; justify-content: center; }

/* CTA card (sandstone background, black icon circle)
   CONFLICT RESOLVED: border rgba(0,0,0,0.55) — accessibility correct */
.cide-content .cide-ctaCard {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--cu-sandstone);
  border: 1px solid rgba(0, 0, 0, 0.55);
  border-radius: 4px;
  padding: 1rem;
  margin-bottom: 1rem;
  text-decoration: none;
  color: inherit;
  transition: background-color 0.15s ease;
}

.cide-content .cide-ctaCard:hover,
.cide-content .cide-ctaCard:focus-visible { background-color: #e6dcc8; }

.cide-content .cide-ctaCard:focus-visible {
  outline: var(--focus-outline);
  outline-offset: var(--focus-outline-offset);
}

.cide-content .cide-ctaIcon {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  background: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cide-content .cide-ctaIcon em { display: flex; align-items: center; justify-content: center; font-style: normal; }
.cide-content .cide-ctaIcon svg { width: 1.25rem; height: 1.25rem; stroke: var(--cu-sandstone); fill: none; }
.cide-content .cide-ctaCard h5 { font-size: 1.15rem; font-weight: 700; color: var(--text-dark); margin-bottom: 2px; }
.cide-content .cide-ctaCard p { font-size: 1rem; color: var(--text-dark); margin-bottom: 0; }

/* Case study cards */
.cide-case-study-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cide-case-study-card .cide-label { font-size: 1.15rem; font-style: italic; color: var(--text-muted); margin-bottom: 0; }
.cide-case-study-card h4 { font-size: 1.5rem; font-weight: 600; color: var(--text-dark); line-height: 1.3; margin-bottom: 0; }
.cide-case-study-card p { line-height: 1.6; margin-bottom: 0; }
.cide-case-study-card ul { padding-left: 1.25rem; margin-bottom: 0; }
.cide-case-study-card li { font-size: 1.15rem; color: var(--text-dark); line-height: 1.5; }

/* Image columns */
.cide-work-img-col { display: flex; }
.cide-work-img-col img { width: 100%; height: 100%; object-fit: cover; border-radius: 8px; }

/* Layout rows */
.cide-package-row { padding-top: 16px; }
.cide-package-row > [class*="col-"] { display: flex; }
.cide-work-row { padding-bottom: 32px; }
.cide-work-row > [class*="col-"] { display: flex; }

/* Responsive */
@media (max-width: 991.98px) {
  .cide-content .cide-cardRow { flex-direction: column; }
  .cide-content .cide-bottomRow { flex-direction: column; }
  .cide-content .cide-servicesList,
  .cide-content .cide-ctaSection { width: 100%; flex: unset; }
  .cide-content .cide-infoBox { padding: 24px; }

  .cide-package-row > [class*="col-"],
  .cide-package-row > .sf_colsIn { margin-bottom: 1rem; }
  .cide-work-row > [class*="col-"],
  .cide-work-row > .sf_colsIn { margin-bottom: 1.5rem; }
  .cide-case-study-card { margin-bottom: 1.5rem; }
  .cide-work-row .t-contentBlock { margin-bottom: 1.5rem; }
  .cide-work-row .sf-Long-text { margin-bottom: 1.5rem; }
}

@media (max-width: 768px) {
  .cide-package-row > [class*="col-"] { margin-bottom: 1rem; }
  .cide-work-row > [class*="col-"] { margin-bottom: 1rem; }
}


/* ============================================================
   18. TESTIMONIALS
   CONFLICT RESOLVED: subtle border + shadow (was: 6px teal — REMOVED)
   ============================================================ */

.cide-testimonial {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 32px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  height: 100%;
}

.cide-testimonial .cide-quote-mark {
  font-size: 4rem;
  font-weight: bold;
  color: var(--teal);
  line-height: 0.5;
}

.cide-testimonial blockquote {
  font-style: italic;
  color: var(--text-dark);
  line-height: 1.6;
  margin: 0;
  padding: 0;
  border: none;
}

.cide-testimonial .cide-attribution {
  display: flex;
  align-items: center;
  gap: 14px;
}

.cide-testimonial .cide-attribution::before {
  content: "";
  display: block;
  width: 4px;
  height: 40px;
  background: var(--cu-gold);
  border-radius: 2px;
  flex-shrink: 0;
}

.cide-testimonial .cide-attrib-name { font-weight: 700; color: var(--text-dark); margin-bottom: 2px; }
.cide-testimonial .cide-attrib-role { color: var(--teal); margin-bottom: 0; }


/* ============================================================
   19. DISCLOSURE CARDS (Academics expandable cards)
   NOTE: .cide-disclosure-card-header / -icon / -title are
   the canonical names. Aliases kept for backward compatibility.
   card-header / card-icon / card-title are Bootstrap-collision
   risks — do not use on new pages.
   ACCESSIBILITY FIX: .card-chevron svg stroke changed to #000.
   ============================================================ */

/* 2-column grid */
.cide-course-grid--disclosure {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  padding: 1rem 0;
  align-items: start;
}

.cide-course-item { display: flex; flex-direction: column; }

/* Card button (acts as the card face) */
.cide-course-card-btn {
  all: unset;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  width: 100%;
  cursor: pointer;
  background: #fff;
  border: 1px solid #aaaaaa;
  border-radius: 0.4rem;
  position: relative;
  transition: border-color 0.25s ease;
}

.cide-course-item.is-open .cide-course-card-btn {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-color: transparent;
}

/* Gold top-bar accent */
.cide-course-card-btn::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(to right, var(--cu-gold), #e5d5a8);
  border-radius: 0.4rem 0.4rem 0 0;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.cide-course-card-btn:hover::before,
.cide-course-item.is-open .cide-course-card-btn::before { opacity: 1; }

.cide-course-card-btn:hover,
.cide-course-item.is-open .cide-course-card-btn {
  border-color: var(--cu-gold);
  outline: 1px solid var(--cu-gold);
  outline-offset: -1px;
}

.cide-course-item.is-open .cide-course-card-btn { clip-path: inset(-4px -1px 0px -1px); }

.cide-course-card-btn:focus-visible {
  outline: 3px solid var(--cu-gold);
  outline-offset: 2px;
  clip-path: none;
}

.card-inner {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* Card header (icon + title row)
   Canonical: .cide-disclosure-card-header
   Legacy alias: .card-header (Bootstrap collision — do not use on new pages) */
.cide-disclosure-card-header,
.card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
}

.card-header h4.card-title {
  background: transparent !important;
  padding: 0 !important;
  margin: 0 !important;
  border: none !important;
  box-shadow: none !important;
}

/* Icon (canonical: .cide-disclosure-card-icon) */
.cide-disclosure-card-icon,
.card-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--cu-gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 40px;
}

.cide-disclosure-card-icon svg,
.card-icon svg {
  width: 20px; height: 20px;
  display: block;
  fill: none;
  stroke: #000;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Title (canonical: .cide-disclosure-card-title) */
.cide-disclosure-card-title,
.card-title {
  margin: 0;
  padding-top: 1px;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.2;
  color: var(--text-dark);
  text-align: left;
}

.card-number {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin: 0 0 0.35rem;
  text-align: left;
}

.card-desc {
  color: var(--text-dark);
  font-size: 1.1rem;
  margin: 0;
  line-height: 1.5;
  text-align: left;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

/* Chevron
   ACCESSIBILITY FIX: stroke changed from var(--cu-gold) to #000
   (gold on white fails WCAG 1.4.11 non-text contrast) */
.card-chevron {
  margin-top: 0.75rem;
  display: flex;
  justify-content: flex-end;
}

.card-chevron svg {
  width: 16px; height: 16px;
  fill: none;
  stroke: #000;  /* FIXED: was var(--cu-gold) — accessibility fail */
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.2s ease;
}

.cide-course-item.is-open .card-chevron svg { transform: rotate(180deg); }

/* Disclosure panel */
.cide-disclosure-panel,
.disclosure-panel {
  box-sizing: border-box;
  width: 100%;
  background: #fff;
  border: 1px solid var(--cu-gold);
  border-top: none;
  border-radius: 0 0 0.4rem 0.4rem;
  overflow: hidden;
  max-height: 0;
  padding: 0 1.25rem;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.cide-course-item.is-open .cide-disclosure-panel,
.cide-course-item.is-open .disclosure-panel {
  max-height: 3000px;
  padding: 1.25rem;
}

.panel-section-label {
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #000;
  margin: 0 0 0.4rem;
}

.panel-desc {
  font-size: 1.1rem;
  line-height: 1.65;
  color: var(--text-dark);
  margin: 0 0 1.1rem;
}

.panel-objectives { margin: 0 0 1.1rem; padding-left: 1.1rem; }

.panel-objectives li {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text-dark);
  margin-bottom: 0.35rem;
}

.panel-instructor {
  font-size: 1.1rem;
  color: var(--text-dark);
  font-weight: 500;
  margin: 0 0 0.25rem;
}

.panel-instructor a {
  color: var(--text-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 500;
}

.panel-instructor a:focus-visible {
  outline: 3px solid #000;
  outline-offset: 3px;
}

/* Responsive */
@media (max-width: 768px) {
  .cide-course-grid--disclosure { grid-template-columns: 1fr; gap: 1rem; }
  .cide-disclosure-card-title,
  .card-title { font-size: 1rem; }
}

@media (max-width: 576px) {
  .cide-disclosure-card-icon,
  .card-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    flex-basis: 32px;
  }
  .cide-disclosure-card-icon svg,
  .card-icon svg { width: 18px; height: 18px; }
}
