.od1-music__header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 28px;
}

.od1-music__header h2 {
  margin: 0;
  font-size: clamp(2.6rem, 7vw, 5.8rem);
  letter-spacing: -.06em;
  line-height: .95;
}

.od1-music__header p:last-child { max-width: 620px; margin: 16px 0 0; color: var(--od1-artist-muted); }
.od1-music__search input { width: min(280px, 70vw); padding: 13px 16px; border: 1px solid var(--od1-artist-border); border-radius: 999px; color: inherit; background: var(--od1-artist-panel); }

.od1-music__filters { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.od1-music__filters button {
  padding: 9px 15px;
  border: 1px solid var(--od1-artist-border);
  border-radius: 999px;
  color: var(--od1-artist-muted);
  background: transparent;
  cursor: pointer;
}
.od1-music__filters button.is-active { border-color: var(--od1-artist-accent); color: #08080b; background: var(--od1-artist-accent); }

.od1-music__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); width: 100%; max-width: 840px; gap: 14px; }
.od1-release {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  min-height: 0;
  overflow: hidden;
  border: 1px solid var(--od1-artist-border);
  border-radius: 16px;
  background: var(--od1-artist-panel);
  box-shadow: 0 14px 40px rgba(0, 0, 0, .14);
  cursor: pointer;
}
.od1-release:focus-visible { outline: 2px solid var(--od1-artist-accent); outline-offset: 3px; }
.od1-release.is-featured { grid-column: span 1; }
.od1-release[hidden] { display: none; }
.od1-release:not(.is-modal) .od1-release__notes,
.od1-release:not(.is-modal) .od1-release__experience,
.od1-release:not(.is-modal) .od1-release__support,
.od1-release:not(.is-modal) .od1-release__listen,
.od1-release:not(.is-modal) .od1-release__cover-play,
.od1-release:not(.is-modal) .od1-release__play-all,
.od1-release:not(.is-modal) .od1-release__tracks,
.od1-release:not(.is-modal) .od1-release__actions { display: none; }
.od1-release-layout-placeholder {
  min-width: 0;
  visibility: hidden;
  pointer-events: none;
}
.od1-release.is-modal { width: 100%; grid-template-columns: minmax(230px, 36%) minmax(0, 1fr); border: 0; border-radius: 0; background: transparent; box-shadow: none; cursor: default; }
.od1-release.is-modal .od1-release__cover,
.od1-release.is-modal .od1-release__cover > img,
.od1-release.is-modal .od1-release__placeholder { min-height: 0; }
.od1-release.is-modal .od1-release__cover { align-self: start; }
.od1-release.is-modal .od1-release__body { padding: clamp(18px, 4vw, 34px); }
.od1-release.is-modal .od1-release__tracks { max-height: none; }
.od1-release.is-modal .od1-release__open { display: none; }
.od1-release__cover { position: relative; width: 100%; min-height: 0; aspect-ratio: 1 / 1; overflow: hidden; background: #050507; }
.od1-release__cover > img, .od1-release__placeholder { width: 100%; height: 100%; min-height: 0; aspect-ratio: 1 / 1; object-fit: contain; }
.od1-release__placeholder { display: grid; place-items: center; background: linear-gradient(145deg, color-mix(in srgb, var(--od1-artist-accent) 45%, #111), #09090d); }
.od1-release__placeholder span { font-size: 6rem; font-weight: 900; opacity: .65; }
.od1-release__cover-play {
  position: absolute;
  right: 10px;
  bottom: 10px;
  display: grid;
  width: 40px;
  height: 40px;
  padding: 0;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: #08080b;
  background: var(--od1-artist-accent);
  box-shadow: 0 10px 35px rgba(0, 0, 0, .4);
  cursor: pointer;
}
.od1-release__cover-play span { width: 0; height: 0; margin-left: 4px; border-top: 7px solid transparent; border-bottom: 7px solid transparent; border-left: 11px solid currentColor; }
.od1-release__cover-play.is-playing span { width: 10px; height: 14px; margin: 0; border: 0; border-left: 4px solid currentColor; border-right: 4px solid currentColor; }

.od1-release__body { min-width: 0; padding: 13px; }
.od1-release:not(.is-modal) .od1-release__body { padding: 10px 11px 12px; }
.od1-release:not(.is-modal) .od1-release__type { margin-bottom: 4px; font-size: .58rem; }
.od1-release:not(.is-modal) h3 { font-size: 1.05rem; }
.od1-release:not(.is-modal) .od1-release__subtitle { overflow: hidden; font-size: .72rem; text-overflow: ellipsis; white-space: nowrap; }
.od1-release__type { margin: 0 0 6px; color: var(--od1-artist-accent); font-size: .65rem; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.od1-release__heading { display: flex; min-width: 0; align-items: center; justify-content: space-between; gap: 10px; }
.od1-release h3 { margin: 0; font-size: 1.35rem; letter-spacing: -.035em; line-height: 1.05; }
.od1-release__heading h3 { min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.od1-release__heading .od1-release__play-all { flex: 0 0 auto; min-height: 30px; padding: 6px 9px; border-color: var(--od1-artist-accent); color: var(--od1-artist-accent); font-size: .66rem; white-space: nowrap; }
.od1-release.is-modal .od1-release__heading h3 { overflow: visible; white-space: normal; }
.od1-release__subtitle { margin: 5px 0 0; color: var(--od1-artist-muted); font-size: .86rem; }
.od1-release__tracks { max-height: 112px; margin: 9px 0 0; padding: 0; overflow: auto; list-style: none; scrollbar-width: thin; }
.od1-release__tracks li { display: grid; grid-template-columns: 14px 1fr auto auto; gap: 5px; align-items: center; min-height: 27px; border-bottom: 1px solid rgba(255, 255, 255, .06); font-size: .74rem; }
.od1-release__tracks li[tabindex] { border-radius: 7px; cursor: pointer; transition: background .15s ease; }
.od1-release__tracks li[tabindex]:hover,
.od1-release__tracks li[tabindex]:focus-visible,
.od1-release__tracks li.is-playing { outline: 0; background: rgba(255,255,255,.055); }
.od1-release__track-number, .od1-release__duration { color: var(--od1-artist-muted); font-variant-numeric: tabular-nums; }
.od1-release__track-title { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.od1-release__track-title em { margin-left: 6px; color: var(--od1-artist-muted); font-size: .62rem; font-style: normal; text-transform: capitalize; }
.od1-release__track-title small { margin-left: 6px; padding: 1px 4px; border-radius: 2px; color: #08080b; background: var(--od1-artist-muted); font-size: .58rem; font-weight: 900; }
.od1-release__tracks button { border: 0; color: var(--od1-artist-accent); background: none; font-size: .78rem; cursor: pointer; }
.od1-track-reactions { grid-column: 2 / -1; display: flex; gap: 4px; padding: 1px 0 4px; }
.od1-track-reactions button { display: grid; width: 25px; height: 22px; padding: 0; place-items: center; border: 1px solid rgba(255,255,255,.1); border-radius: 999px; color: var(--od1-artist-muted); background: rgba(255,255,255,.035); font-size: .72rem; line-height: 1; }
.od1-track-reactions button.is-active { border-color: color-mix(in srgb, var(--od1-artist-accent) 70%, white); color: var(--od1-artist-accent); background: color-mix(in srgb, var(--od1-artist-accent) 14%, transparent); }
.od1-release__notes { margin-top: 10px; color: var(--od1-artist-muted); font-size: .8rem; }
.od1-release__notes summary { color: var(--od1-artist-text); cursor: pointer; }
.od1-release__experience { margin-top: 10px; font-size: .8rem; }
.od1-release__experience > summary {
  display: flex;
  min-height: 38px;
  padding: 0 12px;
  align-items: center;
  justify-content: space-between;
  border: 1px solid color-mix(in srgb, var(--od1-artist-accent) 34%, var(--od1-artist-border));
  border-radius: 10px;
  color: var(--od1-artist-accent);
  background: color-mix(in srgb, var(--od1-artist-accent) 7%, transparent);
  font-weight: 850;
  list-style: none;
  cursor: pointer;
}
.od1-release__experience > summary::-webkit-details-marker { display: none; }
.od1-release__experience > summary::after { content: "+"; font-size: 1.15rem; font-weight: 500; }
.od1-release__experience[open] > summary::after { content: "−"; }
.od1-release__experience > div { display: grid; gap: 12px; margin-top: 12px; }
.od1-release__experience section { min-width: 0; }
.od1-release__experience-card {
  padding: 13px;
  overflow: hidden;
  border: 1px solid var(--od1-artist-border);
  border-radius: 12px;
  background: rgba(255,255,255,.03);
}
.od1-release__experience h4 { margin: 0 0 7px; font-size: .9rem; }
.od1-release__experience p { margin: 6px 0; color: var(--od1-artist-muted); line-height: 1.5; white-space: pre-line; }
.od1-release__video-frame { position: relative; width: 100%; aspect-ratio: 16 / 9; overflow: hidden; border-radius: 12px; background: #000; }
.od1-release__video-frame iframe,
.od1-release__video-frame video,
.od1-release__video-frame .wp-video,
.od1-release__video-frame .mejs-container,
.od1-release__video-frame .mejs-inner,
.od1-release__video-frame .mejs-mediaelement { width: 100% !important; height: 100% !important; max-width: none !important; border: 0; border-radius: 0; }
.od1-release__video-frame video { object-fit: contain; background: #000; }
.od1-release__open-verse { padding: 16px; border: 1px solid color-mix(in srgb, var(--od1-artist-accent) 28%, transparent); border-radius: 14px; background: color-mix(in srgb, var(--od1-artist-accent) 10%, transparent); }
.od1-release__open-verse .od1-release__challenge-kicker { margin: 0 0 4px; color: var(--od1-artist-accent); font-size: .64rem; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.od1-release__open-verse h4 { font-size: 1.1rem; }
.od1-release__challenge-play { margin: 3px 0 8px; border-color: var(--od1-artist-accent); color: var(--od1-artist-accent); }
.od1-release__challenge-facts { display: flex; flex-wrap: wrap; gap: 7px; margin: 12px 0; }
.od1-release__challenge-facts div { min-width: 76px; padding: 8px 10px; border-radius: 9px; background: rgba(0,0,0,.18); }
.od1-release__challenge-facts dt { color: var(--od1-artist-muted); font-size: .6rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.od1-release__challenge-facts dd { margin: 2px 0 0; color: var(--od1-artist-text); font-size: .76rem; font-weight: 800; }
.od1-release__challenge-actions { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.od1-release__challenge-terms { margin-top: 12px; color: var(--od1-artist-muted); }
.od1-release__challenge-terms summary { color: var(--od1-artist-text); font-weight: 750; cursor: pointer; }
.od1-release__actions { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 10px; }
.od1-release__actions .od1-artist-button { min-height: 36px; padding-inline: 11px; font-size: .75rem; }
.od1-release__actions .od1-artist-button span { margin-left: 8px; font-weight: 900; }
.od1-release__support { display: grid; width: 100%; gap: 8px; }
.od1-release__package { margin: 0; padding: 9px 11px; border-radius: 9px; color: var(--od1-artist-muted); background: rgba(255,255,255,.04); font-size: .69rem; line-height: 1.45; }
.od1-release__package strong { color: var(--od1-artist-text); }
.od1-release__support > label { display: flex; align-items: end; justify-content: space-between; gap: 10px; color: var(--od1-artist-text); font-size: .72rem; font-weight: 800; }
.od1-release__support > label > span:first-child { display: grid; gap: 2px; }
.od1-release__support small { color: var(--od1-artist-muted); font-size: .66rem; font-weight: 600; }
.od1-release__amount { display: flex; width: 96px; min-height: 34px; align-items: center; overflow: hidden; border: 1px solid var(--od1-artist-border); border-radius: 9px; background: rgba(255,255,255,.045); }
.od1-release__amount b { padding-left: 9px; color: var(--od1-artist-muted); font-size: .75rem; }
.od1-release__amount input { width: 100%; min-width: 0; padding: 7px 7px 7px 3px; border: 0; outline: 0; color: var(--od1-artist-text); background: transparent; font: inherit; }
.od1-release__support .od1-artist-button { width: 100%; }
.od1-support-dialog { width: min(92vw, 470px); max-width: none; padding: 0; border: 0; color: var(--od1-artist-text); background: transparent; }
.od1-support-dialog::backdrop { background: rgba(0,0,0,.76); backdrop-filter: blur(8px); }
.od1-support-dialog__panel { position: relative; display: grid; gap: 16px; padding: clamp(24px, 5vw, 34px); border: 1px solid var(--od1-artist-border); border-radius: 20px; background: var(--od1-artist-panel-strong); box-shadow: 0 30px 100px rgba(0,0,0,.65); }
.od1-support-dialog__panel h3 { margin: 0; font-size: clamp(1.65rem, 6vw, 2.25rem); letter-spacing: -.04em; line-height: 1; }
.od1-support-dialog__panel > p:not(.od1-artist-kicker):not(.od1-support-dialog__error) { margin: 0; color: var(--od1-artist-muted); line-height: 1.55; }
.od1-support-dialog__panel > label { display: grid; gap: 7px; font-size: .8rem; font-weight: 800; }
.od1-support-dialog__amount { display: flex; min-height: 48px; align-items: center; overflow: hidden; border: 1px solid var(--od1-artist-border); border-radius: 11px; background: rgba(255,255,255,.055); }
.od1-support-dialog__amount b { padding-left: 14px; color: var(--od1-artist-muted); }
.od1-support-dialog__amount input { width: 100%; min-width: 0; padding: 12px 14px 12px 5px; border: 0; outline: 0; color: var(--od1-artist-text); background: transparent; font: inherit; font-size: 1rem; font-weight: 800; }
.od1-support-dialog__close { position: absolute; top: 12px; right: 12px; width: 34px; height: 34px; border: 0; border-radius: 50%; color: var(--od1-artist-muted); background: rgba(255,255,255,.07); font-size: 1.25rem; cursor: pointer; }
.od1-support-dialog__error { min-height: 1.25em; margin: -7px 0 0; color: #ff9d9d; font-size: .76rem; }
.od1-support-dialog__actions { display: grid; grid-template-columns: auto 1fr; gap: 9px; }
.od1-release__listen { position: relative; }
.od1-release__listen summary { list-style: none; }
.od1-release__listen summary::-webkit-details-marker { display: none; }
.od1-release__listen > div { position: absolute; z-index: 5; right: 0; bottom: calc(100% + 8px); display: grid; min-width: 180px; padding: 8px; border: 1px solid var(--od1-artist-border); border-radius: 12px; background: #1a1a21; box-shadow: 0 20px 50px rgba(0,0,0,.4); }
.od1-release__listen > div a { padding: 9px 10px; border-radius: 7px; color: inherit; text-decoration: none; }
.od1-release__listen > div a:hover { background: rgba(255,255,255,.07); }
.od1-music__empty { padding: 30px; border: 1px dashed var(--od1-artist-border); border-radius: var(--od1-artist-radius); color: var(--od1-artist-muted); text-align: center; }

.od1-release-dialog { width: min(96vw, 1080px); max-width: none; max-height: 92dvh; padding: 0; overflow: visible; border: 0; color: var(--od1-artist-text); background: transparent; }
.od1-release-dialog::backdrop {
  background: rgba(0,0,0,.65);
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}
.od1-release-dialog__panel { position: relative; max-height: 92dvh; overflow: auto; overscroll-behavior: contain; border: 1px solid var(--od1-artist-border); border-radius: 24px; background: color-mix(in srgb, var(--od1-artist-panel-strong) 96%, black); box-shadow: 0 35px 120px rgba(0,0,0,.75); scrollbar-width: thin; -webkit-overflow-scrolling: touch; }
.od1-release-dialog__close { position: sticky; z-index: 5; top: 12px; float: right; width: 40px; height: 40px; margin: 12px 12px -52px 0; border: 1px solid rgba(255,255,255,.13); border-radius: 50%; color: var(--od1-artist-text); background: rgba(5,5,8,.72); font-size: 1.45rem; line-height: 1; backdrop-filter: blur(10px); cursor: pointer; }
.od1-release-dialog__content { min-width: 0; }
html.od1-release-modal-open,
body.od1-release-modal-open,
body.od1-artist-site.od1-release-modal-open { overflow: hidden; overscroll-behavior: none; }

.od1-player {
  position: fixed;
  z-index: 45;
  top: max(78px, calc(66px + env(safe-area-inset-top)));
  right: auto;
  bottom: auto;
  left: max(14px, env(safe-area-inset-left));
  display: block;
  width: 62px;
  height: 62px;
  margin: 0;
  padding: 0;
  border: 2px solid color-mix(in srgb, var(--od1-artist-accent) 70%, white);
  border-radius: 50%;
  background: var(--od1-artist-accent);
  box-shadow: 0 14px 38px rgba(0,0,0,.52);
  touch-action: none;
  user-select: none;
  will-change: transform, opacity;
  transform: translateZ(0);
  backface-visibility: hidden;
}
.od1-player[hidden] { display: none !important; }
.od1-player.is-mini-entering { animation: od1-mini-player-in .24s cubic-bezier(.2,.8,.2,1) both; }
.od1-player > [data-od1-player-toggle] { position: relative; display: grid; width: 58px; height: 58px; padding: 0; overflow: hidden; place-items: center; border: 0; border-radius: 50%; color: #fff; background: var(--od1-artist-accent); cursor: pointer; }
.od1-player > [data-od1-player-toggle]::after { display: none; position: absolute; z-index: 1; inset: 0; content: ""; background: rgba(0,0,0,.28); }
.od1-player > [data-od1-player-toggle] img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.od1-player > [data-od1-player-toggle] img[hidden] { display: none; }
.od1-player > [data-od1-player-toggle] span { position: relative; z-index: 2; display: none; width: 0; height: 0; margin-left: 3px; border-top: 7px solid transparent; border-bottom: 7px solid transparent; border-left: 11px solid currentColor; filter: drop-shadow(0 1px 3px rgba(0,0,0,.8)); }
.od1-player.is-playing > [data-od1-player-toggle] span { width: 10px; height: 14px; margin: 0; border: 0; border-left: 3px solid currentColor; border-right: 3px solid currentColor; }
.od1-player > [data-od1-player-close] { display: none; }
.od1-player__content,
.od1-player > [data-od1-player-time] { display: none; }
.od1-release__player-slot { width: 100%; }
.od1-release-dialog .od1-player {
  position: relative;
  z-index: 1;
  top: auto;
  right: auto;
  bottom: auto;
  left: auto;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto 34px;
  width: 100%;
  height: auto;
  margin: 14px 0 4px;
  padding: 11px 12px;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 14px;
  background: rgba(18,18,24,.94);
  box-shadow: 0 14px 38px rgba(0,0,0,.28);
  backdrop-filter: blur(20px);
  touch-action: auto;
  transform: none;
}
.od1-release-dialog .od1-player > [data-od1-player-toggle] { width: 42px; height: 42px; }
.od1-release-dialog .od1-player > [data-od1-player-toggle]::after { display: block; }
.od1-release-dialog .od1-player > [data-od1-player-toggle] span { display: block; border-top-width: 6px; border-bottom-width: 6px; border-left-width: 10px; }
.od1-release-dialog .od1-player.is-playing > [data-od1-player-toggle] span { width: 9px; height: 13px; border: 0; border-left: 3px solid currentColor; border-right: 3px solid currentColor; }
.od1-release-dialog .od1-player > [data-od1-player-close] { position: static; display: grid; width: 34px; height: 34px; padding: 0; place-items: center; border: 0; border-radius: 50%; color: var(--od1-artist-text); background: rgba(255,255,255,.08); font-size: 1rem; cursor: pointer; }
.od1-release-dialog .od1-player__content { display: grid; gap: 3px; min-width: 0; }
.od1-release-dialog .od1-player > [data-od1-player-time] { display: block; }
.od1-player strong { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: .85rem; }
.od1-player__waveform { --od1-player-progress: 0%; --od1-wave-offset: 0px; position: relative; height: 28px; overflow: hidden; }
.od1-player__waveform::before,
.od1-player__waveform > span {
  position: absolute;
  inset: 0;
  content: "";
  background: rgba(255,255,255,.24);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 80 28'%3E%3Cpath d='M2 11v6M7 7v14M12 3v22M17 9v10M22 5v18M27 1v26M32 8v12M37 4v20M42 10v8M47 6v16M52 2v24M57 7v14M62 4v20M67 9v10M72 5v18M77 11v6' stroke='black' stroke-width='3' stroke-linecap='round'/%3E%3C/svg%3E") left center / 80px 28px repeat-x;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 80 28'%3E%3Cpath d='M2 11v6M7 7v14M12 3v22M17 9v10M22 5v18M27 1v26M32 8v12M37 4v20M42 10v8M47 6v16M52 2v24M57 7v14M62 4v20M67 9v10M72 5v18M77 11v6' stroke='black' stroke-width='3' stroke-linecap='round'/%3E%3C/svg%3E") left center / 80px 28px repeat-x;
  -webkit-mask-position: var(--od1-wave-offset) center;
  mask-position: var(--od1-wave-offset) center;
}
.od1-player__waveform > span { right: auto; width: var(--od1-player-progress); background: var(--od1-artist-accent); }
.od1-player__waveform input { position: absolute; z-index: 2; inset: 0; width: 100%; height: 28px; margin: 0; opacity: 0; cursor: pointer; }
.od1-player__waveform:focus-within { outline: 1px solid color-mix(in srgb, var(--od1-artist-accent) 70%, transparent); outline-offset: 2px; }
.od1-player > span { color: var(--od1-artist-muted); font-size: .78rem; font-variant-numeric: tabular-nums; }

@keyframes od1-mini-player-in { from { opacity: 0; transform: translate3d(0,-14px,0) scale(.86); } to { opacity: 1; transform: translateZ(0) scale(1); } }
@media (prefers-reduced-motion: reduce) {
  .od1-player.is-mini-entering { animation: none; }
}

@media (min-width: 681px) {
  .od1-release-dialog__panel { overflow: hidden; }
  .od1-release-dialog__close {
    position: absolute;
    top: 12px;
    right: 12px;
    float: none;
    margin: 0;
  }
  .od1-release-dialog__content { height: 100%; }
  .od1-release.is-modal {
    --od1-release-art-size: min(72dvh, 560px, 46vw);
    height: var(--od1-release-art-size);
    grid-template-columns: var(--od1-release-art-size) minmax(0, 1fr);
    align-items: stretch;
  }
  .od1-release.is-modal .od1-release__cover {
    width: var(--od1-release-art-size);
    height: var(--od1-release-art-size);
    align-self: stretch;
    aspect-ratio: 1 / 1;
  }
  .od1-release.is-modal .od1-release__cover > img,
  .od1-release.is-modal .od1-release__placeholder {
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 1;
    object-fit: contain;
  }
  .od1-release.is-modal .od1-release__body {
    height: 100%;
    overflow-y: auto;
    overscroll-behavior: contain;
    scrollbar-width: thin;
  }
  .od1-release__experience > div { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .od1-release__experience-card:only-child,
  .od1-release__open-verse { grid-column: 1 / -1; }
  .od1-release__experience-card--text { max-height: 280px; overflow-y: auto; }
}

@media (max-width: 680px) {
  .od1-music__header { align-items: stretch; flex-direction: column; }
  .od1-music__search input { width: 100%; }
  .od1-music__grid { gap: 10px; }
  .od1-release { grid-template-columns: minmax(0, 1fr); }
  .od1-release.is-featured { grid-column: span 1; grid-template-columns: minmax(0, 1fr); }
  .od1-release.is-modal,
  .od1-release.is-featured.is-modal { display: block; }
  .od1-release.is-modal .od1-release__cover,
  .od1-release.is-modal .od1-release__cover > img,
  .od1-release.is-modal .od1-release__placeholder { min-height: 0; aspect-ratio: 1 / 1; }
  .od1-release-dialog {
    position: fixed;
    top: max(8px, env(safe-area-inset-top, 0px));
    right: max(8px, env(safe-area-inset-right, 0px));
    bottom: max(8px, env(safe-area-inset-bottom, 0px));
    left: max(8px, env(safe-area-inset-left, 0px));
    width: auto;
    height: auto;
    max-height: none;
    margin: 0;
  }
  .od1-release-dialog__panel { height: 100%; max-height: 100%; border-radius: 20px; }
  .od1-release__cover, .od1-release__cover > img, .od1-release__placeholder { min-height: 0; aspect-ratio: 1 / 1; }
  .od1-release__body { padding: 14px; }
  .od1-release:not(.is-modal) .od1-release__body { padding: 8px 9px 10px; }
  .od1-release:not(.is-modal) h3 { font-size: .92rem; }
  .od1-release__duration { display: none; }
  .od1-release-dialog .od1-player { width: 100%; }
}
