/* ==========================================================================
   Devpartner — globalny arkusz stylów marki   |   wersja 2.3 (2026-09)
   Kierunek: jasny / premium · Space Grotesk + Inter
   Turkus = marka i elementy klikalne · pomarańcz = TYLKO główne CTA
   --------------------------------------------------------------------------
   Wersja 1 jest zachowawcza: ładuje fonty, definiuje tokeny, ustawia
   typografię i bibliotekę komponentów .dp-* (używaną przez nowe strony).
   Globalne nadpisania ograniczone do minimum, żeby nie rozjechać obecnych
   podstron przed ich przebudową.
   ========================================================================== */

:root {
  /* Kolory */
  --dp-bg:          #FFFFFF;
  --dp-bg-alt:      #F5F7F9;
  --dp-bg-deep:     #1E2530;
  --dp-ink-strong:  #232B36;
  --dp-ink:         #353F4D;
  --dp-muted:       #6B7480;
  --dp-border:      #E3E8EC;
  --dp-brand:       #00A8C6;
  --dp-brand-ink:   #007D94;   /* turkus na tekst/hover — kontrast AA na bieli */
  --dp-accent:      #FF6C2F;    /* pomarańcz — tylko główne CTA */
  --dp-accent-hover:#E85A1F;

  /* Gradienty */
  --dp-grad-brand:  linear-gradient(135deg, #00A8C6, #0A7E96);
  --dp-grad-band:   linear-gradient(180deg, #EAF7FA 0%, #FFFFFF 78%);

  /* Typografia */
  --dp-font-head: "Space Grotesk", Inter, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --dp-font-body: Inter, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* Promienie, cień, kontener */
  --dp-radius-card: 12px;
  --dp-radius-input: 8px;
  --dp-shadow-sm: 0 1px 2px rgba(0,0,0,.06);
  --dp-shadow-md: 0 8px 24px rgba(30,37,48,.08);
  --dp-container: 1160px;
}

/* --------------------------------------------------------------------------
   1. Typografia globalna
   Astra ustawia fonty (Roboto) własnym inline CSS o tej samej wadze —
   dlatego font-family wymusza się przez !important. Reszta bez !important.
   -------------------------------------------------------------------------- */

html body,
body button, body input, body select, body textarea,
.ast-button, .ast-custom-button {
  font-family: var(--dp-font-body) !important;
}

body {
  color: var(--dp-ink);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ciaśniejsza interlinia w treści — wszędzie ta sama co na stronie głównej (1.45):
   akapity, listy, komórki tabel, treść FAQ. */
body p,
.entry-content p,
.entry-content li,
.entry-content td,
.entry-content dd,
.dp-container p,
.dp-container li,
.dp-intro,
.uagb-ifb-desc,
.wp-block-uagb-advanced-heading .uagb-desc-text,
.wp-block-uagb-faq .uagb-faq-content,
.wp-block-uagb-faq .uagb-faq-content p,
.wp-block-uagb-faq .uagb-faq-content li {
  line-height: 1.45;
}

h1, h2, h3, h4, h5, h6,
.entry-content h1, .entry-content h2, .entry-content h3,
.entry-content h4, .entry-content h5, .entry-content h6,
.entry-title, .site-title,
.ast-single-post .entry-title,
.wp-block-heading {
  font-family: var(--dp-font-head) !important;
  color: var(--dp-ink-strong);
  letter-spacing: -0.01em;
  line-height: 1.14;
  font-weight: 600;
}

/* --------------------------------------------------------------------------
   2. Delikatne poprawki globalne
   -------------------------------------------------------------------------- */

a {
  color: var(--dp-brand-ink);
}
a:hover,
a:focus {
  color: var(--dp-brand);
}

::selection {
  background: rgba(0,168,198,0.18);
}

/* Widoczny focus dla klawiatury (dostępność) */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
.dp-btn:focus-visible {
  outline: 2px solid var(--dp-brand);
  outline-offset: 2px;
  border-radius: 4px;
}

/* Przyciski Gutenberga → pill + kolory marki */
.wp-block-button__link {
  border-radius: 999px;
  font-family: var(--dp-font-body);
  font-weight: 600;
}
.wp-block-button:not(.is-style-outline) .wp-block-button__link {
  background-color: var(--dp-accent);
  color: #ffffff;
}
.wp-block-button:not(.is-style-outline) .wp-block-button__link:hover {
  background-color: var(--dp-accent-hover);
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* --------------------------------------------------------------------------
   Drobne animacje — fade-up sekcji przy wejściu w kadr
   (klasy dodaje JS z mu-plugina; bez JS / reduced-motion nic się nie chowa)
   -------------------------------------------------------------------------- */
.dp-anim .dp-reveal { opacity: 0; transform: translateY(18px); }
.dp-reveal {
  transition: opacity .55s cubic-bezier(.2, .6, .2, 1),
              transform .55s cubic-bezier(.2, .6, .2, 1);
}
.dp-reveal.dp-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .dp-anim .dp-reveal, .dp-reveal { opacity: 1 !important; transform: none !important; }
  .dp-card:hover { transform: none; }
}

/* --------------------------------------------------------------------------
   Sticky header — nagłówek „pływa" ze scrollem (position: sticky, bez wtyczek).
   Cień pojawia się po odjechaniu od góry (klasa .dp-scrolled na body — JS w mu-pluginie).
   -------------------------------------------------------------------------- */
#masthead {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 999;
  background: #ffffff;
  transition: box-shadow .2s ease;
}
.admin-bar #masthead { top: 32px; }
@media (max-width: 782px) {
  .admin-bar #masthead { top: 46px; }
}
body.dp-scrolled #masthead {
  box-shadow: 0 2px 12px rgba(30, 37, 48, 0.10);
  border-bottom: 1px solid #E9EDF0;
}

/* --------------------------------------------------------------------------
   Kompaktowy nagłówek (był ~148 px) — desktop
   -------------------------------------------------------------------------- */
@media (min-width: 922px) {
  #ast-desktop-header .main-header-bar,
  #ast-desktop-header .ast-primary-header-bar {
    padding-top: 8px !important;
    padding-bottom: 8px !important;
    min-height: 0 !important;
  }
  #ast-desktop-header .ast-builder-grid-row,
  #ast-desktop-header .site-header-section,
  #ast-desktop-header .ast-builder-layout-element,
  #ast-desktop-header .site-primary-header-wrap {
    min-height: 0 !important;
  }
  #ast-desktop-header .ast-builder-grid-row { align-items: center !important; }
  /* to jest głównym winowajcą wysokości: .site-branding ma padding 22px/22px */
  #ast-desktop-header .site-branding {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  #ast-desktop-header .custom-logo-link img,
  #ast-desktop-header .site-logo-img img,
  #ast-desktop-header .astra-logo-svg {
    max-height: 52px !important;
    width: auto !important;
    display: block !important;
  }
  #ast-desktop-header .header-widget-area,
  #ast-desktop-header .header-widget-area .widget {
    margin: 0 !important;
    padding: 0 !important;
  }
  #ast-desktop-header .header-widget-area .uagb-ifb-content { padding: 0 !important; }
  #ast-desktop-header .header-widget-area .uagb-ifb-desc {
    font-size: 0.95rem !important;
    line-height: 1.2 !important;
    margin: 0 !important;
  }
  #ast-desktop-header .ast-builder-menu .menu-link { padding-top: 6px !important; padding-bottom: 6px !important; }

  /* nagłówek na całą szerokość: logo przy lewej, menu przy prawej */
  #ast-desktop-header .site-header-primary-section-center,
  #ast-desktop-header .ast-builder-grid-row {
    justify-content: space-between !important;
    column-gap: 24px !important;
  }
  #ast-desktop-header .ast-builder-grid-row {
    padding-left: 44px !important;
    padding-right: 44px !important;
  }
  #ast-desktop-header .site-branding { margin-left: 0 !important; }
}

/* ==========================================================================
   3. Biblioteka komponentów .dp-*  —  używana przez nowe strony (strona
      główna, oferta, realizacje). Nic nie robi, dopóki nie jest użyta.
   ========================================================================== */

.dp-section {
  padding: 96px 0;
  background: var(--dp-bg);
}
.dp-section--alt  { background: var(--dp-bg-alt); }
.dp-section--band { background: var(--dp-grad-band); }
.dp-section--brand{ background: var(--dp-grad-brand); color: #fff; }

.dp-container {
  max-width: var(--dp-container);
  margin: 0 auto;
  padding: 0 24px;
}

.dp-eyebrow {
  font-family: var(--dp-font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--dp-brand-ink);
  margin: 0 0 14px;
}

.dp-h2 { font-size: clamp(1.6rem, 2.6vw, 2.25rem); margin: 0; }
.dp-h1 { font-size: clamp(2rem, 3.6vw, 3rem); margin: 0; }

.dp-intro {
  font-size: 1.0625rem;
  color: #4A5462;
  max-width: 60ch;
  margin: 14px 0 0;
  line-height: 1.45;
}

/* Przyciski */
.dp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--dp-font-body);
  font-weight: 600;
  font-size: 0.975rem;
  line-height: 1;
  padding: 14px 26px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: background-color .15s ease, color .15s ease, border-color .15s ease;
}
.dp-btn:hover { text-decoration: none; }
.dp-btn--primary { background: var(--dp-accent); color: #fff; }
.dp-btn--primary:hover { background: var(--dp-accent-hover); color: #fff; }
.dp-btn--secondary { background: transparent; border-color: var(--dp-brand); color: var(--dp-brand-ink); }
.dp-btn--secondary:hover { background: rgba(0,168,198,0.08); color: var(--dp-brand-ink); }
.dp-btn--on-brand { background: #fff; color: var(--dp-ink-strong); }
.dp-btn--on-brand:hover { background: #F0F7F9; color: var(--dp-ink-strong); }

/* Karty — pomarańczowy border marki, delikatny lift na hover */
.dp-card {
  background: #fff;
  border: 1.5px solid var(--dp-accent);
  border-radius: var(--dp-radius-card);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform .18s ease, box-shadow .18s ease;
}
.dp-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 26px rgba(255, 108, 47, 0.14);
}
.dp-card__media {
  margin: -28px -28px 4px;
  height: 128px;
  background: var(--dp-grad-brand);
  border-radius: var(--dp-radius-card) var(--dp-radius-card) 0 0;
}

/* Pigułki / tagi */
.dp-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border: 1px solid var(--dp-border);
  border-radius: 999px;
  font-size: 0.9rem;
  color: #4A5462;
  background: #fff;
}
.dp-tag {
  align-self: flex-start;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--dp-brand-ink);
  background: #EAF7FA;
  padding: 4px 10px;
  border-radius: 999px;
}
.dp-tag--muted { color: var(--dp-muted); background: #F0F2F4; }

/* Ikona w kółku */
.dp-ico {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: #EAF7FA;
  color: var(--dp-brand-ink);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.dp-ico svg { width: 22px; height: 22px; }

.dp-muted { color: var(--dp-muted); }

/* Siatki pomocnicze */
.dp-grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 20px; }
.dp-grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 20px; }
.dp-grid-4 { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 20px; }

@media (max-width: 921px) {
  .dp-section { padding: 56px 0; }
  .dp-grid-2, .dp-grid-3, .dp-grid-4 { grid-template-columns: 1fr; }
}

/* --------------------------------------------------------------------------
   Strona główna — poprawki mobilne (v2.3)
   Hero ma siatkę 2-kol. w stylu inline → na mobile wymuszamy 1 kolumnę,
   zmniejszamy H1/H2 (Astra ma zawyżony root ~22px → px), porządkujemy zdjęcie.
   -------------------------------------------------------------------------- */
@media (max-width: 900px) {
  .dp-section--band .dp-container {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
  }
  .dp-h1 { font-size: clamp(28px, 7.4vw, 40px) !important; line-height: 1.14 !important; }
  .dp-h2 { font-size: clamp(24px, 6vw, 32px) !important; line-height: 1.16 !important; }
  .dp-section { padding: 48px 0; }
  /* akapit wprowadzający pod H1 — mniejszy na mobile (ma inline 1.125rem) */
  .dp-section--band .dp-h1 + p { font-size: 1rem !important; max-width: none !important; }
  /* zdjęcie w hero: druga „kolumna" — wyśrodkuj i ogranicz */
  .dp-section--band .dp-container > div:last-child {
    max-width: 340px;
    width: 100%;
    margin: 0 auto;
  }
  .dp-section--band .dp-container > div:last-child img { aspect-ratio: 3 / 3.4 !important; }
  /* dekoracyjny gradient za zdjęciem — symetryczny, bez wystawania poza ekran */
  .dp-section--band .dp-container > div:last-child > div:first-child {
    inset: -10px -10px 16px -10px !important;
  }
  /* przyciski hero — pełna szerokość, jeden pod drugim */
  .dp-section--band .dp-container .dp-btn {
    width: 100%;
    justify-content: center;
    padding: 15px 22px;
  }
}
@media (max-width: 400px) {
  .dp-h1 { font-size: 26px !important; }
}

/* Nagłówek mobilny — logo dokładane skryptem (mu-plugin); brak go w builderze Astry.
   Tu tylko rozmiar logo i kompaktowy telefon. */
.dp-mob-logo { display: inline-flex; align-items: center; margin-right: 12px; }
.dp-mob-logo img { max-height: 34px; width: auto; display: block; }
@media (max-width: 921px) {
  #ast-mobile-header .site-header-primary-section-left { align-items: center; gap: 4px; }
  #ast-mobile-header .header-widget-area .uagb-ifb-desc {
    font-size: 0.82rem !important;
    line-height: 1.2 !important;
    margin: 0 !important;
  }
  #ast-mobile-header .ast-builder-grid-row { align-items: center !important; }
}
@media (max-width: 400px) {
  .dp-mob-logo img { max-height: 30px; }
  #ast-mobile-header .header-widget-area .uagb-ifb-desc { font-size: 0.76rem !important; }
}

/* ==========================================================================
   9. Artykuł blogowy / pilar  (v1.8)
   Wpisy budowane czystymi blokami Gutenberg + wybrane bloki Spectry.
   Szerokość kolumny treści ustawia natywny układ Astry
   (per-wpis: „Wąski kontener" / ast-site-content-layout=narrow-width-container).
   Motyw potomny gubi auto-marginesy przy tym układzie bez sidebaru —
   dlatego kontener trzeba wyśrodkować ręcznie.
   ========================================================================== */
.single-post .site-content > .ast-container {
  margin-left: auto !important;
  margin-right: auto !important;
}

/* Marginesy boczne treści wpisu na mobile/tablecie (kolumna dochodzi do krawędzi).
   Padding kładziemy na jednym elemencie — kontenerze wpisu. */
@media (max-width: 921px) {
  .single-post .site-content > .ast-container {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  /* obrazy/FAQ alignwide też odsuwamy od krawędzi na małych ekranach */
  .single-post .entry-content .alignwide,
  .single-post .entry-content .alignfull {
    margin-left: 0;
    margin-right: 0;
    max-width: 100%;
  }
}
@media (max-width: 544px) {
  .single-post .site-content > .ast-container {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
}

/* Nagłówek artykułu: grafika hero + H1 + linia „aktualizacja” */
.single-post .entry-content > figure.wp-block-image:first-child {
  margin-bottom: 30px;
  border-radius: var(--dp-radius-card);
  overflow: hidden;
}
/* Uwaga: na tej instalacji Astra ma zawyżony root font-size (1rem ≈ 22px),
   dlatego nagłówki wpisu w px, nie w rem. */
.single-post .entry-content > h1 {
  font-size: clamp(30px, 22px + 2vw, 40px);
  line-height: 1.15;
  margin: 0 0 0.4em;
}
.single-post .entry-content > h1 + p em {
  color: var(--dp-muted);
  font-size: 15px;
  font-style: normal;
}

/* Rytm nagłówków w treści */
.single-post .entry-content > h2 {
  margin-top: 1.9em;
  padding-top: 0.9em;
  border-top: 1px solid var(--dp-border);
  font-size: clamp(23px, 19px + 1vw, 28px);
}
.single-post .entry-content > h3 {
  margin-top: 1.5em;
  font-size: 19px;
}
/* Grafiki w treści */
.single-post .entry-content figure.wp-block-image {
  margin-block: 1.6em;
}
.single-post .entry-content figure.wp-block-image img {
  border-radius: var(--dp-radius-card);
  width: 100%;
  height: auto;
}

/* Tabela */
.single-post .entry-content .wp-block-table table {
  border-collapse: collapse;
  width: 100%;
  font-size: 0.95rem;
}
.single-post .entry-content .wp-block-table th,
.single-post .entry-content .wp-block-table td {
  border: 1px solid var(--dp-border);
  padding: 10px 14px;
  text-align: left;
  vertical-align: top;
}
.single-post .entry-content .wp-block-table thead th {
  background: #EAF7FA;
  color: var(--dp-ink-strong);
  font-family: var(--dp-font-head);
}

/* FAQ (Spectra uagb/faq) — dociągnięcie do stylu marki */
.single-post .wp-block-uagb-faq .uagb-faq-child__wrapper {
  border: 1px solid var(--dp-border) !important;
  border-radius: 10px !important;
  margin-bottom: 10px !important;
}
.single-post .wp-block-uagb-faq .uagb-question {
  font-family: var(--dp-font-head) !important;
  font-weight: 600 !important;
  color: var(--dp-ink-strong) !important;
}

/* CTA (core button) */
.single-post .entry-content .wp-block-button__link {
  background: var(--dp-accent);
  color: #fff;
  border-radius: var(--dp-radius-input);
  padding: 14px 28px;
  font-weight: 600;
  font-family: var(--dp-font-head);
}
.single-post .entry-content .wp-block-button__link:hover { background: var(--dp-accent-hover); }

/* Separator */
.single-post .entry-content .wp-block-separator {
  border: 0;
  border-top: 1px solid var(--dp-border);
  margin: 2.4em auto;
}

/* Player „Posłuchaj artykułu" (Web Speech API — silnik mowy przeglądarki):
   przycisk play/pauza + oś czasu z przewijaniem + wybór stylu lektora. */
.dp-tts {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 24px;
  padding: 8px 12px;
  border: 1px solid var(--dp-border);
  border-radius: 12px;
  background: var(--dp-bg-alt);
  flex-wrap: wrap;
}
.dp-tts__toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 15px 7px 9px;
  border: 0 !important;
  border-radius: 999px;
  background: #fff !important;
  background-image: none !important;
  color: var(--dp-ink-strong) !important;
  box-shadow: 0 1px 2px rgba(30, 37, 48, .08);
  font-family: var(--dp-font-head);
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  flex-shrink: 0;
  transition: box-shadow .15s ease;
}
.dp-tts__toggle:hover { box-shadow: 0 2px 8px rgba(30, 37, 48, .14); }
.dp-tts__toggle:focus-visible { outline: 2px solid var(--dp-brand); outline-offset: 2px; }
.dp-tts__ico {
  position: relative;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--dp-brand);
}
.dp-tts__ico::before { /* trójkąt „play" */
  content: "";
  position: absolute;
  top: 50%;
  left: 54%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 0 5px 8px;
  border-color: transparent transparent transparent #fff;
}
.dp-tts.is-playing .dp-tts__ico::before { /* dwie kreski „pause" */
  border: 0;
  left: 50%;
  width: 8px;
  height: 10px;
  background:
    linear-gradient(#fff, #fff) left / 3px 100% no-repeat,
    linear-gradient(#fff, #fff) right / 3px 100% no-repeat;
}
.dp-tts.is-playing .dp-tts__ico { animation: dp-tts-pulse 1.4s ease-in-out infinite; }
@keyframes dp-tts-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0, 168, 198, .35); }
  50%      { box-shadow: 0 0 0 6px rgba(0, 168, 198, 0); }
}

/* Oś czasu */
.dp-tts__bar {
  flex: 1 1 140px;
  min-width: 120px;
  height: 8px;
  border-radius: 999px;
  background: #E1E7EB;
  cursor: pointer;
  position: relative;
}
.dp-tts__bar:focus-visible { outline: 2px solid var(--dp-brand); outline-offset: 3px; }
.dp-tts__fill {
  position: absolute;
  left: 0; top: 0;
  height: 100%;
  width: 0;
  border-radius: 999px;
  background: var(--dp-brand);
  transition: width .18s linear;
}
.dp-tts__fill::after { /* uchwyt */
  content: "";
  position: absolute;
  right: -5px;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--dp-brand-ink);
  opacity: 0;
  transition: opacity .15s ease;
}
.dp-tts.is-active .dp-tts__fill::after,
.dp-tts__bar:hover .dp-tts__fill::after { opacity: 1; }

.dp-tts__time {
  flex-shrink: 0;
  font-family: var(--dp-font-head);
  font-size: 12px;
  font-weight: 600;
  color: var(--dp-muted);
  font-variant-numeric: tabular-nums;
  min-width: 74px;
  text-align: right;
}

/* Wybór stylu lektora */
.dp-tts__voice {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  flex-shrink: 0;
}
.dp-tts__voice-lbl {
  font-family: var(--dp-font-head);
  font-size: 12px;
  font-weight: 600;
  color: var(--dp-muted);
}
.dp-tts__select {
  appearance: none;
  -webkit-appearance: none;
  padding: 6px 26px 6px 11px;
  border: 1px solid var(--dp-border);
  border-radius: 999px;
  background: #fff
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='%236B7480' d='M0 0l5 6 5-6z'/%3E%3C/svg%3E")
    no-repeat right 10px center;
  color: var(--dp-ink-strong);
  font-family: var(--dp-font-body);
  font-size: 13px;
  line-height: 1.2;
  cursor: pointer;
}
.dp-tts__select:focus-visible { outline: 2px solid var(--dp-brand); outline-offset: 2px; }

@media (prefers-reduced-motion: reduce) {
  .dp-tts.is-playing .dp-tts__ico { animation: none; }
  .dp-tts__fill { transition: none; }
}
@media (max-width: 600px) {
  .dp-tts__time { min-width: 0; }
  .dp-tts__voice { width: 100%; justify-content: space-between; }
  .dp-tts__select { flex: 1; }
}
