.sdmh {
  --sdmh-bg: #f6f7f8;
  --sdmh-panel: #ffffff;
  --sdmh-panel-soft: #f9fafb;
  --sdmh-border: #dde1e6;
  --sdmh-border-strong: #cdd2d9;
  --sdmh-text: #17191d;
  --sdmh-muted: #5d626b;
  --sdmh-gold: #aa8525;
  --sdmh-gold-strong: #8b6917;
  --sdmh-gold-soft: #f7f0de;
  --sdmh-green: #16834a;
  --sdmh-green-soft: #e9f6ef;
  --sdmh-red: #c84d55;
  --sdmh-red-soft: #fbecee;
  --sdmh-orange: #b77417;
  width: 100%;
  max-width: 1180px;
  margin: 30px auto;
  overflow: hidden;
  border: 1px solid var(--sdmh-border);
  border-radius: 18px;
  background: var(--sdmh-bg);
  color: var(--sdmh-text);
  box-shadow: 0 16px 42px rgba(20, 25, 35, .08);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.55;
}

.sdmh *,
.sdmh *::before,
.sdmh *::after { box-sizing: border-box; }

.sdmh button,
.sdmh select { font: inherit; }

.sdmh__hero {
  padding: 28px 32px 24px;
  border-bottom: 1px solid var(--sdmh-border);
  background:
    radial-gradient(circle at 94% 0%, rgba(201, 170, 86, .13), transparent 36%),
    linear-gradient(145deg, #fff, #fafaf8);
}

.sdmh__eyebrow {
  margin: 0 0 8px;
  color: var(--sdmh-gold-strong);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .15em;
  line-height: 1.2;
}

.sdmh__heading-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
}

.sdmh__title {
  margin: 0;
  color: var(--sdmh-text);
  font-size: clamp(28px, 3.8vw, 42px);
  font-weight: 780;
  letter-spacing: -.035em;
  line-height: 1.08;
}

.sdmh__clock {
  margin: 9px 0 0;
  color: var(--sdmh-muted);
  font-size: 15px;
  line-height: 1.5;
}

.sdmh__clock strong { color: #444850; }

.sdmh__hero-tools {
  display: flex;
  flex: 0 0 225px;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.sdmh__live {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 10px;
  border: 1px solid #b9dfca;
  border-radius: 999px;
  background: var(--sdmh-green-soft);
  color: var(--sdmh-green);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .08em;
}

.sdmh__live span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--sdmh-green);
  box-shadow: 0 0 0 4px rgba(22, 131, 74, .1);
  animation: sdmh-pulse 2s infinite;
}

@keyframes sdmh-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .45; }
}

@media (prefers-reduced-motion: reduce) {
  .sdmh__live span { animation: none; }
}

.sdmh__zone-label {
  display: grid;
  width: 100%;
  gap: 4px;
  color: var(--sdmh-muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.sdmh__zone {
  width: 100%;
  min-height: 44px;
  padding: 7px 34px 7px 11px;
  border: 1px solid var(--sdmh-border-strong);
  border-radius: 9px;
  background-color: #fff;
  color: var(--sdmh-text);
  cursor: pointer;
  font-size: 15px;
  font-weight: 650;
  letter-spacing: 0;
  text-transform: none;
}

.sdmh__filter:focus-visible,
.sdmh__action:focus-visible,
.sdmh__zone:focus-visible,
.sdmh-card summary:focus-visible,
.sdmh__disclosure > summary:focus-visible {
  outline: 2px solid var(--sdmh-gold);
  outline-offset: 2px;
}

.sdmh__next {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 20px 32px 0;
  padding: 13px 15px;
  border: 1px solid #e1ce98;
  border-radius: 11px;
  background: var(--sdmh-gold-soft);
}

.sdmh__next-icon,
.sdmh__overlap-icon {
  display: grid;
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 8px;
  background: #caa747;
  color: #211b0d;
  font-size: 17px;
  font-weight: 850;
}

.sdmh__next div,
.sdmh__overlap div { display: grid; min-width: 0; gap: 1px; }

.sdmh__next small,
.sdmh__overlap small {
  color: var(--sdmh-gold-strong);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .11em;
}

.sdmh__next strong,
.sdmh__overlap strong {
  color: var(--sdmh-text);
  font-size: 16px;
  font-weight: 750;
  line-height: 1.4;
}

.sdmh__sessions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 15px;
  padding: 20px 32px 9px;
}

.sdmh-session {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--sdmh-border);
  border-radius: 13px;
  background: var(--sdmh-panel);
  box-shadow: 0 4px 13px rgba(28, 34, 44, .04);
}

.sdmh-session::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 3px;
  background: var(--sdmh-red);
  content: "";
}

.sdmh-session--active::before { background: var(--sdmh-green); }
.sdmh-session--holiday::before { background: var(--sdmh-orange); }

.sdmh-session__top {
  display: flex;
  min-height: 32px;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 15px 16px 0 19px;
  color: #777c84;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .08em;
}

.sdmh-session__activity {
  padding: 3px 5px;
  border-radius: 4px;
  background: #f6ecd2;
  color: #8d6c18;
  font-size: 11px;
  letter-spacing: .06em;
  line-height: 1.25;
}

.sdmh-session__name-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 16px 14px 19px;
}

.sdmh-session__name-row > div { min-width: 0; }

.sdmh-session h3 {
  margin: 0;
  color: var(--sdmh-text);
  font-size: 24px;
  font-weight: 770;
  letter-spacing: -.02em;
  line-height: 1.15;
}

.sdmh-session__name-row p {
  margin: 4px 0 0;
  color: var(--sdmh-muted);
  font-size: 14px;
  line-height: 1.45;
}

.sdmh-session__status {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 6px;
  margin-top: 3px;
  padding: 5px 9px;
  border-radius: 999px;
  background: var(--sdmh-red-soft);
  color: var(--sdmh-red);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .04em;
}

.sdmh-session__status i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}

.sdmh-session--active .sdmh-session__status {
  background: var(--sdmh-green-soft);
  color: var(--sdmh-green);
}

.sdmh-session--holiday .sdmh-session__status {
  background: #fbf1df;
  color: var(--sdmh-orange);
}

.sdmh-session__next {
  display: flex;
  min-height: 70px;
  align-items: center;
  justify-content: space-between;
  gap: 9px;
  padding: 12px 16px 12px 19px;
  border-top: 1px solid var(--sdmh-border);
  background: var(--sdmh-panel-soft);
}

.sdmh-session__next div { display: grid; gap: 1px; }

.sdmh-session__next small {
  color: var(--sdmh-muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.sdmh-session__next strong {
  color: var(--sdmh-text);
  font-size: 18px;
  font-variant-numeric: tabular-nums;
}

.sdmh-session__next time {
  color: var(--sdmh-muted);
  font-size: 13px;
  text-align: right;
}

.sdmh-session__hours {
  padding: 10px 16px 11px 19px;
  border-top: 1px solid var(--sdmh-border);
  color: #7a7f88;
  font-size: 13px;
  line-height: 1.45;
}

.sdmh__session-note {
  margin: 2px 32px 0;
  color: #858a92;
  font-size: 12px;
  line-height: 1.45;
  text-align: right;
}

.sdmh__overlap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 17px 32px 0;
  padding: 12px 15px;
  border: 1px solid #d6dce4;
  border-radius: 11px;
  background: #f1f5fa;
}

.sdmh__overlap-icon {
  background: #dce8f5;
  color: #31577b;
}

.sdmh__overlap small { color: #55718d; }

.sdmh__overlap.is-active {
  border-color: #b8dec9;
  background: var(--sdmh-green-soft);
}

.sdmh__overlap.is-active .sdmh__overlap-icon {
  background: #ccebd9;
  color: var(--sdmh-green);
}

.sdmh__key-times {
  margin-top: 24px;
  padding: 23px 32px 25px;
  border-top: 1px solid var(--sdmh-border);
  border-bottom: 1px solid var(--sdmh-border);
  background: #fff;
}

.sdmh__section-heading { max-width: 760px; }

.sdmh__section-heading p,
.sdmh-session p,
.sdmh__explain p,
.sdmh__disclosure small,
.sdmh-holiday span { overflow-wrap: anywhere; }

.sdmh__section-heading--compact {
  display: flex;
  max-width: none;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
}

.sdmh__section-heading h3 {
  margin: 0;
  color: var(--sdmh-text);
  font-size: clamp(20px, 2.7vw, 28px);
  font-weight: 770;
  letter-spacing: -.025em;
  line-height: 1.2;
}

.sdmh__section-heading > p,
.sdmh__section-heading > div + p {
  margin: 7px 0 0;
  color: var(--sdmh-muted);
  font-size: 14px;
  line-height: 1.5;
}

.sdmh__key-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
  margin-top: 17px;
}

.sdmh-key-time {
  display: grid;
  grid-template-columns: 122px minmax(0, 1fr);
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--sdmh-border);
  border-radius: 10px;
  background: var(--sdmh-panel-soft);
}

.sdmh-key-time__when {
  display: grid;
  align-content: center;
  padding: 12px 13px;
  border-right: 1px solid var(--sdmh-border);
  background: #fff;
}

.sdmh-key-time__when strong {
  color: var(--sdmh-text);
  font-size: 16px;
  font-variant-numeric: tabular-nums;
  line-height: 1.3;
}

.sdmh-key-time__when small {
  margin-top: 2px;
  color: var(--sdmh-gold-strong);
  font-size: 11px;
  font-weight: 750;
}

.sdmh-key-time__content {
  min-width: 0;
  padding: 11px 13px;
}

.sdmh-key-time__content > span {
  color: var(--sdmh-gold-strong);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .09em;
}

.sdmh-key-time h4 {
  margin: 1px 0 0;
  color: var(--sdmh-text);
  font-size: 15px;
  font-weight: 780;
  line-height: 1.2;
}

.sdmh-key-time p {
  margin: 4px 0 0;
  color: var(--sdmh-muted);
  font-size: 13px;
  line-height: 1.4;
}

.sdmh__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 18px 32px 12px;
  flex-wrap: wrap;
}

.sdmh__action {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 7px 13px;
  border: 1px solid var(--sdmh-border-strong);
  border-radius: 8px;
  background: #fff;
  color: #4b5058;
  cursor: pointer;
  font-size: 14px;
  font-weight: 750;
  transition: border-color .15s ease, transform .15s ease, background .15s ease;
}

.sdmh__action:hover {
  border-color: #adb4bd;
  background: #fafafa;
  transform: translateY(-1px);
}

.sdmh__action--primary {
  border-color: #a98527;
  background: #b99432;
  color: #fff;
}

.sdmh__action--primary:hover {
  border-color: #95731d;
  background: #a98527;
}

.sdmh__action-result {
  color: var(--sdmh-green);
  font-size: 13px;
  font-weight: 700;
}

.sdmh__explain {
  display: flex;
  gap: 13px;
  margin: 0 32px 22px;
  padding: 15px 17px;
  border: 1px solid #d7e0ea;
  border-radius: 11px;
  background: #f5f8fb;
}

.sdmh__explain-icon {
  display: grid;
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid #9fb6cb;
  border-radius: 50%;
  color: #41698f;
  font-family: Georgia, serif;
  font-size: 15px;
  font-weight: 700;
}

.sdmh__explain h3 {
  margin: 0 0 4px;
  color: var(--sdmh-text);
  font-size: 16px;
  font-weight: 780;
}

.sdmh__explain p {
  margin: 0;
  color: var(--sdmh-muted);
  font-size: 14px;
  line-height: 1.55;
}

.sdmh__disclosure {
  margin: 0 32px 11px;
  overflow: hidden;
  border: 1px solid var(--sdmh-border);
  border-radius: 11px;
  background: #fff;
}

.sdmh__disclosure > summary {
  display: flex;
  min-height: 68px;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding: 13px 16px;
  color: var(--sdmh-text);
  cursor: pointer;
  list-style: none;
}

.sdmh__disclosure > summary::-webkit-details-marker { display: none; }
.sdmh__disclosure > summary span { display: grid; gap: 2px; }
.sdmh__disclosure > summary strong { font-size: 16px; font-weight: 780; line-height: 1.35; }
.sdmh__disclosure > summary small { color: var(--sdmh-muted); font-size: 12px; line-height: 1.45; }

.sdmh__disclosure > summary i {
  display: grid;
  width: 27px;
  height: 27px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--sdmh-border-strong);
  border-radius: 50%;
  color: var(--sdmh-gold-strong);
  font-size: 18px;
  font-style: normal;
  line-height: 1;
  transition: transform .18s ease;
}

.sdmh__disclosure[open] > summary i { transform: rotate(45deg); }

.sdmh__disclosure-body {
  padding: 16px;
  border-top: 1px solid var(--sdmh-border);
  background: var(--sdmh-panel-soft);
}

.sdmh__detail-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 13px;
}

.sdmh__detail-toolbar p { margin: 0; color: var(--sdmh-muted); font-size: 14px; line-height: 1.5; }

.sdmh__filters {
  display: inline-flex;
  flex: 0 0 auto;
  gap: 3px;
  padding: 3px;
  border: 1px solid var(--sdmh-border);
  border-radius: 9px;
  background: #fff;
}

.sdmh__filter {
  min-height: 40px;
  padding: 5px 12px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--sdmh-muted);
  cursor: pointer;
  font-size: 13px;
  font-weight: 750;
}

.sdmh__filter.is-active { background: #d0ad4d; color: #211b0e; }

.sdmh__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 0;
}

.sdmh-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--sdmh-border);
  border-radius: 10px;
  background: #fff;
}

.sdmh-card::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 3px;
  background: var(--sdmh-red);
  content: "";
}

.sdmh-card--open::before { background: var(--sdmh-green); }
.sdmh-card--maintenance::before { background: var(--sdmh-orange); }

.sdmh-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 12px 13px 0 16px;
}

.sdmh-card__country {
  overflow: hidden;
  color: #7b8089;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .06em;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.sdmh-card__country span { margin-right: 4px; font-size: 14px; }
.sdmh-card__metals { display: flex; flex: 0 0 auto; gap: 3px; }

.sdmh__metal {
  display: inline-flex;
  align-items: center;
  min-height: 21px;
  padding: 3px 6px;
  border-radius: 3px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .07em;
}

.sdmh__metal--gold { background: #f6eed9; color: #8c6b16; }
.sdmh__metal--silver { background: #eef0f3; color: #626873; }

.sdmh-card h3 {
  margin: 10px 14px 0 16px;
  color: var(--sdmh-text);
  font-size: 20px;
  font-weight: 760;
  letter-spacing: -.02em;
  line-height: 1.15;
}

.sdmh-card__subname { margin: 4px 14px 0 16px; color: var(--sdmh-muted); font-size: 13px; line-height: 1.4; }

.sdmh-card__status-row {
  display: flex;
  min-height: 30px;
  align-items: center;
  gap: 8px;
  margin: 9px 14px 0 16px;
}

.sdmh-card__status {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 6px;
  color: var(--sdmh-red);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .045em;
}

.sdmh-card__status i { width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.sdmh-card--open .sdmh-card__status { color: var(--sdmh-green); }
.sdmh-card--maintenance .sdmh-card__status { color: var(--sdmh-orange); }
.sdmh__session { color: #6f747d; font-size: 11px; line-height: 1.35; }

.sdmh-card__next {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 9px;
  padding: 9px 13px 9px 16px;
  border-top: 1px solid var(--sdmh-border);
  background: var(--sdmh-panel-soft);
}

.sdmh-card__next div { display: grid; gap: 1px; }
.sdmh-card__next small { color: var(--sdmh-muted); font-size: 11px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.sdmh-card__next strong { color: var(--sdmh-text); font-size: 16px; font-variant-numeric: tabular-nums; }
.sdmh-card__next time { flex: 0 0 auto; color: var(--sdmh-muted); font-size: 12px; line-height: 1.35; text-align: right; }

.sdmh-card__details { border-top: 1px solid var(--sdmh-border); color: var(--sdmh-muted); font-size: 13px; line-height: 1.5; }
.sdmh-card__details summary { min-height: 40px; padding: 9px 16px; color: #555b64; cursor: pointer; font-size: 11px; font-weight: 750; list-style-position: inside; }
.sdmh-card__details p { margin: 0; padding: 0 16px 13px; }
.sdmh-card__details strong { color: #383c42; }

.sdmh__table-section { margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--sdmh-border); }

.sdmh__table-wrap {
  max-width: 100%;
  margin-top: 15px;
  overflow-x: auto;
  border: 1px solid var(--sdmh-border);
  border-radius: 9px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}

.sdmh__table {
  width: 100%;
  min-width: 720px;
  margin: 0;
  border: 0;
  border-collapse: collapse;
  background: #fff;
  color: var(--sdmh-text);
  font-size: 14px;
}

.sdmh__table th,
.sdmh__table td { padding: 10px 12px; border: 0; border-bottom: 1px solid var(--sdmh-border); text-align: left; vertical-align: top; }
.sdmh__table th { background: #f2f3f5; color: var(--sdmh-gold-strong); font-size: 11px; font-weight: 850; letter-spacing: .06em; text-transform: uppercase; }
.sdmh__table tr:last-child td { border-bottom: 0; }
.sdmh__table strong { display: block; color: var(--sdmh-text); }
.sdmh__table small { color: var(--sdmh-muted); font-size: 13px; line-height: 1.4; }

.sdmh__holiday-list { display: grid; gap: 7px; }

.sdmh-holiday {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  padding: 9px 11px;
  border: 1px solid var(--sdmh-border);
  border-radius: 8px;
  background: #fff;
}

.sdmh-holiday time { color: var(--sdmh-gold-strong); font-size: 12px; font-weight: 800; font-variant-numeric: tabular-nums; }
.sdmh-holiday div { display: grid; gap: 1px; }
.sdmh-holiday strong { color: var(--sdmh-text); font-size: 14px; line-height: 1.4; }
.sdmh-holiday span { color: var(--sdmh-muted); font-size: 12px; line-height: 1.4; }
.sdmh__holiday-note { margin: 11px 0 0; color: #656b74; font-size: 11px; line-height: 1.5; }

.sdmh__sources {
  padding: 14px 32px 17px;
  color: #858a92;
  font-size: 11px;
  line-height: 1.6;
}

.sdmh__sources strong { color: #666b73; }
.sdmh__sources a { color: #8f701f; text-decoration: underline; text-underline-offset: 2px; }

/* Keep secondary information comfortably readable on phones and high-density screens. */
.sdmh small,
.sdmh__live,
.sdmh__zone-label,
.sdmh-session__top,
.sdmh-session__activity,
.sdmh-session__status,
.sdmh-key-time__content > span,
.sdmh-card__country,
.sdmh__metal,
.sdmh-card__status,
.sdmh__session,
.sdmh-card__details summary,
.sdmh__table th,
.sdmh__holiday-note,
.sdmh__sources {
  font-size: 13px;
  line-height: 1.4;
}

@media (max-width: 860px) {
  .sdmh__sessions { grid-template-columns: 1fr; }
  .sdmh-session__hours { display: block; }
}

@media (max-width: 760px) {
  .sdmh {
    margin: 18px auto;
    border-right: 0;
    border-left: 0;
    border-radius: 0;
  }

  .sdmh__hero { padding: 22px 17px 18px; }
  .sdmh__heading-row { display: grid; gap: 15px; }
  .sdmh__hero-tools { width: 100%; flex: none; flex-direction: row-reverse; align-items: end; justify-content: space-between; }
  .sdmh__zone-label { max-width: 235px; }
  .sdmh__live { margin-bottom: 5px; }
  .sdmh__clock { font-size: 14px; }
  .sdmh__next,
  .sdmh__overlap { margin-right: 17px; margin-left: 17px; }
  .sdmh__next strong,
  .sdmh__overlap strong { font-size: 15px; }
  .sdmh__sessions { gap: 11px; padding: 16px 17px 7px; }
  .sdmh__session-note { margin-right: 17px; margin-left: 17px; font-size: 13px; text-align: left; }
  .sdmh__key-times { padding: 21px 17px 23px; }
  .sdmh__section-heading--compact { display: block; }
  .sdmh__key-grid { grid-template-columns: 1fr; gap: 7px; }
  .sdmh-key-time { grid-template-columns: 112px minmax(0, 1fr); }
  .sdmh__actions { padding: 16px 17px 10px; }
  .sdmh__action { flex: 1 1 calc(50% - 5px); }
  .sdmh__action--primary { flex-basis: 100%; }
  .sdmh__action-result { flex-basis: 100%; }
  .sdmh__explain { margin: 0 17px 18px; }
  .sdmh__disclosure { margin-right: 17px; margin-left: 17px; }
  .sdmh__disclosure-body { padding: 12px; }
  .sdmh__detail-toolbar { display: grid; }
  .sdmh__filters { width: 100%; }
  .sdmh__filter { flex: 1; }
  .sdmh__grid { grid-template-columns: 1fr; }
  .sdmh__sources { padding: 13px 17px 16px; }
}

@media (max-width: 430px) {
  .sdmh__title { font-size: clamp(28px, 8vw, 32px); }
  .sdmh__live { display: none; }
  .sdmh__zone-label { max-width: none; }
  .sdmh__hero-tools { display: block; }
  .sdmh-session__name-row { display: grid; }
  .sdmh-session__status { justify-self: start; }
  .sdmh-session__top { flex-wrap: wrap; }
  .sdmh-session__name-row > div { width: 100%; }
  .sdmh__next,
  .sdmh__overlap { align-items: flex-start; padding: 13px; }
  .sdmh-key-time { grid-template-columns: 104px minmax(0, 1fr); }
  .sdmh-key-time__when,
  .sdmh-key-time__content { padding: 11px; }
  .sdmh__explain { gap: 10px; padding: 14px; }
  .sdmh__action { flex-basis: 100%; }
  .sdmh-holiday { grid-template-columns: 1fr; gap: 3px; }
}
