/* ========================================
   Program Page
======================================== */

.program-page {
  background: #ffffff;
  color: #333;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  color: #bd0058;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

/* ========================================
   Program PDF Section
======================================== */

.program-overview-section {
  padding: 70px 20px 60px;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbfd 100%);
}

.program-overview-single {
  width: 100%;
}

.overview-card {
  position: relative;
  overflow: hidden;
  padding: 52px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid #e2edf4;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
}

.overview-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, #02A6E0, #bd0058);
}

.pdf-main-card {
  max-width: 1400px;
  margin: 0 auto;
}

.pdf-main-card h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.1;
  color: #005f99;
  margin-bottom: 18px;
}

.pdf-main-card p {
  color: #555;
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 0;
}

/* ========================================
   Program Intro Note
======================================== */

.program-intro-note {
  margin: 28px 0 34px;
  padding: 24px 28px;
  background: #f8fbfd;
  border: 1px solid #dfeaf1;
  border-radius: 14px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
}

.program-status {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.95rem;
  font-weight: 700;
  color: #005f99;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #02A6E0;
  flex-shrink: 0;
}

.program-intro-note p {
  margin: 0;
  color: #555;
  line-height: 1.8;
}

/* ========================================
   Embedded PDF Viewer
======================================== */

.pdf-viewer-box {
  width: 100%;
  height: 1050px;
  margin: 30px 0 24px;
  border: 1px solid #dbe7ef;
  border-radius: 14px;
  overflow: hidden;
  background: #f5f8fb;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.pdf-viewer-box iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.pdf-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* ========================================
   Buttons
======================================== */

.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 12px 26px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
}

.btn-primary {
  background: #02A6E0;
  color: #fff;
  border: 2px solid #02A6E0;
}

.btn-primary:hover {
  background: #ffffff;
  color: #02A6E0;
}

.btn-secondary {
  background: #bd0058;
  color: #fff;
  border: 2px solid #bd0058;
}

.btn-secondary:hover {
  background: #ffffff;
  color: #bd0058;
}

/* ========================================
   Workshop Section
======================================== */

.workshop-section {
  padding: 85px 20px;
  background: linear-gradient(180deg, #f7fbfd 0%, #ffffff 100%);
  border-top: 1px solid #e8eef3;
}

.section-heading {
  max-width: 850px;
  margin-bottom: 44px;
}

.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: #005f99;
  margin-bottom: 18px;
  line-height: 1.1;
}

.section-heading p {
  color: #555;
  font-size: 1.05rem;
  line-height: 1.8;
}

.workshop-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

/* ========================================
   Workshop Cards
======================================== */

.workshop-card {
  position: relative;
  overflow: hidden;
  padding: 38px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid #e3e8ee;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.workshop-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.09);
  border-color: #cfe2ec;
}

.workshop-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, #02A6E0, #bd0058);
}

.workshop-card.ecmo::after,
.workshop-card.reboa::after {
  position: absolute;
  right: 24px;
  top: 24px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: rgba(0, 95, 153, 0.16);
}

.workshop-card.ecmo::after {
  content: "ECMO";
}

.workshop-card.reboa::after {
  content: "REBOA";
}

.workshop-badge {
  display: inline-block;
  padding: 7px 14px;
  margin-bottom: 22px;
  background: #fff1f7;
  color: #bd0058;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.workshop-card h3 {
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  color: #005f99;
  margin-bottom: 26px;
  line-height: 1.15;
}

.workshop-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
}

.workshop-card li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 14px;
  line-height: 1.75;
  color: #444;
}

.workshop-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #bd0058;
}

.workshop-note {
  margin-top: 18px;
  padding: 18px 20px;
  background: #f8fbfd;
  border-left: 4px solid #02A6E0;
  border-radius: 10px;
  line-height: 1.75;
  color: #555;
}

.workshop-note strong {
  display: block;
  color: #005f99;
  margin-bottom: 6px;
}

/* ========================================
   Responsive
======================================== */

@media (max-width: 900px) {
  .workshop-grid {
    grid-template-columns: 1fr;
  }

  .overview-card,
  .workshop-card {
    padding: 32px 24px;
  }

  .pdf-viewer-box {
    height: 720px;
  }
}

@media (max-width: 600px) {

  .program-overview-section,
  .workshop-section {
    padding: 55px 20px;
  }

  .program-intro-note {
    padding: 20px;
  }

  .pdf-viewer-box {
    height: 520px;
  }

  .pdf-main-card h2,
  .section-heading h2 {
    font-size: 2rem;
  }

  .workshop-card h3 {
    font-size: 1.7rem;
  }

  .pdf-actions a,
  .btn-primary,
  .btn-secondary {
    width: 100%;
    text-align: center;
  }
}

/* ========================================
   Program Toggle Viewer
======================================== */

.program-toggle-area {
  margin-top: 34px;
}

.program-toggle-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 14px 30px;

  background: #005f99;
  color: #fff;

  border: none;
  border-radius: 8px;

  font-size: 1rem;
  font-weight: 700;

  cursor: pointer;

  transition: all 0.3s ease;
}

.program-toggle-btn:hover {
  background: #004c7a;
}

.pdf-expand-wrapper {
  max-height: 0;
  overflow: hidden;

  opacity: 0;

  transition:
    max-height 0.6s ease,
    opacity 0.4s ease,
    margin-top 0.4s ease;

  margin-top: 0;
}

.pdf-expand-wrapper.active {
  max-height: 1600px;
  opacity: 1;
  margin-top: 30px;
}

/* ========================================
   Program02 Inline Highlights
======================================== */

.program-highlight-note {
  background:
    linear-gradient(135deg, rgba(2, 166, 224, 0.08), rgba(189, 0, 88, 0.05)),
    #f8fbfd;
}

.program-inline-highlights {
  margin-top: 22px;
}

.inline-highlight-speakers {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-bottom: 22px;
}

.inline-speaker-highlight {
  display: grid;
  grid-template-columns: 130px 1fr;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #ffffff;
  border: 1px solid #dfeaf1;
  border-radius: 14px;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 8px 20px rgba(0, 95, 153, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.inline-speaker-highlight:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(0, 95, 153, 0.1);
}

.inline-speaker-photo {
  width: 130px;
  height: 150px;
  border-radius: 12px;
  overflow: hidden;
  background: #f5f8fb;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
}

.inline-speaker-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.inline-speaker-text span {
  display: inline-block;
  margin-bottom: 10px;
  color: #bd0058;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.inline-speaker-text strong {
  display: block;
  color: #005f99;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  line-height: 1.18;
}

.inline-workshop-highlight {
  padding: 24px;
  background: #ffffff;
  border: 1px solid #dfeaf1;
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(0, 95, 153, 0.06);
}

.inline-workshop-highlight h3 {
  color: #005f99;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  line-height: 1.2;
  margin-bottom: 18px;
}

.inline-workshop-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.inline-workshop-links a {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 18px;
  border-radius: 12px;
  background: #f8fbfd;
  border: 1px solid #e2edf4;
  color: #005f99;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.inline-workshop-links a:hover {
  transform: translateY(-3px);
  border-color: #cfe2ec;
}

.inline-workshop-links span {
  color: #bd0058;
  font-size: 0.88rem;
  font-weight: 700;
}

/* Responsive */
@media (max-width: 1000px) {

  .inline-highlight-speakers,
  .inline-workshop-links {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .inline-speaker-highlight {
    grid-template-columns: 1fr;
  }

  .inline-speaker-photo {
    width: 150px;
    height: 170px;
  }

  .inline-workshop-highlight {
    padding: 20px;
  }
}

.program-access-line {
  margin: 30px 0 18px;
  color: #555;
  font-size: 1rem;
  line-height: 1.7;
}