:root {
  color-scheme: only light;
  --blue: #2f80ed;
  --navy: #111827;
  --soft: #f5f7fb;
  --line: #e5e7eb;
  --muted: #64748b;
  --green: #10b981;
  --red: #ef4444;
}

html {
  color-scheme: only light;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: #e8edf5;
  color: var(--navy);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

button,
input {
  font: inherit;
}

button,
a,
input {
  -webkit-tap-highlight-color: transparent;
}

.phone {
  width: min(100%, 430px);
  min-height: 100vh;
  margin: 0 auto;
  background: var(--soft);
  box-shadow: 0 24px 80px rgba(15, 23, 42, 0.16);
  padding-bottom: 88px;
}

.phone.light-route {
  background: var(--soft);
  color: var(--navy);
}

.phone.light-route .screen-header {
  background: rgba(255, 255, 255, 0.98);
  border-bottom-color: #eef2f7;
  color: var(--navy);
}

.phone.light-route .content {
  min-height: calc(100vh - 76px);
  background: var(--soft);
  color: var(--navy);
}

.phone.light-route .card,
.phone.light-route .member-row,
.phone.light-route .talk-row,
.phone.light-route .album-card,
.phone.light-route .more-row,
.phone.light-route .member-search,
.phone.light-route .album-toolbar button,
.phone.light-route .dm-message.other p,
.phone.light-route .dm-input {
  background: #fff;
  color: var(--navy);
}

.phone.light-route .feed-body,
.phone.light-route .member-info p,
.phone.light-route .talk-row p,
.phone.light-route .album-card p,
.phone.light-route .muted {
  color: var(--muted);
}

.phone.light-route .segmented button,
.phone.light-route .secondary,
.phone.light-route .dm-input button {
  background: #eef6ff;
  color: var(--blue);
}

.phone.light-route .segmented button:not(.active) {
  background: #f1f5f9;
  color: #475569;
}

.phone.light-route .nav {
  background: #fff;
  border-top-color: #eef2f7;
}

.phone.light-route .nav a {
  color: #64748b;
}

.phone.light-route .nav a.active {
  background: #eff6ff;
  color: var(--blue);
}

.screen-header {
  position: sticky;
  top: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 20px 12px;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid #eef2f7;
  backdrop-filter: blur(12px);
}

.eyebrow {
  margin: 0;
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1 {
  margin: 4px 0 0;
  font-size: 21px;
  line-height: 1.2;
}

h2,
p {
  margin: 0;
}

.content {
  padding: 16px;
}

.card {
  border-radius: 8px;
  background: #fff;
  padding: 16px;
  box-shadow: 0 1px 8px rgba(15, 23, 42, 0.06);
}

.hero {
  color: #fff;
  background: linear-gradient(135deg, #111827, #1756b3);
  box-shadow: 0 16px 28px rgba(47, 128, 237, 0.18);
}

.hero-row,
.row,
.between {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.stack {
  display: grid;
  gap: 12px;
}

.mt {
  margin-top: 16px;
}

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

.small {
  font-size: 13px;
  line-height: 1.55;
}

.tiny {
  font-size: 12px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border-radius: 999px;
  padding: 5px 10px;
  background: #eff6ff;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

.pill.red {
  background: #fef2f2;
  color: var(--red);
}

.pill.green {
  background: #ecfdf5;
  color: var(--green);
}

.pill.gray {
  background: #f1f5f9;
  color: #475569;
}

.primary,
.secondary,
.dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 44px;
  border: 0;
  border-radius: 8px;
  font-weight: 900;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
}

.primary {
  background: var(--blue);
  color: #fff;
}

.secondary {
  background: #eef6ff;
  color: var(--blue);
}

.dark {
  background: var(--navy);
  color: #fff;
}

.link-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  border-radius: 999px;
  padding: 0 16px;
  background: #fff;
  color: var(--navy);
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
}

.nav {
  position: fixed;
  bottom: 0;
  left: 50%;
  z-index: 10;
  display: grid;
  width: min(100%, 430px);
  grid-template-columns: repeat(6, 1fr);
  transform: translateX(-50%);
  border-top: 1px solid #eef2f7;
  background: #fff;
  padding: 6px 8px 8px;
  box-shadow: 0 -12px 32px rgba(15, 23, 42, 0.08);
}

.nav button,
.nav a {
  display: flex;
  min-height: 58px;
  min-width: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: #64748b;
  padding: 4px 2px;
  font-size: 11px;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}

.nav button.active,
.nav a.active {
  background: #eff6ff;
  color: var(--blue);
}

.nav-icon {
  position: relative;
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  color: currentColor;
}

.nav b {
  display: block;
  line-height: 1;
  text-align: center;
}

.nav-icon::before,
.nav-icon::after {
  position: absolute;
  content: "";
}

.nav-home::before {
  width: 12px;
  height: 12px;
  border: 2px solid currentColor;
  border-top: 0;
  border-radius: 2px;
  bottom: 2px;
}

.nav-home::after {
  width: 12px;
  height: 12px;
  border-left: 2px solid currentColor;
  border-top: 2px solid currentColor;
  transform: rotate(45deg);
  top: 2px;
}

.nav-events::before {
  width: 16px;
  height: 16px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.nav-events::after {
  width: 7px;
  height: 7px;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translate(2px, -2px);
}

.nav-points::before {
  width: 15px;
  height: 15px;
  border: 2px solid currentColor;
  transform: rotate(45deg);
}

.nav-addons::before {
  width: 6px;
  height: 20px;
  border-radius: 50%;
  background: currentColor;
}

.nav-addons::after {
  width: 20px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}

.nav-talk::before {
  width: 17px;
  height: 14px;
  border: 2px solid currentColor;
  border-radius: 7px;
}

.nav-talk::after {
  left: 4px;
  bottom: 2px;
  width: 7px;
  height: 7px;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-20deg);
}

.nav-admin::before {
  width: 18px;
  height: 18px;
  background:
    radial-gradient(circle, transparent 0 3px, currentColor 3px 6px, transparent 6px),
    conic-gradient(from 0deg, currentColor 0 20deg, transparent 20deg 40deg, currentColor 40deg 60deg, transparent 60deg 80deg, currentColor 80deg 100deg, transparent 100deg 120deg, currentColor 120deg 140deg, transparent 140deg 160deg, currentColor 160deg 180deg, transparent 180deg 200deg, currentColor 200deg 220deg, transparent 220deg 240deg, currentColor 240deg 260deg, transparent 260deg 280deg, currentColor 280deg 300deg, transparent 300deg 320deg, currentColor 320deg 340deg, transparent 340deg 360deg);
  border-radius: 50%;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.stat-number {
  margin-top: 4px;
  font-size: 30px;
  font-weight: 950;
}

.feed-title {
  margin-top: 10px;
  font-size: 17px;
  font-weight: 950;
}

.feed-body {
  margin-top: 8px;
  color: #475569;
  font-size: 14px;
  line-height: 1.7;
}

.segmented {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 14px;
}

.segmented button {
  border: 0;
  border-radius: 8px;
  background: #f1f5f9;
  color: #475569;
  padding: 10px 4px;
  font-size: 14px;
  font-weight: 900;
  cursor: pointer;
}

.segmented button.active {
  background: var(--blue);
  color: #fff;
}

.toggle-card {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 14px;
}

.switch {
  position: relative;
  width: 56px;
  height: 32px;
  border-radius: 999px;
  background: #cbd5e1;
  transition: background 160ms ease;
}

.switch::after {
  position: absolute;
  top: 4px;
  left: 4px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #fff;
  content: "";
  transition: transform 160ms ease;
}

.switch.on {
  background: var(--blue);
}

.switch.on::after {
  transform: translateX(24px);
}

.price-panel {
  position: sticky;
  top: 78px;
  z-index: 4;
  background: var(--navy);
  color: #fff;
}

.price {
  margin-top: 2px;
  font-size: 32px;
  font-weight: 950;
}

.fixed-cta {
  position: fixed;
  bottom: 86px;
  left: 50%;
  z-index: 12;
  width: min(calc(100% - 32px), 398px);
  transform: translateX(-50%);
}

.progress {
  height: 12px;
  overflow: hidden;
  border-radius: 999px;
  background: #e2e8f0;
}

.progress div {
  height: 100%;
  border-radius: 999px;
  background: var(--blue);
}

.input {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-top: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fafc;
  padding: 12px;
}

.input input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
}

.login {
  display: flex;
  min-height: 100vh;
  flex-direction: column;
  padding: 28px 20px;
}

.logo {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border-radius: 8px;
  background: var(--blue);
  color: #fff;
  font-size: 24px;
  font-weight: 950;
}

.line {
  background: #06c755;
  color: #fff;
}

.login-bottom {
  margin-top: auto;
}

.band-screen {
  min-height: 100vh;
  padding-bottom: 92px;
  background: #171b27;
  color: #eef2ff;
}

.band-cover {
  padding: 10px 14px 0;
  background: linear-gradient(180deg, #242044 0%, #171b27 88%);
  border-bottom: 1px solid rgba(148, 163, 184, 0.16);
}

.cover-actions,
.cover-actions div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.cover-actions {
  min-height: 28px;
  color: #e5e7eb;
  font-size: 40px;
  font-weight: 300;
  justify-content: flex-end;
}

.cover-actions a {
  color: #e5e7eb;
  font-size: 30px;
  line-height: 1;
  text-decoration: none;
}

.cover-main {
  display: block;
  min-height: auto;
  margin-top: 6px;
  padding-left: 2px;
}

.band-avatar {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  border: 3px solid #0f172a;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 25%, #a78bfa, #4f46e5 42%, #020617 74%);
  color: #fff;
  font-size: 38px;
  font-weight: 950;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.28);
}

.cover-main h2 {
  margin: 9px 0 0;
  color: #f8fafc;
  font-size: 26px;
  line-height: 1.15;
  font-weight: 950;
}

.band-meta {
  margin-top: 5px;
  color: #9ca3af;
  font-size: 13px;
  font-weight: 800;
}

.band-actions {
  display: grid;
  grid-template-columns: 1.45fr 1.25fr 44px;
  gap: 7px;
  margin-top: 12px;
}

.band-actions a,
.band-actions button {
  display: inline-flex;
  min-width: 0;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: 0;
  border-radius: 8px;
  background: rgba(148, 163, 184, 0.18);
  color: #e5e7eb;
  font-size: 14px;
  font-weight: 950;
  text-decoration: none;
}

.notify-toggle {
  gap: 0;
}

.notify-toggle.off {
  color: #cbd5e1;
  background: rgba(148, 163, 184, 0.12);
}

.icon-people,
.icon-mail,
.icon-bell {
  position: relative;
  display: inline-block;
  flex: 0 0 auto;
  color: currentColor;
}

.icon-people {
  width: 22px;
  height: 17px;
}

.icon-people::before,
.icon-people::after {
  position: absolute;
  content: "";
}

.icon-people::before {
  left: 4px;
  top: 1px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 8px 0 0 currentColor;
}

.icon-people::after {
  left: 0;
  bottom: 0;
  width: 22px;
  height: 9px;
  border-radius: 13px 13px 5px 5px;
  background: currentColor;
}

.icon-mail {
  width: 22px;
  height: 15px;
  border: 2px solid currentColor;
  border-radius: 3px;
}

.icon-mail::before,
.icon-mail::after {
  position: absolute;
  top: 2px;
  width: 12px;
  height: 2px;
  background: currentColor;
  content: "";
}

.icon-mail::before {
  left: 1px;
  transform: rotate(32deg);
  transform-origin: left center;
}

.icon-mail::after {
  right: 1px;
  transform: rotate(-32deg);
  transform-origin: right center;
}

.icon-bell {
  width: 23px;
  height: 24px;
}

.icon-bell::before {
  position: absolute;
  left: 4px;
  top: 3px;
  width: 15px;
  height: 15px;
  border: 2px solid currentColor;
  border-bottom: 0;
  border-radius: 18px 18px 4px 4px;
  content: "";
}

.icon-bell::after {
  position: absolute;
  left: 2px;
  bottom: 2px;
  width: 19px;
  height: 6px;
  border-bottom: 2px solid currentColor;
  border-radius: 0 0 16px 16px;
  content: "";
}

.notify-toggle.off .icon-bell {
  transform: rotate(-8deg);
}

.notify-toggle.off .icon-bell::before,
.notify-toggle.off .icon-bell::after {
  opacity: 0.92;
}

.notify-toggle.off .icon-bell {
  background: linear-gradient(45deg, transparent 43%, currentColor 43%, currentColor 53%, transparent 53%);
}

.band-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 22px;
}

.band-tabs a {
  position: relative;
  padding: 14px 0 18px;
  color: #cbd5e1;
  text-align: center;
  font-size: 17px;
  font-weight: 950;
  text-decoration: none;
}

.band-tabs a.active::after {
  position: absolute;
  right: 9px;
  bottom: 0;
  left: 9px;
  height: 4px;
  border-radius: 99px;
  background: #eef2ff;
  content: "";
}

.band-tabs span {
  position: absolute;
  top: 8px;
  width: 7px;
  height: 7px;
  margin-left: 4px;
  border-radius: 50%;
  background: #f43f5e;
}

.login-bonus {
  display: grid;
  grid-template-columns: 1fr 72px;
  gap: 10px;
  align-items: center;
  margin: 12px 14px 0;
  border: 1px solid rgba(96, 165, 250, 0.36);
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.94), rgba(79, 70, 229, 0.94));
  padding: 13px 14px;
  color: #fff;
  box-shadow: 0 16px 24px rgba(37, 99, 235, 0.18);
}

.login-bonus b {
  display: block;
  font-size: 15px;
}

.login-bonus p {
  margin-top: 3px;
  color: #dbeafe;
  font-size: 12px;
  font-weight: 800;
}

.login-bonus a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #fff;
  color: #1d4ed8;
  font-size: 13px;
  font-weight: 950;
  text-decoration: none;
}

.home-point-card {
  display: grid;
  grid-template-columns: 1fr 104px;
  gap: 12px;
  align-items: center;
  margin: 12px 14px 0;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.07);
  padding: 14px;
  color: #eef2ff;
}

.home-point-card p {
  color: #93c5fd;
  font-size: 12px;
  font-weight: 950;
}

.home-point-card h2 {
  margin-top: 3px;
  font-size: 28px;
  line-height: 1;
}

.home-point-card span {
  display: block;
  margin-top: 5px;
  color: #cbd5e1;
  font-size: 12px;
  font-weight: 800;
}

.home-point-card a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: #eef2ff;
  color: #312e81;
  font-size: 13px;
  font-weight: 950;
  text-decoration: none;
}

.feed-filter {
  display: grid;
  grid-template-columns: 52px 1fr 1fr 44px;
  gap: 10px;
  padding: 14px 16px 12px;
  background: #171b27;
}

.feed-filter button {
  min-height: 44px;
  border: 0;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.12);
  color: #cbd5e1;
  font-weight: 950;
}

.feed-filter .selected {
  background: #4638f0;
  color: #fff;
}

.band-feed {
  display: grid;
  gap: 14px;
  padding: 0 14px 20px;
}

.band-post {
  border-bottom: 1px solid rgba(148, 163, 184, 0.16);
  padding: 14px 0 0;
  color: #e5e7eb;
}

.band-post.notice {
  border: 1px solid rgba(148, 163, 184, 0.26);
  border-radius: 16px;
  padding: 14px;
}

.post-head {
  display: grid;
  grid-template-columns: 44px 1fr 32px;
  gap: 10px;
  align-items: center;
}

.post-head h3 {
  margin: 0;
  color: #f8fafc;
  font-size: 15px;
}

.post-head p {
  margin-top: 3px;
  color: #8b94a8;
  font-size: 13px;
}

.post-head button {
  border: 0;
  background: transparent;
  color: #9ca3af;
  font-size: 26px;
}

.band-post h2 {
  margin: 10px 0 0;
  font-size: 16px;
}

.band-post > p {
  margin-top: 8px;
  color: #d1d5db;
  font-size: 16px;
  line-height: 1.58;
}

.post-stats {
  display: flex;
  justify-content: space-between;
  margin-top: 12px;
  color: #9ca3af;
  font-size: 14px;
}

.like-button {
  width: calc(100% + 28px);
  min-height: 48px;
  margin: 14px -14px 0;
  border: 0;
  border-top: 1px solid rgba(148, 163, 184, 0.16);
  background: transparent;
  color: #d1d5db;
  font-size: 16px;
  font-weight: 900;
}

.member-avatar {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #334155, #4f46e5);
  color: #fff;
  font-weight: 950;
}

.small-avatar {
  width: 38px;
  height: 38px;
  font-size: 13px;
}

.voice-card {
  display: grid;
  grid-template-columns: 46px 1fr 58px;
  align-items: center;
  gap: 12px;
  width: 70%;
  min-width: 260px;
  margin-top: 16px;
  border-radius: 14px;
  background: #111827;
  padding: 14px;
}

.voice-card button {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: #4638f0;
  font-weight: 950;
}

.wave {
  height: 28px;
  opacity: 0.45;
  background: repeating-linear-gradient(90deg, transparent 0 7px, #94a3b8 7px 10px, transparent 10px 15px);
  mask-image: radial-gradient(ellipse at center, #000 45%, transparent 72%);
}

.compose {
  position: fixed;
  right: max(20px, calc((100vw - 430px) / 2 + 20px));
  bottom: 82px;
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  border-radius: 50%;
  background: #4f3df1;
  color: #fff;
  font-size: 34px;
  text-decoration: none;
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.28);
}

.member-summary h2 {
  margin: 2px 0 0;
  font-size: 30px;
}

.member-search {
  margin-top: 12px;
  border-radius: 999px;
  background: #fff;
  padding: 13px 16px;
  color: #94a3b8;
  font-weight: 800;
}

.member-row {
  display: grid;
  grid-template-columns: 48px 1fr 54px;
  align-items: center;
  gap: 12px;
  border-radius: 8px;
  background: #fff;
  padding: 13px;
  box-shadow: 0 1px 8px rgba(15, 23, 42, 0.06);
}

.member-info h2 {
  margin: 0;
  font-size: 15px;
}

.member-info p {
  margin-top: 5px;
  color: var(--muted);
  font-size: 13px;
}

.dm-button {
  min-height: 36px;
  border: 0;
  border-radius: 8px;
  background: #eef6ff;
  color: var(--blue);
  font-weight: 950;
}

.talk-row {
  display: grid;
  grid-template-columns: 48px 1fr 10px;
  align-items: center;
  gap: 12px;
  border-radius: 8px;
  background: #fff;
  padding: 13px;
  box-shadow: 0 1px 8px rgba(15, 23, 42, 0.06);
  cursor: pointer;
}

.talk-row h2 {
  margin: 0;
  font-size: 15px;
}

.talk-row span {
  color: #94a3b8;
  font-size: 12px;
  font-weight: 800;
}

.talk-row p {
  margin-top: 5px;
  color: var(--muted);
  font-size: 13px;
}

.talk-row b {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--blue);
}

.dm-thread {
  display: grid;
  gap: 16px;
  min-height: calc(100vh - 230px);
  align-content: end;
}

.dm-message {
  display: flex;
  gap: 8px;
  align-items: flex-end;
}

.dm-message p {
  max-width: 75%;
  border-radius: 14px;
  padding: 12px 14px;
  font-size: 14px;
  line-height: 1.55;
}

.dm-message.other p {
  background: #fff;
}

.dm-message.me {
  justify-content: flex-end;
}

.dm-message.me p {
  background: var(--blue);
  color: #fff;
}

.dm-input {
  position: fixed;
  bottom: 82px;
  left: 50%;
  display: grid;
  width: min(100%, 430px);
  grid-template-columns: 42px 1fr 62px;
  gap: 8px;
  transform: translateX(-50%);
  border-top: 1px solid var(--line);
  background: #fff;
  padding: 10px 12px;
}

.dm-input input {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 14px;
  outline: 0;
}

.dm-input button {
  min-height: 40px;
  border: 0;
  border-radius: 999px;
  background: #eef6ff;
  color: var(--blue);
  font-weight: 950;
}

.album-toolbar {
  display: grid;
  grid-template-columns: 1fr 1fr 76px;
  gap: 8px;
}

.album-toolbar button {
  min-height: 42px;
  border: 0;
  border-radius: 8px;
  background: #fff;
  color: #475569;
  font-weight: 950;
}

.album-toolbar .selected {
  background: var(--blue);
  color: #fff;
}

.album-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.album-card {
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 1px 8px rgba(15, 23, 42, 0.06);
}

.album-cover {
  display: grid;
  aspect-ratio: 1.15;
  place-items: center;
  color: rgba(255, 255, 255, 0.82);
  font-size: 42px;
}

.album-card h2 {
  margin: 10px 10px 0;
  font-size: 15px;
}

.album-card p {
  margin: 4px 10px 12px;
  color: var(--muted);
  font-size: 12px;
}

.photo-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 12px;
}

.photo-strip span {
  aspect-ratio: 1;
  border-radius: 8px;
}

.more-row {
  display: grid;
  grid-template-columns: 36px 1fr 20px;
  align-items: center;
  border-radius: 8px;
  background: #fff;
  padding: 16px;
  color: var(--navy);
  text-decoration: none;
  box-shadow: 0 1px 8px rgba(15, 23, 42, 0.06);
}

.more-row span {
  font-size: 20px;
}

.more-row em {
  color: #94a3b8;
  font-style: normal;
  font-size: 24px;
}
