/* https://www.smashingmagazine.com/2022/10/fluid-typography-clamp-sass-functions/
 * Expects all incoming values to be pixels
 */
/* 1. CORE RESET & FONTS */
.deephealth-experience-wrapper {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif !important;
  color: #333 !important;
  line-height: 1.5 !important;
  max-width: 800px !important;
  margin: 0 auto !important;
  padding: 0 !important;
}

.deephealth-experience-wrapper * {
  box-sizing: border-box !important;
  font-family: inherit !important;
}

/* 2. HEADER SECTION */
.deephealth-experience-wrapper .dh-agenda-header {
  padding: 0 !important;
  margin-bottom: 20px !important;
  background: transparent !important;
  box-shadow: none !important;
  border-radius: 0 !important; /* Reset radius since image might be rectangular or handled differently */
  overflow: hidden !important;
}

.deephealth-experience-wrapper .dh-header-img {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  border-radius: 24px !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1) !important;
}

/* 3. AGENDA LIST */
.deephealth-experience-wrapper .dh-agenda-list {
  padding: 0 24px 60px 24px !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 16px !important;
}

.deephealth-experience-wrapper .dh-agenda-card {
  background: white !important;
  border-radius: 16px !important;
  padding: 24px !important;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04) !important;
  border: 1px solid rgba(0, 0, 0, 0.03) !important;
  display: flex !important;
  align-items: center !important; /* Vertically align items */
  transition: transform 0.2s ease, box-shadow 0.2s ease !important;
}

.deephealth-experience-wrapper .dh-agenda-card:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 24px rgba(0, 47, 95, 0.08) !important;
}

/* Time Column */
.deephealth-experience-wrapper .dh-time-col {
  flex-shrink: 0 !important;
  width: 120px !important; /* Slightly wider to fit ranges */
  margin-right: 24px !important;
  text-align: right !important;
}

.deephealth-experience-wrapper .dh-time-text {
  font-size: 1rem !important;
  font-weight: 700 !important;
  color: #002F5F !important;
  display: block !important;
  line-height: 1.2 !important;
  white-space: nowrap !important; /* Prevent breaking */
}

/* Content Column */
.deephealth-experience-wrapper .dh-content-col {
  flex-grow: 1 !important;
  padding-left: 24px !important;
  border-left: 2px solid #eef2f6 !important;
}

.deephealth-experience-wrapper .dh-session-title {
  font-size: 1.1rem !important;
  font-weight: 600 !important;
  color: #11174c !important;
  margin: 0 0 4px 0 !important;
  line-height: 1.3 !important;
}

.deephealth-experience-wrapper .dh-session-speakers {
  font-size: 0.95rem !important;
  color: #525f7f !important;
  font-weight: 400 !important;
  margin: 0 !important;
}

.deephealth-experience-wrapper .dh-session-note {
  font-size: 0.85rem !important;
  color: #0099CC !important;
  font-style: italic !important;
  margin-top: 4px !important;
  display: block !important;
}

/* Lunch/Break styling */
.deephealth-experience-wrapper .dh-agenda-card.dh-break {
  background: #f8fafc !important;
  border: 1px dashed #cbd5e1 !important;
}

.deephealth-experience-wrapper .dh-agenda-card.dh-break .dh-session-title {
  color: #475569 !important;
}

/* Mobile Responsive */
@media (max-width: 600px) {
  .deephealth-experience-wrapper .dh-agenda-card {
    flex-direction: column !important;
    align-items: flex-start !important;
    padding: 20px !important;
  }
  .deephealth-experience-wrapper .dh-time-col {
    width: 100% !important;
    margin-right: 0 !important;
    margin-bottom: 8px !important;
    text-align: left !important;
  }
  .deephealth-experience-wrapper .dh-content-col {
    padding-left: 0 !important;
    border-left: none !important;
    width: 100% !important;
  }
  .deephealth-experience-wrapper .dh-header-img {
    border-bottom-left-radius: 16px !important;
    border-bottom-right-radius: 16px !important;
  }
}

/*# sourceMappingURL=rsna-2025-pab.css.map */
