/* assets/css/blocks/audio-player.css
   Аудио-блок: кнопка Слушать в стиле "Получить КП" (градиент, без скруглений).
*/
.seoms-audio {
  background: #fff;
  color: #111;
  font-family: "MontserratCustom", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  padding: 48px 0;
}

.seoms-audio__wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.seoms-audio__inner {
  display: grid;
  grid-template-columns: 1fr 360px; /* left meta + right caption/buttons */
  gap: 20px;
  align-items: center;
}

/* left column (title + text) */
.seoms-audio__meta { padding-right: 20px; }
.seoms-audio__dots { text-align:center; color:#bbb; margin-bottom:6px; font-size:18px; }
.seoms-audio__title {
  margin: 0 0 8px;
  font-weight: 800;
  font-size: 20px;
  text-align: left;
}
.seoms-audio__text {
  margin: 0;
  color: #444;
  font-size: 16px;
  line-height: 1.6;
  max-width: 680px;
}

/* right column: button + caption (centered) */
.seoms-audio__ctrls {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}

/* ===== Кнопка: стиль как "Получить КП", но квадратная ===== */
/* gradient цвета совпадают с основными: #ff6d3d -> #ff8352 */
.seoms-audio__btn {
  -webkit-appearance: none;
  appearance: none;
  border: 0;
  background: linear-gradient(180deg, #ff6d3d 0%, #ff8352 100%);
  color: #fff;
  font-weight: 800;
  font-size: 20px;              /* чуть крупнее */
  padding: 12px 44px;           /* просторная кнопка */
  border-radius: 0;             /* без скруглений (квадратные углы) */
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(0,0,0,0.12);
  transition: transform .08s ease, box-shadow .12s ease, opacity .12s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.5px;
  text-transform: none;
}

/* визуальная индикация нажатия */
.seoms-audio__btn:active { transform: translateY(1px); }
.seoms-audio__btn[aria-pressed="true"] {
  background: linear-gradient(180deg, #f06445 0%, #d94b33 100%);
  box-shadow: 0 6px 16px rgba(0,0,0,0.14);
}

/* фокус (клавиатура) — чёткая рамка для доступности */
.seoms-audio__btn:focus {
  outline: 3px solid rgba(255,109,61,0.18);
  outline-offset: 2px;
}

/* small caption on the right */
.seoms-audio__caption { text-align: left; max-width: 360px; }
.seoms-audio__caption-text { margin: 0; color: #333; font-size: 16px; line-height: 1.6; }

/* responsive: stack for small screens */
@media (max-width: 860px) {
  .seoms-audio__inner { grid-template-columns: 1fr; gap: 18px; }
  .seoms-audio__ctrls { flex-direction: row; justify-content: center; gap: 16px; }
  .seoms-audio__caption { max-width: none; text-align: left; }
}

/* very small */
@media (max-width:480px) {
  .seoms-audio__title { font-size: 18px; }
  .seoms-audio__text, .seoms-audio__caption-text { font-size: 14px; }
  .seoms-audio__btn { font-size: 16px; padding: 10px 28px; }
}
