.od1-beat-store {
  color: var(--beat-text, #e7edf7);
  font-family: var(--font-sans, Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif);
  max-width: 1120px;
  margin-inline: auto;
  --od1-beat-row-height: 114px;
  --od1-beat-grid-gap: 10px;
  --od1-beat-visible-rows: 4;
  --beat-panel: #0c1118;
  --beat-panel-2: #121a24;
  --beat-line: rgba(126, 241, 255, .24);
  --beat-line-strong: rgba(126, 241, 255, .58);
  --beat-text: #e7edf7;
  --beat-muted: #8d9bad;
  --beat-accent: #7ef1ff;
  --beat-accent-2: #b6ff6f;
}

.od1-beat-store * {
  box-sizing: border-box;
}

.od1-beat-store > .od1-client-preview-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 0 0 20px;
  padding: 12px 15px;
  border: 1px solid rgba(182, 255, 111, .55);
  border-radius: 12px;
  background: #172015;
  color: #dfead8;
  font-size: .75rem;
}

.od1-beat-store > .od1-client-preview-banner span { display: flex; flex-wrap: wrap; gap: 7px; }
.od1-beat-store > .od1-client-preview-banner strong,
.od1-beat-store > .od1-client-preview-banner a { color: #b6ff6f; }
.od1-beat-store > .od1-client-preview-banner a { flex: 0 0 auto; font-weight: 900; }

.od1-beat-store__bar {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 16px;
}

.od1-beat-store__title-block h2 {
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  line-height: 1;
  letter-spacing: 0;
}

.od1-beat-store__title-block p {
  margin: 8px 0 0;
  max-width: 56ch;
  color: var(--beat-muted);
}

.od1-beat-store__search {
  flex: 0 1 280px;
}

.od1-beat-store__tools {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  flex: 0 1 450px;
}

.od1-beat-store__rooms-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 1px solid var(--beat-line);
  border-radius: 8px;
  color: var(--beat-text);
  font-size: 13px;
  font-weight: 800;
  padding: 10px 12px;
  text-decoration: none;
  white-space: nowrap;
}

.od1-beat-store__rooms-link:hover {
  border-color: var(--beat-line-strong);
  background: rgba(126, 241, 255, .1);
}

.od1-beat-store__rooms-icon {
  display: none;
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.od1-beat-store__search input {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--beat-line);
  border-radius: 8px;
  background: rgba(12, 17, 24, .78);
  color: var(--beat-text);
  padding: 10px 12px;
  font: inherit;
}

.od1-beat-store__search input:focus {
  outline: none;
  box-shadow: 0 0 0 3px var(--ring, rgba(17, 24, 39, .16));
}

.od1-beat-store__filters {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 2px 0 16px;
  scrollbar-width: none;
}

.od1-beat-store__filters::-webkit-scrollbar {
  display: none;
}

.od1-beat-store__chip {
  border: 1px solid var(--beat-line);
  border-radius: 999px;
  background: rgba(12, 17, 24, .72);
  color: var(--beat-muted);
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  min-height: 38px;
  padding: 8px 12px;
  white-space: nowrap;
}

.od1-beat-store__chip:hover,
.od1-beat-store__chip.is-active {
  border-color: var(--beat-line-strong);
  background: rgba(126, 241, 255, .12);
  color: var(--beat-text);
}

.od1-beat-store__grid {
  display: grid;
  grid-template-columns: 1fr;
  align-content: start;
  gap: var(--od1-beat-grid-gap);
  max-height: calc((var(--od1-beat-row-height) * var(--od1-beat-visible-rows)) + (var(--od1-beat-grid-gap) * (var(--od1-beat-visible-rows) - 1)));
  overflow-y: auto;
  overscroll-behavior: contain;
  padding-right: 6px;
  scrollbar-width: thin;
}

.od1-beat-store__grid::-webkit-scrollbar {
  width: 8px;
}

.od1-beat-store__grid::-webkit-scrollbar-thumb {
  background: var(--beat-line-strong);
  border-radius: 999px;
}

.od1-beat-card {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  align-items: stretch;
  min-height: var(--od1-beat-row-height);
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--beat-line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(126, 241, 255, .09), transparent 38%),
    linear-gradient(180deg, var(--beat-panel-2), var(--beat-panel));
  box-shadow: none;
  transition: border-color .18s ease, background .18s ease, transform .18s ease;
}

.od1-beat-card:hover,
.od1-beat-card.is-playing {
  border-color: var(--beat-line-strong);
  background:
    linear-gradient(135deg, rgba(126, 241, 255, .14), transparent 42%),
    linear-gradient(180deg, #15202c, #0c1118);
}

.od1-beat-card[hidden],
.od1-beat-card.is-filtered-out {
  display: none !important;
}

.od1-beat-card__media {
  position: relative;
  width: 88px;
  aspect-ratio: 1 / 1;
  min-height: 88px;
  overflow: hidden;
  background: #070a0f;
  border-right: 1px solid var(--beat-line);
}

.od1-beat-card__media img {
  position: absolute !important;
  inset: 0;
  display: block;
  width: 100% !important;
  max-width: none !important;
  height: 100% !important;
  max-height: none !important;
  object-fit: cover !important;
  object-position: center;
}

@media (min-width: 901px) {
  .od1-beat-store {
    --od1-beat-row-height: 104px;
  }

  .od1-beat-store__grid {
    width: min(100%, 1040px);
    margin-inline: auto;
  }

  .od1-beat-card {
    grid-template-columns: 102px minmax(0, 1fr);
    height: 104px;
  }

  .od1-beat-card__media {
    width: 102px;
    height: 102px;
    min-height: 102px;
  }

  .od1-beat-card__body {
    grid-template-columns: minmax(210px, 270px) minmax(220px, 1fr) 128px;
    column-gap: 12px;
    padding: 10px 12px;
  }

  .od1-beat-card__details {
    gap: 6px;
    min-width: 0;
  }

  .od1-beat-card__meta {
    flex-wrap: nowrap;
    min-width: 0;
    overflow: hidden;
  }

  .od1-beat-card__meta span {
    flex: 0 0 auto;
  }

  .od1-beat-card p {
    display: none;
  }

  .od1-beat-card__waveform {
    height: 48px;
  }

  .od1-beat-card__button--license {
    min-width: 90px;
    min-height: 44px;
    padding: 6px 8px;
  }

  .od1-beat-card__license-price {
    font-size: 12px;
  }
}

.od1-beat-card__placeholder {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  color: var(--beat-muted);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.od1-beat-card__play {
  position: absolute;
  left: 50%;
  top: 50%;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(126, 241, 255, .72);
  border-radius: 50%;
  background: rgba(7, 10, 15, .78);
  cursor: pointer;
  transform: translate(-50%, -50%);
  backdrop-filter: blur(6px);
}

.od1-beat-card__play:disabled {
  cursor: not-allowed;
  opacity: .42;
}

.od1-beat-card__play:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px var(--ring, rgba(17, 24, 39, .24));
}

.od1-beat-card__play-icon {
  width: 0;
  height: 0;
  margin-left: 3px;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 12px solid var(--beat-accent);
}

.od1-beat-card.is-playing .od1-beat-card__play-icon {
  width: 13px;
  height: 15px;
  margin-left: 0;
  border: 0;
  background: linear-gradient(90deg, var(--beat-accent) 0 35%, transparent 35% 65%, var(--beat-accent) 65% 100%);
}

.od1-beat-card__body {
  display: grid;
  grid-template-columns: minmax(180px, 260px) minmax(240px, 1fr) auto;
  align-items: center;
  column-gap: 14px;
  row-gap: 8px;
  min-width: 0;
  padding: 12px;
}

.od1-beat-card__row {
  display: flex;
  align-items: baseline;
  justify-content: flex-start;
  gap: 10px;
  min-width: 0;
  grid-column: 1;
}

.od1-beat-card__row-actions {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 6px;
  margin-left: auto;
}

.od1-beat-card__room-action {
  display: grid;
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid var(--beat-line);
  border-radius: 50%;
  background: rgba(126, 241, 255, .08);
  color: var(--beat-accent);
  text-decoration: none;
}

.od1-beat-card__room-action:hover {
  border-color: var(--beat-line-strong);
  background: rgba(126, 241, 255, .18);
}

.od1-beat-card__room-action svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
}

.od1-beat-card h3 {
  margin: 0;
  min-width: 0;
  color: var(--beat-text);
  font-size: 16px;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.od1-beat-card__price {
  flex: 0 0 auto;
  color: var(--beat-accent-2);
  font-size: 14px;
  font-weight: 800;
}

.od1-beat-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  min-height: 24px;
}

.od1-beat-card__details {
  display: grid;
  gap: 8px;
  grid-column: 1;
}

.od1-beat-card__mobile-meta {
  display: none;
}

.od1-beat-card__meta span {
  border: 1px solid rgba(126, 241, 255, .18);
  border-radius: 6px;
  background: rgba(126, 241, 255, .08);
  color: var(--beat-muted);
  font-size: 12px;
  line-height: 1;
  padding: 5px 8px;
}

.od1-beat-card p {
  margin: 0;
  color: var(--beat-muted);
  font-size: 13px;
  line-height: 1.35;
  grid-column: 1;
  max-width: 34ch;
}

.od1-beat-card__waveform {
  position: relative;
  grid-column: 2;
  grid-row: 1 / span 3;
  display: block;
  width: 100%;
  min-width: 0;
  height: 62px;
  overflow: hidden;
  border: 1px solid var(--beat-line);
  border-radius: 8px;
  background:
    repeating-linear-gradient(90deg, rgba(255,255,255,.035) 0 1px, transparent 1px 16px),
    linear-gradient(180deg, rgba(126, 241, 255, .08), rgba(182, 255, 111, .04)),
    #080d13;
  cursor: pointer;
  padding: 0;
}

.od1-beat-card__waveform:disabled {
  cursor: not-allowed;
  opacity: .42;
}

.od1-beat-card__waveform:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px var(--ring, rgba(17, 24, 39, .16));
}

.od1-beat-card__waveform canvas {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
}

.od1-beat-card__wave-progress {
  display: none;
}

.od1-beat-card__actions {
  display: flex;
  align-items: center;
  gap: 7px;
  grid-column: 3;
  grid-row: 1 / span 3;
  align-self: center;
}

.od1-beat-card__button {
  min-height: 42px;
  border: 1px solid var(--beat-line);
  border-radius: 8px;
  background: rgba(12, 17, 24, .68);
  color: var(--beat-text);
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  padding: 9px 10px;
}

.od1-beat-card__button:hover {
  border-color: var(--beat-line-strong);
  background: rgba(126, 241, 255, .1);
}

.od1-beat-card__button:disabled {
  cursor: not-allowed;
  opacity: .48;
}

.od1-beat-card__button--primary {
  background: var(--beat-accent);
  border-color: var(--beat-accent);
  color: #061016;
}

.od1-beat-card__button--primary:hover {
  background: var(--beat-accent-2);
  border-color: var(--beat-accent-2);
}

.od1-beat-card__button--license {
  display: grid;
  grid-template-columns: 20px auto;
  align-items: center;
  gap: 1px 9px;
  min-width: 138px;
  min-height: 58px;
  border-color: var(--beat-line-strong);
  background: rgba(126, 241, 255, .1);
  padding: 8px 12px;
  text-align: left;
}

.od1-beat-card__button--license:hover {
  background: rgba(126, 241, 255, .18);
}

.od1-beat-card__license-icon {
  grid-row: auto;
  width: 20px;
  height: 20px;
  fill: none;
  stroke: var(--beat-accent);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.od1-beat-card__license-label {
  color: var(--beat-text);
  font-size: 12px;
  line-height: 1.1;
}

.od1-beat-card__license-price {
  display: flex;
  align-items: center;
  color: var(--beat-accent-2);
  font-size: 13px;
  font-weight: 900;
  line-height: 20px;
}

.od1-beat-card__license-price .woocommerce-Price-amount {
  color: inherit;
}

.od1-beat-card__hold-label {
  color: #ffd27a;
  font-size: 11px;
  font-weight: 900;
  line-height: 1.15;
}

.od1-beat-card.is-in-collaboration .od1-beat-card__button--license:disabled {
  border-color: rgba(255, 210, 122, .55);
  background: rgba(255, 210, 122, .08);
  opacity: 1;
}

.od1-beat-card.is-in-collaboration .od1-beat-card__license-icon { stroke: #ffd27a; }

.od1-beat-store__empty {
  border: 1px solid var(--beat-line);
  border-radius: 8px;
  color: var(--beat-muted);
  padding: 18px;
}

.od1-beat-license-modal[hidden] {
  display: none !important;
}

.od1-beat-license-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  padding: 18px;
}

.od1-beat-license-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 8, 12, .78);
  backdrop-filter: blur(8px);
}

.od1-beat-license-modal__panel {
  position: relative;
  z-index: 1;
  width: min(560px, 100%);
  max-height: min(720px, calc(100vh - 36px));
  overflow-y: auto;
  border: 1px solid var(--beat-line-strong);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(126, 241, 255, .12), transparent 45%),
    linear-gradient(180deg, #121a24, #080d13);
  box-shadow: 0 24px 80px rgba(0, 0, 0, .48);
  padding: 18px;
}

.od1-beat-license-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--beat-line);
  border-radius: 50%;
  background: rgba(12, 17, 24, .76);
  color: var(--beat-text);
  cursor: pointer;
  font: inherit;
  font-size: 22px;
  line-height: 1;
  padding: 0;
}

.od1-beat-license-modal__close:hover {
  border-color: var(--beat-line-strong);
  background: rgba(126, 241, 255, .12);
}

.od1-beat-license-modal__header {
  display: grid;
  gap: 6px;
  padding-right: 42px;
  margin-bottom: 14px;
}

.od1-beat-license-modal__details {
  display: grid;
  gap: 10px;
  margin: -2px 0 14px;
  padding: 12px;
  border: 1px solid var(--beat-line);
  border-radius: 8px;
  background: rgba(126, 241, 255, .055);
}

.od1-beat-license-modal__details[hidden] {
  display: none !important;
}

.od1-beat-license-modal__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.od1-beat-license-modal__meta span {
  border: 1px solid rgba(126, 241, 255, .22);
  border-radius: 999px;
  color: var(--beat-muted);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  padding: 6px 9px;
}

.od1-beat-license-modal__details p {
  display: block;
  max-width: none;
  margin: 0;
  color: var(--beat-muted);
  font-size: 13px;
  line-height: 1.45;
}

.od1-beat-license-modal__eyebrow {
  color: var(--beat-accent);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.od1-beat-license-modal h3 {
  margin: 0;
  color: var(--beat-text);
  font-size: 24px;
  line-height: 1.1;
}

.od1-beat-license-modal__options {
  display: grid;
  gap: 10px;
}

.od1-beat-license-option {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px 14px;
  width: 100%;
  min-height: 88px;
  border: 1px solid var(--beat-line);
  border-radius: 8px;
  background: rgba(12, 17, 24, .76);
  color: var(--beat-text);
  cursor: pointer;
  font: inherit;
  padding: 14px;
  text-align: left;
}

.od1-beat-license-option:hover,
.od1-beat-license-option:focus-visible,
.od1-beat-license-option.is-selected {
  outline: none;
  border-color: var(--beat-line-strong);
  background: rgba(126, 241, 255, .1);
}

.od1-beat-license-option.is-selected {
  box-shadow: inset 3px 0 0 var(--beat-accent);
}

.od1-beat-license-option:disabled {
  cursor: wait;
  opacity: .72;
}

.od1-beat-license-option__title {
  min-width: 0;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.od1-beat-license-option__price {
  color: var(--beat-accent-2);
  font-size: 15px;
  font-weight: 900;
  line-height: 1.2;
  white-space: nowrap;
}

.od1-beat-license-option__description {
  grid-column: 1 / -1;
  color: var(--beat-muted);
  font-size: 13px;
  line-height: 1.4;
  white-space: pre-line;
}

.od1-beat-license-modal__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 14px;
}

.od1-beat-license-modal__action {
  min-height: 48px;
  border: 1px solid var(--beat-line-strong);
  border-radius: 8px;
  background: #172331;
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  font-weight: 850;
  padding: 10px 12px;
}

.od1-beat-license-modal__action:hover:not(:disabled) {
  background: rgba(126, 241, 255, .16);
}

.od1-beat-license-modal__action--primary {
  border-color: var(--beat-accent);
  background: var(--beat-accent);
  color: #061016;
}

.od1-beat-license-modal__action--primary:hover:not(:disabled) {
  border-color: var(--beat-accent-2);
  background: var(--beat-accent-2);
}

.od1-beat-license-modal__action:disabled {
  cursor: not-allowed;
  opacity: .48;
}

.od1-beat-license-modal__message {
  margin: 12px 0 0;
  border: 1px solid rgba(255, 141, 141, .38);
  border-radius: 8px;
  background: rgba(255, 141, 141, .1);
  color: #ffd1d1;
  padding: 10px 12px;
}

@media (max-width: 900px) {
  .od1-beat-store__grid {
    grid-template-columns: 1fr;
  }

  .od1-beat-card__body {
    grid-template-columns: minmax(0, 1fr) minmax(220px, 1.3fr);
    align-items: start;
  }

  .od1-beat-card__waveform {
    grid-column: 2;
    grid-row: 1 / span 3;
  }

  .od1-beat-card__actions {
    grid-column: 1 / -1;
    grid-row: auto;
  }
}

@media (max-width: 640px) {
  .od1-beat-store {
    --od1-beat-row-height: 94px;
    --od1-beat-grid-gap: 8px;
  }

  .od1-beat-store__bar {
    align-items: stretch;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 10px;
  }

  .od1-beat-store__title-block h2 {
    font-size: 1.75rem;
  }

  .od1-beat-store__title-block p {
    margin-top: 6px;
    font-size: 14px;
    line-height: 1.35;
  }

  .od1-beat-store__search {
    flex: 1 1 auto;
    min-width: 0;
  }

  .od1-beat-store__tools {
    align-items: center;
    flex-direction: row;
    flex-basis: auto;
    gap: 8px;
  }

  .od1-beat-store__rooms-link {
    flex: 0 0 44px;
    width: 44px;
    min-height: 44px;
    padding: 0;
  }

  .od1-beat-store__rooms-link span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
  }

  .od1-beat-store__rooms-link--signin {
    flex-basis: auto;
    width: auto;
    padding: 0 12px;
  }

  .od1-beat-store__rooms-link--signin span {
    position: static;
    width: auto;
    height: auto;
    overflow: visible;
    clip: auto;
    clip-path: none;
  }

  .od1-beat-store__rooms-icon {
    display: block;
  }

  .od1-beat-store__filters {
    gap: 6px;
    padding-bottom: 10px;
  }

  .od1-beat-store__chip {
    min-height: 34px;
    padding: 6px 11px;
  }

  .od1-beat-store__grid {
    grid-template-columns: 1fr;
    grid-auto-rows: max-content;
    align-content: start;
  }

  .od1-beat-card {
    grid-template-columns: 92px minmax(0, 1fr);
    width: calc(100% - 8px);
    height: auto;
    min-height: 94px;
    margin-inline: 4px;
  }

  .od1-beat-card__media {
    align-self: start;
    width: 92px;
    height: 92px;
    min-height: 92px;
  }

  .od1-beat-card__body {
    position: relative;
    isolation: isolate;
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto auto;
    align-content: space-between;
    gap: 6px;
    min-height: 92px;
    padding: 6px 8px;
  }

  .od1-beat-card__body::before {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(90deg, rgba(12, 17, 24, .58), rgba(12, 17, 24, .16));
    content: "";
    pointer-events: none;
  }

  .od1-beat-card__row {
    position: relative;
    z-index: 2;
    align-items: baseline;
    flex-direction: row;
    justify-content: space-between;
    gap: 4px;
  }

  .od1-beat-card__room-action {
    width: 24px;
    height: 24px;
  }

  .od1-beat-card__room-action svg {
    width: 14px;
    height: 14px;
  }

  .od1-beat-card h3 {
    font-size: 14px;
  }

  .od1-beat-card__price {
    font-size: 12px;
  }

  .od1-beat-card__details {
    display: none;
  }

  .od1-beat-card.is-info-open .od1-beat-card__details {
    position: relative;
    z-index: 2;
    display: grid;
    gap: 6px;
    min-width: 0;
  }

  .od1-beat-card.is-info-open .od1-beat-card__meta {
    display: flex;
    flex-wrap: nowrap;
    min-width: 0;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .od1-beat-card.is-info-open .od1-beat-card__meta::-webkit-scrollbar {
    display: none;
  }

  .od1-beat-card.is-info-open p {
    display: -webkit-box;
    max-width: none;
    max-height: 1.35em;
    overflow: hidden;
    font-size: 12px;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
  }

  .od1-beat-card.is-info-open .od1-beat-card__waveform,
  .od1-beat-card.is-info-open .od1-beat-card__actions,
  .od1-beat-card.is-info-open .od1-beat-card__mobile-meta {
    display: none;
  }

  .od1-beat-card p {
    display: none;
  }

  .od1-beat-card__waveform {
    position: absolute;
    inset: 0;
    z-index: 0;
    grid-column: auto;
    grid-row: auto;
    height: 100%;
    border: 0;
    border-radius: 0;
    opacity: .24;
    background:
      linear-gradient(90deg, rgba(12, 17, 24, .72), rgba(12, 17, 24, .38)),
      repeating-linear-gradient(90deg, rgba(126, 241, 255, .07) 0 1px, transparent 1px 16px);
  }

  .od1-beat-card__actions {
    position: relative;
    z-index: 2;
    display: flex;
    grid-column: 1;
    grid-row: 2;
    justify-self: end;
    width: auto;
    margin-top: 0;
  }

  .od1-beat-card__mobile-meta {
    position: relative;
    z-index: 2;
    display: flex;
    grid-column: 1;
    grid-row: 2;
    align-items: center;
    align-self: end;
    justify-self: start;
    gap: 4px;
    margin-bottom: 4px;
    min-width: 0;
    color: var(--beat-muted);
    font-size: 10px;
    font-weight: 800;
    line-height: 1;
    white-space: nowrap;
  }

  .od1-beat-card__mobile-meta i {
    color: var(--beat-accent);
    font-style: normal;
  }

  .od1-beat-card__button--license {
    grid-template-columns: 20px 1fr auto;
    width: 100%;
    min-height: 38px;
    padding-block: 6px;
    text-align: left;
  }

  .od1-beat-card__license-icon {
    grid-row: auto;
  }

  .od1-beat-card__button {
    display: block;
    width: 100%;
    min-height: 44px;
    border-radius: 6px;
    border-color: var(--beat-line-strong);
    background: #172331;
    color: #ffffff;
    font-size: 13px;
    line-height: 1.2;
    padding: 9px 8px;
  }

  .od1-beat-card__button--license {
    position: relative;
    display: grid;
    grid-template-columns: 17px minmax(0, 1fr);
    align-items: center;
    gap: 6px;
    width: auto;
    min-width: 0;
    min-height: 44px;
    padding: 4px 8px;
    border: 0;
    border-radius: 999px;
    background: transparent;
  }

  .od1-beat-card__button--license::before {
    position: absolute;
    inset: 4px 0;
    z-index: -1;
    border: 1px solid var(--beat-line-strong);
    border-radius: inherit;
    background: rgba(23, 35, 49, .88);
    content: "";
  }

  .od1-beat-card__button--license:hover {
    border: 0;
    background: transparent;
  }

  .od1-beat-card__button--license:hover::before {
    background: rgba(126, 241, 255, .18);
  }

  .od1-beat-card__button--license .od1-beat-card__license-icon {
    width: 17px;
    height: 17px;
  }

  .od1-beat-card__license-price,
  .od1-beat-card__hold-label {
    min-width: 0;
    line-height: 1.15;
    white-space: nowrap;
  }

  .od1-beat-card__button--primary {
    border-color: var(--beat-accent);
    background: var(--beat-accent);
    color: #061016;
  }

  .od1-beat-card__play {
    width: 34px;
    height: 34px;
  }

  .od1-beat-card__play-icon {
    border-top-width: 7px;
    border-bottom-width: 7px;
    border-left-width: 10px;
  }

  .od1-beat-license-modal {
    align-items: center;
    padding: 10px;
  }

  .od1-beat-license-modal__panel {
    max-height: calc(100vh - 20px);
    padding: 14px;
  }

  .od1-beat-license-modal h3 {
    font-size: 20px;
  }

  .od1-beat-license-option {
    grid-template-columns: 1fr;
    min-height: 0;
    gap: 6px;
  }

  .od1-beat-license-option__price {
    white-space: normal;
  }
}
