/* =============================================================
   doctors.com.au — Telehealth Module Styles
   Phase 1 conversion module
   Brand tokens: Primary Navy #184558, Blue #007fbd, Yellow #f2d85a
   Font: Manrope (already loaded by theme)
   ============================================================= */

/* ── Wrapper ─────────────────────────────────────────────── */
.dm-telehealth-module {
  font-family: 'Manrope', system-ui, sans-serif;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ── Primary block ───────────────────────────────────────── */
.dm-th-inner {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  background: #e8f4fb;
  border: 1px solid #bedde7;
  border-radius: 6px;
  padding: 20px;
}

/* Left column */
.dm-th-left {
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.dm-th-eyebrow {
  font-size: 11px;
  font-weight: 700;
  color: #184558;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.dm-th-heading {
  font-size: 18px;
  font-weight: 700;
  color: #184558;
  line-height: 1.2;
  margin: 0;
}

.dm-th-sub {
  font-size: 13px;
  color: #606264;
  line-height: 1.5;
  margin: 0;
}

.dm-th-cta-primary {
  display: inline-block;
  background: #f2d85a;
  color: #184558;
  padding: 10px 20px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  align-self: flex-start;
  transition: background 120ms ease;
}

.dm-th-cta-primary:hover {
  background: #e8cc45;
  color: #184558;
  text-decoration: none;
}

.dm-th-powered {
  font-size: 10px;
  color: #909294;
  line-height: 1.4;
}

/* Divider */
.dm-th-divider {
  width: 1px;
  background: #bedde7;
  flex-shrink: 0;
  margin: 0 4px;
  min-height: 100%;
}

/* Right column */
.dm-th-right {
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.dm-th-option {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  border: 1px solid #ebedef;
  border-radius: 4px;
  padding: 10px 14px;
  text-decoration: none;
  transition: border-color 120ms ease, background 120ms ease;
}

.dm-th-option:hover {
  border-color: #007fbd;
  background: #f0f9ff;
  text-decoration: none;
}

.dm-th-option-label {
  font-size: 13px;
  font-weight: 600;
  color: #007fbd;
  line-height: 1.3;
}

.dm-th-option-sub {
  font-size: 11px;
  color: #909294;
  margin-top: 2px;
}

.dm-th-option-arrow {
  color: #007fbd;
  font-size: 18px;
  margin-left: 8px;
  flex-shrink: 0;
}

/* ── Assisted navigation ─────────────────────────────────── */
.dm-th-assist {
  background: #fff;
  border: 1px solid #ebedef;
  border-radius: 6px;
  padding: 16px 20px;
}

.dm-th-assist-label {
  font-size: 14px;
  font-weight: 700;
  color: #184558;
  margin-bottom: 12px;
}

.dm-th-assist-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
}

.dm-th-assist-input,
.dm-th-assist-select {
  flex: 1 1 160px;
  padding: 9px 12px;
  border: 1px solid #ebedef;
  border-radius: 4px;
  font-family: 'Manrope', system-ui, sans-serif;
  font-size: 13px;
  color: #184558;
  background: #fff;
  outline: none;
  transition: border-color 120ms ease;
}

.dm-th-assist-input:focus,
.dm-th-assist-select:focus {
  border-color: #007fbd;
}

.dm-th-assist-select {
  flex: 1 1 180px;
}

.dm-th-assist-btn {
  background: #007fbd;
  color: #fff;
  padding: 9px 20px;
  border: none;
  border-radius: 4px;
  font-family: 'Manrope', system-ui, sans-serif;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: background 120ms ease;
}

.dm-th-assist-btn:hover {
  background: #006fa5;
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 600px) {
  .dm-th-divider {
    display: none;
  }

  .dm-th-inner {
    flex-direction: column;
  }

  .dm-th-cta-primary {
    align-self: stretch;
    text-align: center;
  }

  .dm-th-assist-btn {
    width: 100%;
  }
}
