:root {
  --yorum-navy: #061a3b;
  --yorum-navy-2: #0b294f;
  --yorum-red: #e50922;
  --yorum-red-dark: #bd061b;
  --yorum-ink: #0b1629;
  --yorum-muted: #667286;
  --yorum-line: #dfe4eb;
  --yorum-soft: #f7f8fa;
}

.yorum-page {
  background:
    radial-gradient(circle at 86% 14%, rgba(12, 58, 106, .05), transparent 30rem),
    #fff;
  color: var(--yorum-ink);
}

.yorum-page .main-nav a.active {
  position: relative;
}

.yorum-page .main-nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -23px;
  height: 4px;
  background: var(--yorum-red);
}

.yorum-main {
  padding-top: 34px;
  padding-bottom: 78px;
}

.yorum-intro {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 18px;
}

.page-kicker {
  margin: 0 0 5px;
  color: var(--yorum-red);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
}

.yorum-title-row {
  display: flex;
  align-items: baseline;
  gap: 18px;
}

.yorum-title-row h1 {
  margin: 0;
  font: 800 clamp(2.05rem, 5vw, 4.05rem)/.96 "Libre Franklin", Inter, sans-serif;
  letter-spacing: -.055em;
  text-transform: uppercase;
}

.yorum-title-row p {
  margin: 0;
  color: var(--yorum-muted);
  font-size: .95rem;
}

.outline-action {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 46px;
  padding: 0 17px;
  border: 1px solid #b9c2cf;
  border-radius: 5px;
  color: var(--yorum-ink);
  font-size: .76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.outline-action:hover,
.outline-action:focus-visible {
  border-color: var(--yorum-red);
  color: var(--yorum-red);
}

.yorum-toolbar {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: start;
  margin-bottom: 16px;
}

.yorum-tabs {
  display: flex;
  gap: 4px;
  overflow-x: auto;
  padding-bottom: 8px;
  scrollbar-width: thin;
}

.yorum-tab {
  flex: 0 0 auto;
  min-height: 40px;
  border: 0;
  border-radius: 4px;
  background: transparent;
  padding: 0 17px;
  color: var(--yorum-ink);
  font: 800 .73rem/1 Inter, sans-serif;
  text-transform: uppercase;
  cursor: pointer;
}

.yorum-tab:hover,
.yorum-tab:focus-visible {
  background: #f0f2f5;
}

.yorum-tab.active {
  background: var(--yorum-red);
  color: #fff;
  box-shadow: 0 6px 16px rgba(229, 9, 34, .18);
}

.filter-button {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid #cfd6df;
  border-radius: 4px;
  background: #fff;
  padding: 0 14px;
  color: var(--yorum-ink);
  font-size: .72rem;
  font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
}

.filter-button:hover,
.filter-button:focus-visible,
.filter-button[aria-expanded="true"] {
  border-color: var(--yorum-red);
  color: var(--yorum-red);
}

.filter-panel {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: end;
  margin: -4px 0 18px;
  border: 1px solid var(--yorum-line);
  border-radius: 5px;
  background: var(--yorum-soft);
  padding: 15px;
}

.filter-panel[hidden] {
  display: none;
}

.filter-panel label {
  display: grid;
  gap: 6px;
  color: var(--yorum-muted);
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
}

.filter-panel select {
  min-width: 190px;
  height: 40px;
  border: 1px solid #cfd6df;
  border-radius: 4px;
  background: #fff;
  padding: 0 10px;
  color: var(--yorum-ink);
  font: inherit;
  text-transform: none;
}

.filter-panel button {
  min-height: 40px;
  border: 0;
  border-radius: 4px;
  background: var(--yorum-navy);
  color: #fff;
  padding: 0 15px;
  font-size: .7rem;
  font-weight: 800;
  text-transform: uppercase;
}

.yorum-layout {
  display: grid;
  grid-template-columns: minmax(0, 2.4fr) minmax(280px, .92fr);
  gap: 24px;
  align-items: start;
}

.featured-opinion {
  border: 1px solid #e3e7ed;
  border-radius: 6px;
  background: #fff;
  padding: 17px;
  box-shadow: 0 6px 18px rgba(7, 24, 49, .04);
}

.section-label {
  display: block;
  margin-bottom: 12px;
  font-size: .72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.featured-opinion-grid {
  display: grid;
  grid-template-columns: minmax(280px, .95fr) minmax(0, 1.25fr);
  gap: 23px;
  align-items: stretch;
}

.opinion-visual,
.item-visual {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--yorum-navy);
}

.opinion-visual::before,
.item-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(0,0,0,.02), rgba(2,12,28,.64)),
    radial-gradient(circle at 72% 26%, rgba(66,139,198,.42), transparent 28%),
    linear-gradient(145deg, #355f81, #153451 50%, #07172d);
}

.opinion-visual::after,
.item-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: .42;
  background:
    linear-gradient(156deg, transparent 0 55%, rgba(255,255,255,.08) 55.4% 56%, transparent 56.4%),
    repeating-linear-gradient(90deg, rgba(255,255,255,.028) 0 1px, transparent 1px 52px),
    repeating-linear-gradient(0deg, rgba(255,255,255,.024) 0 1px, transparent 1px 42px);
}

.visual-kibris::before {
  background:
    linear-gradient(180deg, rgba(0,0,0,.04), rgba(1,12,29,.68)),
    radial-gradient(ellipse at 46% 70%, rgba(50,141,181,.5), transparent 30%),
    linear-gradient(145deg, #56799a, #244b69 54%, #0a1e38);
}

.visual-politics::before {
  background:
    linear-gradient(180deg, rgba(0,0,0,.02), rgba(14,5,12,.72)),
    radial-gradient(circle at 25% 30%, rgba(213,31,52,.48), transparent 31%),
    linear-gradient(145deg, #603546, #29131d 60%, #12080d);
}

.visual-turkiye::before {
  background:
    linear-gradient(180deg, rgba(0,0,0,.02), rgba(18,5,8,.76)),
    radial-gradient(circle at 65% 31%, rgba(218,40,51,.43), transparent 28%),
    linear-gradient(145deg, #6b3c42, #2e1519 56%, #13090b);
}

.visual-world::before {
  background:
    linear-gradient(180deg, rgba(0,0,0,.02), rgba(0,9,20,.74)),
    radial-gradient(circle at 50% 48%, rgba(38,126,177,.5), transparent 28%),
    linear-gradient(145deg, #1d4c68, #0c2a41 56%, #04111e);
}

.visual-economy::before {
  background:
    linear-gradient(180deg, rgba(0,0,0,.02), rgba(15,11,3,.75)),
    radial-gradient(circle at 68% 32%, rgba(231,176,62,.4), transparent 26%),
    linear-gradient(145deg, #6b6040, #30291a 58%, #141007);
}

.visual-society::before {
  background:
    linear-gradient(180deg, rgba(0,0,0,.02), rgba(3,12,20,.73)),
    radial-gradient(circle at 35% 40%, rgba(76,159,166,.48), transparent 27%),
    linear-gradient(145deg, #3a7173, #18383d 58%, #071a20);
}

.visual-security::before {
  background:
    linear-gradient(180deg, rgba(0,0,0,.02), rgba(5,8,19,.78)),
    radial-gradient(circle at 63% 32%, rgba(103,112,162,.42), transparent 27%),
    linear-gradient(145deg, #3d476c, #1a213f 58%, #090d1d);
}

.visual-energy::before {
  background:
    linear-gradient(180deg, rgba(0,0,0,.02), rgba(4,12,18,.78)),
    radial-gradient(circle at 73% 30%, rgba(224,181,66,.44), transparent 26%),
    linear-gradient(145deg, #5e6044, #273842 54%, #09141c);
}

.visual-federal::before {
  background:
    linear-gradient(180deg, rgba(0,0,0,.03), rgba(2,13,28,.74)),
    radial-gradient(ellipse at 47% 67%, rgba(42,142,178,.46), transparent 31%),
    linear-gradient(145deg, #42768b, #1d455e 55%, #071a31);
}

.opinion-visual {
  min-height: 315px;
  border-radius: 5px;
}

.opinion-visual > span {
  position: absolute;
  left: 15px;
  bottom: 15px;
  z-index: 2;
  background: var(--yorum-red);
  padding: 5px 8px;
  color: #fff;
  font-size: .62rem;
  font-weight: 800;
}

.visual-watermark {
  position: absolute;
  right: 13px;
  top: 13px;
  color: rgba(255,255,255,.3);
  font-size: .58rem;
  font-weight: 800;
  letter-spacing: .07em;
}

.featured-opinion-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.article-category {
  color: var(--yorum-red);
  font-size: .64rem;
  font-weight: 800;
}

.featured-opinion-copy h2 {
  margin: 10px 0 10px;
  font-size: clamp(1.65rem, 3vw, 2.55rem);
  line-height: 1.08;
  letter-spacing: -.035em;
}

.featured-opinion-copy > p {
  margin: 0;
  color: #455266;
  font-size: .9rem;
  line-height: 1.6;
}

.author-row,
.quote-author,
.authors-list article {
  display: flex;
  align-items: center;
  gap: 11px;
}

.author-row {
  margin-top: 22px;
}

.author-avatar,
.mini-author-avatar {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  font-weight: 800;
}

.author-avatar {
  width: 46px;
  height: 46px;
  font-size: .72rem;
}

.mini-author-avatar {
  width: 23px;
  height: 23px;
  font-size: .49rem;
}

.avatar-erhan { background: linear-gradient(145deg, #79573d, #2d2018); }
.avatar-nihal { background: linear-gradient(145deg, #7f3b54, #2b1420); }
.avatar-serhat { background: linear-gradient(145deg, #426780, #172a39); }
.avatar-emine { background: linear-gradient(145deg, #5d6573, #222730); }
.avatar-mehmet { background: linear-gradient(145deg, #4b6a55, #1b2a20); }

.author-row strong,
.quote-author strong,
.authors-list strong {
  display: block;
  font-size: .8rem;
}

.author-row small,
.quote-author small,
.authors-list small {
  display: block;
  margin-top: 3px;
  color: var(--yorum-muted);
  font-size: .66rem;
}

.opinion-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
  border-top: 1px solid var(--yorum-line);
  padding-top: 13px;
}

.listen-button,
.share-button,
.save-button,
.comment-button {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid #cfd6df;
  border-radius: 4px;
  background: #fff;
  color: var(--yorum-ink);
  padding: 0 13px;
  font-size: .7rem;
  font-weight: 700;
  cursor: pointer;
}

.listen-button:hover,
.listen-button:focus-visible,
.listen-button.is-speaking {
  border-color: var(--yorum-red);
  color: var(--yorum-red);
}

.share-button:hover,
.save-button:hover,
.comment-button:hover,
.share-button:focus-visible,
.save-button:focus-visible,
.comment-button:focus-visible {
  border-color: var(--yorum-navy);
}

.save-button[aria-pressed="true"] {
  border-color: var(--yorum-red);
  background: #fff5f6;
  color: var(--yorum-red);
}

.all-opinions {
  margin-top: 30px;
}

.section-heading-row,
.module-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.section-heading-row {
  margin-bottom: 6px;
}

.section-heading-row h2,
.module-heading h2 {
  margin: 0;
  font-size: .9rem;
  font-weight: 800;
  text-transform: uppercase;
}

.section-heading-row > span {
  color: var(--yorum-muted);
  font-size: .7rem;
}

.opinion-list {
  display: grid;
}

.opinion-item {
  display: grid;
  grid-template-columns: 172px minmax(0, 1fr) auto;
  gap: 17px;
  align-items: center;
  border-bottom: 1px solid var(--yorum-line);
  padding: 16px 0;
}

.opinion-item[hidden] {
  display: none;
}

.item-visual {
  min-height: 105px;
  border-radius: 5px;
}

.item-play {
  position: absolute;
  right: 9px;
  bottom: 9px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.8);
  border-radius: 50%;
  background: rgba(2,12,28,.55);
  color: #fff;
  font-size: .72rem;
}

.opinion-item-copy {
  min-width: 0;
}

.opinion-item-copy h3 {
  margin: 5px 0 5px;
  font-size: 1rem;
  line-height: 1.35;
}

.opinion-item-copy p {
  margin: 0;
  color: var(--yorum-muted);
  font-size: .76rem;
  line-height: 1.48;
}

.item-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
  margin-top: 9px;
  color: var(--yorum-muted);
  font-size: .62rem;
}

.item-meta strong {
  color: var(--yorum-ink);
}

.item-actions {
  min-width: 132px;
  display: grid;
  gap: 15px;
  justify-items: end;
}

.listen-button.compact {
  min-width: 122px;
}

.icon-action-row {
  display: flex;
  gap: 6px;
}

.icon-only {
  min-width: 34px;
  min-height: 34px;
  padding: 0 8px;
}

.load-more-button {
  min-width: 225px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin: 22px auto 0;
  border: 1px solid #cdd5df;
  border-radius: 4px;
  background: #fff;
  color: var(--yorum-ink);
  font-size: .72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.load-more-button:hover,
.load-more-button:focus-visible {
  border-color: var(--yorum-red);
  color: var(--yorum-red);
}

.yorum-sidebar {
  display: grid;
  gap: 20px;
}

.authors-module,
.yorum-newsletter {
  border: 1px solid #e3e7ed;
  border-radius: 5px;
  background: #fff;
  padding: 18px;
}

.module-heading a {
  color: var(--yorum-red);
  font-size: .68rem;
  font-weight: 800;
}

.authors-list {
  display: grid;
  margin-top: 9px;
}

.authors-list article {
  border-top: 1px solid var(--yorum-line);
  padding: 12px 0;
}

.authors-list article:first-child {
  border-top: 0;
}

.quote-module {
  border-radius: 5px;
  background:
    radial-gradient(circle at 100% 0, rgba(49,106,164,.42), transparent 13rem),
    linear-gradient(145deg, #0b294f, #061a3b 70%);
  padding: 22px;
  color: #fff;
}

.quote-mark {
  display: block;
  height: 38px;
  font: 800 3.4rem/1 Georgia, serif;
}

.quote-module h2 {
  margin: 0;
  font-size: .72rem;
  text-transform: uppercase;
}

.quote-module blockquote {
  margin: 16px 0 19px;
  color: rgba(255,255,255,.9);
  font-size: 1.05rem;
  line-height: 1.5;
}

.quote-module small {
  color: rgba(255,255,255,.62);
}

.yorum-newsletter {
  background:
    radial-gradient(circle at 100% 0, rgba(8,46,91,.08), transparent 11rem),
    #f8f9fb;
}

.yorum-newsletter h2 {
  margin: 0;
  font-size: .83rem;
  text-transform: uppercase;
}

.yorum-newsletter > p {
  color: var(--yorum-muted);
  font-size: .77rem;
  line-height: 1.55;
}

.yorum-newsletter-form {
  display: grid;
  grid-template-columns: 1fr auto;
  margin-top: 13px;
}

.yorum-newsletter-form input {
  min-width: 0;
  height: 42px;
  border: 1px solid #d7dde6;
  border-right: 0;
  border-radius: 4px 0 0 4px;
  padding: 0 11px;
  font: inherit;
}

.yorum-newsletter-form button {
  border: 0;
  border-radius: 0 4px 4px 0;
  background: var(--yorum-red);
  color: #fff;
  padding: 0 16px;
  font-size: .68rem;
  font-weight: 800;
  text-transform: uppercase;
}

.yorum-newsletter small {
  display: block;
  margin-top: 13px;
  color: #7c8797;
  font-size: .61rem;
  line-height: 1.45;
}

.form-status {
  min-height: 1.2em;
  margin-bottom: 0 !important;
  color: #0d6c3d !important;
  font-weight: 700;
}

.audio-dock {
  position: fixed;
  z-index: 100;
  left: 0;
  right: 0;
  bottom: 0;
  border-top: 3px solid var(--yorum-red);
  background: rgba(4,19,44,.98);
  color: #fff;
  box-shadow: 0 -14px 38px rgba(0,0,0,.25);
  backdrop-filter: blur(12px);
}

.audio-dock[hidden] {
  display: none;
}

.audio-dock-inner {
  min-height: 76px;
  display: grid;
  grid-template-columns: auto minmax(220px, 1fr) minmax(160px, 1fr) auto auto;
  gap: 18px;
  align-items: center;
}

.audio-main-toggle,
.audio-stop {
  border: 0;
  border-radius: 50%;
  background: var(--yorum-red);
  color: #fff;
}

.audio-main-toggle {
  width: 48px;
  height: 48px;
  font-size: 1rem;
}

.audio-stop {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,.12);
  font-size: 1.3rem;
}

.audio-now-playing {
  min-width: 0;
  display: grid;
}

.audio-now-playing > span {
  color: #ff5368;
  font-size: .58rem;
  font-weight: 800;
}

.audio-now-playing strong {
  overflow: hidden;
  margin-top: 3px;
  font-size: .83rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.audio-now-playing small {
  margin-top: 2px;
  color: rgba(255,255,255,.6);
  font-size: .61rem;
}

.audio-progress-wrap {
  display: flex;
  align-items: center;
  gap: 11px;
}

.speech-wave {
  display: flex;
  align-items: center;
  gap: 3px;
  height: 30px;
}

.speech-wave i {
  width: 3px;
  border-radius: 2px;
  background: #fff;
  animation: speech-wave 1s ease-in-out infinite;
}

.speech-wave i:nth-child(1) { height: 8px; animation-delay: -.1s; }
.speech-wave i:nth-child(2) { height: 17px; animation-delay: -.25s; }
.speech-wave i:nth-child(3) { height: 26px; animation-delay: -.4s; }
.speech-wave i:nth-child(4) { height: 13px; animation-delay: -.55s; }
.speech-wave i:nth-child(5) { height: 22px; animation-delay: -.7s; }
.speech-wave i:nth-child(6) { height: 10px; animation-delay: -.85s; }
.speech-wave i:nth-child(7) { height: 19px; animation-delay: -1s; }
.speech-wave i:nth-child(8) { height: 26px; animation-delay: -1.15s; }
.speech-wave i:nth-child(9) { height: 12px; animation-delay: -1.3s; }

.audio-dock.is-paused .speech-wave i {
  animation-play-state: paused;
}

@keyframes speech-wave {
  0%, 100% { transform: scaleY(.45); opacity: .5; }
  50% { transform: scaleY(1); opacity: 1; }
}

#audio-status {
  color: rgba(255,255,255,.7);
  font-size: .65rem;
}

.speech-rate-label {
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(255,255,255,.67);
  font-size: .62rem;
  text-transform: uppercase;
}

.speech-rate-label select {
  height: 34px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 4px;
  background: #10294d;
  color: #fff;
  padding: 0 7px;
}

@media (max-width: 1100px) {
  .yorum-page .main-nav a.active::after {
    display: none;
  }

  .yorum-layout {
    grid-template-columns: 1fr;
  }

  .yorum-sidebar {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .audio-dock-inner {
    grid-template-columns: auto minmax(180px, 1fr) auto auto;
  }

  .audio-progress-wrap {
    display: none;
  }
}

@media (max-width: 820px) {
  .yorum-main {
    padding-top: 20px;
    padding-bottom: 90px;
  }

  .yorum-intro {
    align-items: start;
  }

  .yorum-title-row {
    display: block;
  }

  .yorum-title-row h1 {
    font-size: 2.35rem;
  }

  .yorum-title-row p {
    margin-top: 5px;
  }

  .outline-action {
    display: none;
  }

  .yorum-toolbar {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .yorum-tabs {
    margin-left: -10px;
    padding-left: 10px;
  }

  .featured-opinion-grid {
    grid-template-columns: 1fr;
  }

  .opinion-visual {
    min-height: 280px;
  }

  .opinion-item {
    grid-template-columns: 145px minmax(0, 1fr);
  }

  .item-actions {
    grid-column: 1 / -1;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .yorum-sidebar {
    grid-template-columns: 1fr;
  }

  .audio-dock {
    bottom: 61px;
  }

  .audio-dock-inner {
    min-height: 74px;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 12px;
  }

  .speech-rate-label {
    display: none;
  }
}

@media (max-width: 520px) {
  .page-kicker {
    display: none;
  }

  .yorum-title-row h1 {
    font-size: 1.9rem;
  }

  .yorum-title-row p {
    font-size: .79rem;
  }

  .yorum-tab {
    min-height: 36px;
    padding: 0 13px;
    font-size: .66rem;
  }

  .filter-button {
    min-height: 36px;
    font-size: .65rem;
  }

  .filter-panel {
    display: grid;
  }

  .filter-panel label,
  .filter-panel select,
  .filter-panel button {
    width: 100%;
  }

  .featured-opinion {
    padding: 10px;
  }

  .opinion-visual {
    min-height: 225px;
  }

  .featured-opinion-copy h2 {
    font-size: 1.45rem;
  }

  .featured-opinion-copy > p {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }

  .opinion-actions {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }

  .opinion-actions .comment-button {
    display: none;
  }

  .opinion-actions button {
    min-width: 0;
    padding: 0 8px;
  }

  .section-heading-row > span {
    display: none;
  }

  .opinion-item {
    grid-template-columns: 118px minmax(0, 1fr);
    gap: 11px;
    align-items: start;
  }

  .item-visual {
    min-height: 112px;
  }

  .opinion-item-copy h3 {
    font-size: .85rem;
  }

  .opinion-item-copy p {
    display: none;
  }

  .item-meta {
    gap: 5px;
  }

  .item-meta span:last-child {
    display: none;
  }

  .item-actions {
    padding-top: 0;
  }

  .listen-button.compact {
    min-width: 112px;
  }

  .load-more-button {
    width: 100%;
  }

  .yorum-newsletter-form {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .yorum-newsletter-form input,
  .yorum-newsletter-form button {
    min-height: 42px;
    border: 1px solid #d7dde6;
    border-radius: 4px;
  }

  .audio-dock-inner {
    min-height: 68px;
  }

  .audio-main-toggle {
    width: 42px;
    height: 42px;
  }

  .audio-now-playing strong {
    font-size: .75rem;
  }

  .audio-now-playing small {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .speech-wave i {
    animation: none;
  }
}
