* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--color-bg);
  color: var(--color-ink);
  font-family: var(--font-sans);
  line-height: 1.5;
}

body {
  margin: 0;
  overflow-x: hidden;
}

body {
  background:
    linear-gradient(115deg, rgba(232, 246, 255, 0.92) 0%, rgba(247, 251, 255, 0.88) 48%, rgba(255, 229, 219, 0.76) 100%),
    linear-gradient(160deg, rgba(12, 86, 122, 0.1), transparent 38%),
    linear-gradient(25deg, transparent 58%, rgba(231, 154, 130, 0.12)),
    var(--color-bg);
}

body.has-site-background {
  background-image:
    linear-gradient(rgba(246, 248, 251, 0.82), rgba(246, 248, 251, 0.94)),
    var(--site-background-image);
  background-position: center top;
  background-size: cover;
  background-attachment: fixed;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

img {
  display: block;
  max-width: 100%;
}

[hidden] {
  display: none !important;
}

.shell {
  width: min(1180px, calc(100% - 32px));
  margin-inline: auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--color-line);
  background: rgba(246, 248, 251, 0.72);
  box-shadow: 0 12px 36px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(22px);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  gap: var(--space-4);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  background: var(--trust-gradient);
  color: white;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.32), 0 10px 26px rgba(15, 23, 42, 0.18);
  font-size: 16px;
  overflow: hidden;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.empty-brand-mark {
  position: relative;
  color: transparent;
  background:
    url('svg/brand/app-logo.svg') center / cover no-repeat,
    var(--trust-gradient);
}

.empty-brand-mark::before,
.empty-brand-mark::after {
  content: none;
}

.empty-brand-mark::before {
  inset: 25%;
  border: 2px solid rgba(255, 255, 255, 0.78);
  border-right-color: rgba(125, 211, 252, 0.78);
  border-bottom-color: rgba(250, 204, 21, 0.68);
  transform: rotate(-12deg);
}

.empty-brand-mark::after {
  width: 42%;
  height: 2px;
  background: rgba(255, 255, 255, 0.72);
  transform: rotate(28deg);
}

.topnav {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.topnav a,
.ghost-button,
.primary-button,
.danger-button,
.icon-button {
  min-height: 40px;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  transition: background 140ms ease, border-color 140ms ease, color 140ms ease, transform 140ms ease;
}

.topnav a,
.ghost-button,
.primary-button,
.danger-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 0 var(--space-4);
}

.topnav a,
.ghost-button {
  border-color: var(--color-line);
  background: var(--glass-surface);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(20px);
  color: var(--color-ink);
}

.primary-button {
  border-color: var(--color-primary);
  background: var(--trust-gradient);
  color: #fff;
  box-shadow: 0 20px 44px rgba(15, 23, 42, 0.18), inset 0 1px 0 rgba(255,255,255,0.38);
  font-weight: 700;
}

.danger-button {
  border-color: rgba(210, 85, 63, 0.3);
  background: #fff5f2;
  color: #a83824;
}

.icon-button {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border-color: transparent;
  background: transparent;
  color: var(--color-muted);
}

.topnav a:hover,
.ghost-button:hover,
.icon-button:hover {
  background: var(--color-surface-soft);
}

.topnav a.admin-link {
  min-height: auto;
  padding: 0;
  border-color: transparent;
  background: transparent;
  color: var(--color-muted);
  font-size: 12px;
  font-weight: 800;
}

.topnav a.admin-link:hover {
  background: transparent;
  color: var(--color-primary);
  text-decoration: underline;
}

.primary-button:hover {
  background: var(--color-primary-dark);
}

.danger-button:hover {
  background: #ffe6df;
}

:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
}

.page-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: var(--space-5);
  padding: var(--space-7) 0 var(--space-5);
}

.page-kicker {
  margin: 0 0 var(--space-2);
  color: var(--color-primary);
  font-weight: 800;
}

.page-title {
  margin: 0;
  max-width: 720px;
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 58px);
  line-height: 1;
  letter-spacing: 0;
}

.page-copy {
  max-width: 620px;
  margin: var(--space-3) 0 0;
  color: var(--color-muted);
  overflow-wrap: anywhere;
  line-break: anywhere;
}

.public-profile-header {
  margin: var(--space-4) 0 var(--space-6);
  overflow: hidden;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 28px 80px rgba(15, 23, 42, 0.14);
  backdrop-filter: blur(20px);
}

.public-cover {
  min-height: clamp(156px, 28vw, 280px);
  background:
    linear-gradient(135deg, rgba(15, 23, 42, 0.42), rgba(30, 58, 138, 0.22)),
    var(--site-background-image),
    var(--trust-sheen),
    var(--trust-gradient);
  background-position: center;
  background-size: cover;
}

.public-cover.has-image,
.settings-cover-preview.has-image {
  background-image:
    linear-gradient(135deg, rgba(15, 23, 42, 0.18), rgba(0, 124, 116, 0.08)),
    var(--site-background-image);
}

.public-profile-body {
  position: relative;
  width: min(1180px, calc(100% - 32px));
  margin-inline: auto;
  padding: 58px 0 var(--space-5);
}

.public-avatar {
  position: absolute;
  top: -54px;
  left: 0;
  display: grid;
  width: 108px;
  height: 108px;
  place-items: center;
  overflow: hidden;
  border: 5px solid var(--color-surface);
  border-radius: 50%;
  background: var(--trust-gradient);
  color: #fff;
  box-shadow: 0 20px 44px rgba(15, 23, 42, 0.18), inset 0 1px 0 rgba(255,255,255,0.38);
  font-size: 34px;
  font-weight: 900;
}

.public-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.public-avatar.empty-brand-mark {
  color: transparent;
}

.public-admin-link {
  position: absolute;
  top: var(--space-4);
  right: 0;
  color: var(--color-muted);
  font-size: 13px;
  font-weight: 900;
}

.public-profile-title {
  margin: 0;
  max-width: calc(100% - 96px);
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.public-profile-copy {
  max-width: 660px;
  margin: var(--space-3) 0 0;
  color: var(--color-muted);
  font-size: 17px;
  line-height: 1.7;
}

.admin-page-head {
  align-items: start;
}

.admin-icon-nav {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: var(--space-2);
  padding: var(--space-1);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  background: var(--glass-surface);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(20px);
}

.admin-icon-tab {
  display: inline-flex;
  width: 44px;
  min-width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  place-items: center;
  border: 0;
  border-radius: var(--radius-sm);
  background: transparent;
  color: var(--color-muted);
  font-size: 12px;
  font-weight: 900;
}

.admin-icon-tab svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.admin-icon-tab[aria-selected='true'],
.admin-icon-tab:hover {
  background: var(--color-primary-soft);
  color: var(--color-primary-dark);
}

.admin-icon-tab span {
  display: none;
}

.admin-icon-tab[aria-selected='true'] {
  width: auto;
  padding: 0 var(--space-3);
}

.admin-icon-tab[aria-selected='true'] span {
  display: inline;
}

.event-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-4);
  padding-bottom: var(--space-7);
}

.event-card {
  display: flex;
  min-width: 0;
  min-height: 100%;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  background: var(--glass-surface);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(20px);
  box-shadow: 0 14px 34px rgba(var(--color-shadow) / 0.08);
}

.event-card-link {
  display: flex;
  min-height: 100%;
  flex-direction: column;
}

.card-media {
  position: relative;
  aspect-ratio: var(--card-image-ratio);
  overflow: hidden;
  background: var(--color-surface-soft);
}

.card-media::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 42%;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), var(--color-surface));
  content: '';
  pointer-events: none;
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: var(--space-3);
  padding: var(--space-4);
}

.card-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 20px;
  line-height: 1.25;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.event-meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2) var(--space-3);
  color: var(--color-muted);
  font-size: 13px;
}

.event-meta-stack {
  display: grid;
  gap: 4px;
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.45;
}

.tag-list,
.tag-editor-list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.tag-chip {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 var(--space-2);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-sm);
  background: var(--color-primary-soft);
  color: var(--color-primary-dark);
  font-size: 12px;
  font-weight: 800;
}

.detail-tags {
  margin-top: var(--space-4);
}

.card-description {
  margin: 0;
  color: var(--color-muted);
  font-size: 14px;
  overflow-wrap: anywhere;
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  margin-top: auto;
  color: var(--color-muted);
  font-size: 13px;
}

.detail-button-pill {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  color: var(--color-primary-dark);
  font-weight: 900;
}

.card-actions {
  display: inline-flex;
  gap: var(--space-1);
}

.setlist-preview {
  position: relative;
  display: grid;
  gap: 7px;
  min-height: 150px;
  padding: var(--space-4);
  overflow: hidden;
  border-bottom: 1px solid var(--color-line);
  background:
    linear-gradient(135deg, rgba(0, 124, 116, 0.12), rgba(210, 85, 63, 0.08)),
    var(--color-note);
}

.text-card .setlist-preview {
  gap: 10px;
  min-height: 156px;
  padding: var(--space-4) var(--space-5);
  border-bottom: 0;
  background:
    linear-gradient(140deg, rgba(15, 23, 42, 0.96), rgba(30, 58, 138, 0.88)),
    var(--trust-gradient);
}

.preview-line {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: var(--space-2);
  align-items: baseline;
  min-width: 0;
  color: var(--color-ink);
  font-weight: 700;
}

.text-card .preview-line {
  grid-template-columns: 30px minmax(0, 1fr);
  gap: var(--space-3);
  color: #fff;
  font-weight: 800;
}

.preview-number {
  color: var(--color-primary);
  font-variant-numeric: tabular-nums;
}

.text-card .preview-number {
  color: rgba(255, 255, 255, 0.72);
}

.preview-title {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.preview-line.teaser {
  opacity: 0.42;
  filter: blur(0.2px);
  mask-image: linear-gradient(to bottom, #000 58%, transparent);
}

.text-card .preview-line.teaser {
  opacity: 0.62;
  filter: none;
  mask-image: none;
}

.preview-fallback {
  display: flex;
  align-items: center;
  min-height: 112px;
  color: var(--color-muted);
  font-weight: 700;
}

.text-card .preview-fallback {
  color: rgba(255, 255, 255, 0.72);
}

.total-song-count {
  color: var(--color-primary-dark);
  font-weight: 800;
}

.empty-state,
.error-state {
  margin: var(--space-6) 0;
  padding: var(--space-5);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  background: var(--glass-surface);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(20px);
}

.detail-hero {
  width: min(100%, 420px);
  margin: var(--space-3) auto var(--space-4);
  padding: 10px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(219, 234, 254, 0.46)),
    var(--glass-surface);
  box-shadow: 0 28px 72px rgba(15, 23, 42, 0.16), inset 0 1px 0 rgba(255,255,255,0.82);
  backdrop-filter: blur(22px);
}

.detail-breadcrumb {
  display: flex;
  padding: var(--space-5) 0 var(--space-3);
}

.detail-hero img {
  width: 100%;
  aspect-ratio: 1;
  display: block;
  border-radius: calc(var(--radius-lg) - 8px);
  object-fit: cover;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: var(--space-5);
  align-items: start;
  padding-bottom: var(--space-7);
}

.detail-flow {
  display: grid;
  width: min(100%, 760px);
  gap: var(--space-5);
  margin: 0 auto;
  padding-bottom: var(--space-7);
}

.setlist li small {
  display: block;
  margin-top: 2px;
  color: var(--color-muted);
}

.detail-main,
.detail-aside,
.admin-panel,
.admin-list,
.admin-preview {
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  background: var(--glass-surface);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(20px);
}

.detail-main,
.detail-aside {
  padding: var(--space-5);
}

.detail-page-head {
  width: min(100%, 760px);
  margin: 0 auto var(--space-5);
  padding: 0;
}

.detail-page-head .page-kicker {
  display: inline-flex;
  width: fit-content;
  min-height: 32px;
  align-items: center;
  padding: 0 var(--space-3);
  border: 1px solid rgba(30, 58, 138, 0.16);
  border-radius: 999px;
  background: rgba(219, 234, 254, 0.72);
  color: var(--color-primary-dark);
  font-size: 14px;
  font-weight: 900;
}

.detail-page-head .page-title {
  margin-top: var(--space-3);
}

.detail-page-head .page-copy {
  margin-top: var(--space-2);
  color: var(--color-muted);
  font-weight: 800;
}

.section-title {
  margin: 0 0 var(--space-4);
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0;
}

.setlist {
  display: grid;
  gap: var(--space-2);
  margin: 0;
  padding: 0;
  list-style: none;
}

.setlist li {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: var(--space-3);
  align-items: center;
  min-height: 64px;
  padding: var(--space-3);
  border: 1px solid transparent;
  border-bottom-color: var(--color-line);
  border-radius: var(--radius-sm);
  transition: background 160ms ease, border-color 160ms ease;
}

.setlist li:hover {
  border-color: rgba(30, 58, 138, 0.14);
  background: rgba(255, 255, 255, 0.42);
}

.setlist-position {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background:
    linear-gradient(135deg, rgba(219, 234, 254, 0.9), rgba(204, 251, 241, 0.78));
  color: var(--color-primary-dark);
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}

.setlist-image {
  width: 100%;
  max-height: 680px;
  object-fit: contain;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(219, 234, 254, 0.38)),
    var(--color-surface-soft);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.76);
}

.admin-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr) 340px;
  gap: var(--space-4);
  align-items: start;
  padding-bottom: var(--space-7);
}

.admin-layout.is-editing {
  grid-template-columns: minmax(0, 720px) minmax(280px, 340px);
  justify-content: center;
}

.song-admin-layout {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: var(--space-4);
  align-items: start;
  padding-bottom: var(--space-7);
}

.song-admin-layout.is-editing {
  grid-template-columns: minmax(0, 720px);
  justify-content: center;
}

.settings-admin-layout {
  display: grid;
  grid-template-columns: minmax(0, 680px);
  padding-bottom: var(--space-7);
}

.admin-list,
.admin-panel,
.admin-preview {
  min-width: 0;
  padding: var(--space-4);
}

.admin-empty-hint {
  display: grid;
  gap: var(--space-2);
  padding: var(--space-5);
  border: 1px dashed var(--color-line);
  border-radius: var(--radius-lg);
  background: var(--glass-surface);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(20px);
  color: var(--color-muted);
}

.admin-empty-hint strong {
  color: var(--color-ink);
  font-size: 18px;
}

.admin-list {
  position: sticky;
  top: 84px;
}

.admin-layout.is-editing .admin-list,
.song-admin-layout.is-editing .admin-list {
  display: none;
}

.editor-head {
  display: flex;
  justify-content: flex-start;
  margin-bottom: var(--space-4);
}

.back-button {
  display: inline-flex;
  width: fit-content;
  min-height: 40px;
  align-items: center;
  gap: 6px;
  padding: 0 var(--space-3) 0 var(--space-2);
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  color: var(--color-muted);
  font-weight: 900;
}

.back-button::before {
  content: '‹';
  display: inline-grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  background: var(--color-surface-soft);
  color: var(--color-primary-dark);
  font-size: 18px;
  line-height: 1;
}

.back-button:hover,
.back-button:focus-visible {
  border-color: var(--color-line);
  background: var(--color-surface-soft);
  color: var(--color-ink);
  outline: none;
}

.admin-list-items {
  display: grid;
  gap: var(--space-2);
  margin-top: var(--space-4);
}

.admin-search-field {
  margin-top: var(--space-4);
  margin-bottom: 0;
}

.admin-list-button {
  display: grid;
  gap: 2px;
  width: 100%;
  padding: var(--space-3);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-sm);
  background: var(--glass-surface);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(20px);
  color: var(--color-ink);
  text-align: left;
}

.admin-list-button[aria-current='true'] {
  border-color: var(--color-primary);
  background: var(--color-primary-soft);
}

.song-suggestion-panel {
  position: absolute;
  z-index: 80;
  display: grid;
  gap: 2px;
  max-height: 280px;
  overflow: auto;
  padding: var(--space-2);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-sm);
  background: var(--glass-surface);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-soft);
}

.song-suggestion-panel[hidden] {
  display: none;
}

.song-suggestion-option {
  display: grid;
  gap: 2px;
  width: 100%;
  padding: var(--space-2) var(--space-3);
  border: 0;
  border-radius: var(--radius-sm);
  background: transparent;
  color: var(--color-ink);
  text-align: left;
}

.song-suggestion-option:hover,
.song-suggestion-option:focus-visible {
  background: var(--color-primary-soft);
  outline: none;
}

.song-suggestion-option span {
  color: var(--color-muted);
  font-size: 12px;
}

.admin-list-button small {
  color: var(--color-muted);
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-4);
}

.field {
  display: grid;
  gap: var(--space-2);
  margin-bottom: var(--space-4);
}

.field.full {
  grid-column: 1 / -1;
}

.field.compact-field {
  align-content: end;
  margin-bottom: var(--space-3);
}

.field label,
.checkbox-field {
  color: var(--color-ink);
  font-weight: 800;
}

.field small {
  color: var(--color-muted);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-sm);
  background: var(--glass-surface);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(20px);
  color: var(--color-ink);
}

.field input,
.field select {
  min-height: 42px;
  padding: 0 var(--space-3);
}

.field textarea {
  min-height: 112px;
  resize: vertical;
  padding: var(--space-3);
}

.compact-checkbox {
  display: inline-flex;
  width: fit-content;
  min-height: 34px;
  align-items: center;
  gap: 8px;
  padding: 0 var(--space-3);
  border: 1px solid var(--color-line);
  border-radius: 999px;
  background: var(--color-surface-soft);
  color: var(--color-muted);
  font-size: 14px;
}

.compact-checkbox input[type='checkbox'] {
  width: 16px;
  min-width: 16px;
  height: 16px;
  min-height: 16px;
  margin: 0;
  padding: 0;
  accent-color: var(--color-primary);
}

.compact-checkbox:has(input:checked) {
  border-color: var(--color-primary);
  background: var(--color-primary-soft);
  color: var(--color-primary-dark);
}

.tag-input-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: var(--space-2);
}

.editable-tag-chip {
  gap: var(--space-1);
}

.editable-tag-chip button {
  display: inline-grid;
  place-items: center;
  width: 20px;
  height: 20px;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font-weight: 900;
}

.setlist-editor {
  display: grid;
  gap: var(--space-2);
}

.setlist-editor-row {
  display: grid;
  grid-template-columns: 28px 42px minmax(0, 1fr);
  gap: var(--space-2);
  align-items: center;
}

.setlist-drag-handle {
  display: inline-grid;
  width: 28px;
  height: 36px;
  place-items: center;
  border: 0;
  border-radius: var(--radius-sm);
  background: transparent;
  color: var(--color-muted);
  font-weight: 900;
  opacity: 0;
  pointer-events: none;
}

.setlist-editor.is-order-editing .setlist-drag-handle {
  opacity: 1;
  pointer-events: auto;
  cursor: grab;
}

.setlist-editor-row.is-dragging {
  opacity: 0.5;
}

.setlist-editor-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.setlist-editor-number {
  color: var(--color-primary);
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}

.setlist-editor-row input {
  min-height: 42px;
}

.compact-button {
  width: fit-content;
  min-height: 36px;
  padding-inline: var(--space-3);
}

.song-link-preview {
  display: grid;
  gap: var(--space-2);
  margin-top: var(--space-2);
  padding: var(--space-4);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  background: var(--color-surface-soft);
}

.song-link-list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.song-link-pill {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 var(--space-3);
  border: 1px solid var(--color-primary);
  border-radius: var(--radius-sm);
  background: var(--glass-surface);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(20px);
  color: var(--color-primary-dark);
  font-size: 13px;
  font-weight: 800;
}


.public-song-links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-top: var(--space-2);
}

.setlist .public-song-links .song-link-pill {
  min-height: 28px;
  padding: 0 var(--space-3);
  font-size: var(--font-size-xs);
}

.song-link-pill.inactive {
  border-color: var(--color-line);
  color: var(--color-muted);
  text-decoration: line-through;
}

.song-status-badge {
  display: inline-flex;
  width: fit-content;
  min-height: 24px;
  align-items: center;
  padding: 0 var(--space-2);
  border-radius: var(--radius-sm);
  background: var(--color-surface-soft);
  color: var(--color-muted);
  font-size: 12px;
  font-weight: 800;
}

[data-theme='neumorphism'] body {
  background:
    radial-gradient(circle at 18% 10%, rgba(255, 255, 255, 0.76), transparent 28%),
    radial-gradient(circle at 78% 14%, rgba(214, 138, 223, 0.16), transparent 24%),
    var(--color-bg);
}

[data-theme='neumorphism'] body.has-site-background {
  background-image:
    linear-gradient(rgba(232, 240, 251, 0.84), rgba(232, 240, 251, 0.94)),
    var(--site-background-image);
}

[data-theme='neumorphism'] .topbar {
  border-bottom: 0;
  background: rgba(232, 240, 251, 0.78);
  box-shadow: 0 10px 28px rgba(116, 137, 166, 0.16);
}

[data-theme='neumorphism'] .brand-mark,
[data-theme='neumorphism'] .settings-logo-preview {
  border: 1px solid rgba(255, 255, 255, 0.66);
  background: linear-gradient(145deg, #f4f8ff, #dce7f7);
  color: var(--color-primary-dark);
  box-shadow: var(--neu-shadow-soft);
}

[data-theme='neumorphism'] .empty-brand-mark {
  background: linear-gradient(145deg, #dce7f7, #f4f8ff);
}

[data-theme='neumorphism'] .event-card,
[data-theme='neumorphism'] .detail-main,
[data-theme='neumorphism'] .detail-aside,
[data-theme='neumorphism'] .admin-panel,
[data-theme='neumorphism'] .admin-list,
[data-theme='neumorphism'] .admin-preview,
[data-theme='neumorphism'] .settings-header-editor,
[data-theme='neumorphism'] .image-box,
[data-theme='neumorphism'] .song-link-preview {
  border-color: rgba(255, 255, 255, 0.72);
  background: var(--color-surface);
  box-shadow: var(--neu-shadow-raised);
}

[data-theme='neumorphism'] .event-card {
  overflow: hidden;
}

[data-theme='neumorphism'] .text-card .setlist-preview,
[data-theme='neumorphism'] .card-media,
[data-theme='neumorphism'] .settings-cover-preview,
[data-theme='neumorphism'] .image-box > div {
  border-color: rgba(255, 255, 255, 0.65);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.46), rgba(210, 224, 244, 0.58)),
    var(--color-surface-soft);
  box-shadow: var(--neu-shadow-inset);
}

[data-theme='neumorphism'] .topnav a,
[data-theme='neumorphism'] .ghost-button,
[data-theme='neumorphism'] .primary-button,
[data-theme='neumorphism'] .danger-button,
[data-theme='neumorphism'] .icon-button,
[data-theme='neumorphism'] .admin-icon-tab,
[data-theme='neumorphism'] .compose-icon-button,
[data-theme='neumorphism'] .settings-image-edit,
[data-theme='neumorphism'] .back-button {
  border-color: rgba(255, 255, 255, 0.7);
  box-shadow: var(--neu-shadow-soft);
}

[data-theme='neumorphism'] .primary-button,
[data-theme='neumorphism'] .post-button {
  border: 0;
  background: linear-gradient(145deg, #7f96ff, #6176f0);
  color: #fff;
  box-shadow: 8px 8px 18px rgba(85, 107, 224, 0.26), -8px -8px 18px rgba(255, 255, 255, 0.86);
}

[data-theme='neumorphism'] .topnav a:hover,
[data-theme='neumorphism'] .ghost-button:hover,
[data-theme='neumorphism'] .icon-button:hover,
[data-theme='neumorphism'] .admin-icon-tab:hover,
[data-theme='neumorphism'] .compose-icon-button:hover,
[data-theme='neumorphism'] .settings-image-edit:hover,
[data-theme='neumorphism'] .back-button:hover {
  background: var(--color-surface-soft);
  box-shadow: var(--neu-shadow-inset);
}

[data-theme='neumorphism'] .admin-icon-tab[aria-selected='true'],
[data-theme='neumorphism'] .mobile-admin-tab[aria-selected='true'],
[data-theme='neumorphism'] .admin-list-button[aria-current='true'] {
  border-color: rgba(255, 255, 255, 0.8);
  background: linear-gradient(145deg, #f6f9ff, #d9e4f6);
  color: var(--color-primary-dark);
  box-shadow: var(--neu-shadow-inset);
}

[data-theme='neumorphism'] .field input,
[data-theme='neumorphism'] .field select,
[data-theme='neumorphism'] .field textarea,
[data-theme='neumorphism'] .admin-list-button,
[data-theme='neumorphism'] .tag-chip {
  border-color: rgba(255, 255, 255, 0.68);
  background: var(--color-surface);
  box-shadow: var(--neu-shadow-inset);
}

[data-theme='neumorphism'] .field input:focus,
[data-theme='neumorphism'] .field select:focus,
[data-theme='neumorphism'] .field textarea:focus {
  border-color: rgba(109, 134, 255, 0.34);
  box-shadow: var(--neu-shadow-inset), var(--focus-ring);
}

[data-theme='neumorphism'] .mobile-admin-nav {
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(232, 240, 251, 0.9);
  box-shadow: var(--neu-shadow-raised);
}

[data-theme='neumorphism'] .mobile-admin-tab {
  color: var(--color-muted);
}

.settings-header-editor {
  margin-bottom: var(--space-5);
  overflow: hidden;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  background: var(--glass-surface);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(20px);
}

.settings-cover-preview {
  position: relative;
  min-height: 150px;
  background:
    linear-gradient(rgba(8, 12, 14, 0.2), rgba(8, 12, 14, 0.34)),
    var(--site-background-image),
    linear-gradient(135deg, #111, #334);
  background-position: center;
  background-size: cover;
}

.settings-profile-row {
  position: relative;
  display: block;
  min-height: 108px;
  padding: var(--space-3) var(--space-4) var(--space-4);
}

.settings-logo-preview {
  position: absolute;
  top: -48px;
  left: var(--space-4);
  z-index: 2;
  display: grid;
  width: 92px;
  height: 92px;
  place-items: center;
  overflow: hidden;
  border: 4px solid var(--color-surface);
  border-radius: 50%;
  background: var(--trust-gradient);
  color: #fff;
  box-shadow: 0 20px 44px rgba(15, 23, 42, 0.18), inset 0 1px 0 rgba(255,255,255,0.38);
  font-size: 30px;
  font-weight: 900;
}

.settings-logo-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.settings-title-preview {
  display: grid;
  gap: 2px;
  min-width: 0;
  padding: 0 0 var(--space-2) 112px;
}

.settings-title-preview strong {
  overflow: hidden;
  font-size: 20px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.settings-title-preview span {
  color: var(--color-muted);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
}

.settings-save-note {
  margin: 0;
  padding: var(--space-3) var(--space-4) var(--space-4);
  border-top: 1px solid var(--color-line);
  color: var(--color-muted);
  font-size: 13px;
  font-weight: 800;
}

.settings-image-edit {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: rgba(12, 18, 20, 0.64);
  color: #fff;
}

.settings-file-control {
  margin-top: calc(var(--space-2) * -1);
  padding: var(--space-3);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  background: var(--color-surface-soft);
}

.settings-file-control > label:first-child,
.settings-file-control input[type='file'] {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.mobile-admin-nav {
  display: none;
}

.settings-image-edit svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cover-edit {
  position: absolute;
  top: 50%;
  left: calc(50% - 28px);
  transform: translate(-50%, -50%);
}

.cover-remove {
  position: absolute;
  top: 50%;
  left: calc(50% + 28px);
  transform: translate(-50%, -50%);
}

.logo-edit {
  position: absolute;
  right: 4px;
  bottom: 4px;
  z-index: 3;
  width: 34px;
  height: 34px;
  pointer-events: none;
}

.logo-remove {
  position: absolute;
  top: -44px;
  left: 80px;
  z-index: 4;
  width: 32px;
  height: 32px;
}

.logo-remove[hidden] {
  display: none;
}

.image-fields {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
}

.image-box {
  display: grid;
  gap: var(--space-3);
  min-width: 0;
  padding: var(--space-4);
  overflow: hidden;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  background: var(--color-surface-soft);
}

.image-box > div {
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
  border-radius: var(--radius-sm);
}

.image-box img {
  width: 100%;
  max-width: 100%;
  height: 200px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  background: var(--glass-surface);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(20px);
}

.image-box.setlist img {
  object-fit: contain;
}

.image-box input[type='file'] {
  max-width: 100%;
}

.checkbox-field {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-weight: 700;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--space-3);
  margin-top: var(--space-6);
  padding-top: var(--space-5);
  border-top: 1px solid var(--color-line);
}

.compose-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  margin-top: var(--space-6);
  padding-top: var(--space-4);
  border-top: 1px solid var(--color-line);
}

.compose-tools {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.compose-icon-button {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 0;
  border-radius: var(--radius-sm);
  background: transparent;
  color: #7890a0;
  font-weight: 900;
}

.compose-icon-button svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.compose-icon-button:hover {
  background: var(--color-surface-soft);
  color: var(--color-primary);
}

.post-button {
  min-height: 40px;
  padding: 0 var(--space-5);
  border: 0;
  border-radius: 999px;
  background: var(--trust-gradient);
  color: #fff;
  box-shadow: 0 20px 44px rgba(15, 23, 42, 0.18), inset 0 1px 0 rgba(255,255,255,0.38);
  font-weight: 900;
}

.secondary-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: var(--space-3);
}

.text-button {
  min-height: 36px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--color-muted);
  font-weight: 800;
}

.save-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.event-delete-actions {
  display: flex;
  justify-content: flex-end;
  width: 100%;
  margin-top: var(--space-4);
}

.event-delete-button {
  min-width: 180px;
}

.status-line {
  min-height: 24px;
  margin-top: var(--space-3);
  color: var(--color-muted);
  font-weight: 700;
}







/* Trust glass theme: shared default surfaces and empty image states. */
.event-card,
.detail-main,
.detail-aside,
.admin-panel,
.admin-list,
.admin-preview,
.settings-header-editor,
.image-box,
.song-link-preview,
.empty-state,
.error-state {
  border-color: var(--glass-border);
  background: var(--glass-surface);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(20px);
}

.card-media,
.text-card .setlist-preview,
.settings-cover-preview,
.image-box > div {
  background:
    var(--trust-sheen),
    var(--trust-gradient);
}

.settings-cover-preview,
.public-cover {
  overflow: hidden;
}

.settings-cover-preview::after,
.public-cover::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 0 10%, rgba(255,255,255,0.16) 10% 11%, transparent 11% 28%, rgba(255,255,255,0.1) 28% 29%, transparent 29%),
    linear-gradient(180deg, rgba(255,255,255,0.2), transparent 42%);
  content: '';
  pointer-events: none;
}

.public-cover {
  position: relative;
}

.settings-logo-preview.empty-brand-mark,
.public-avatar.empty-brand-mark,
.brand-mark.empty-brand-mark {
  background: var(--trust-gradient);
}

.primary-button,
.post-button {
  background: linear-gradient(135deg, var(--color-primary), #0f766e);
  box-shadow: 0 14px 30px rgba(30, 58, 138, 0.18);
}

.primary-button:hover,
.post-button:hover {
  background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary));
}

.tag-chip,
.total-song-count,
.detail-button-pill,
.public-song-links .song-link-pill,
.status-line:not(:empty) {
  border-color: rgba(30, 58, 138, 0.14);
  background: rgba(219, 234, 254, 0.7);
}

/* Public UX polish: clear card affordance, readable details, and safe touch targets. */
.event-card {
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.event-card:hover,
.event-card:focus-within {
  border-color: color-mix(in srgb, var(--color-primary) 36%, var(--color-line));
  box-shadow: 0 22px 48px rgba(var(--color-shadow) / 0.16);
  transform: translateY(-2px);
}

.event-card-link {
  min-height: 100%;
  outline: none;
}

.event-card-link:focus-visible {
  box-shadow: var(--focus-ring);
}

.detail-button-pill {
  min-height: 36px;
  padding: 0 var(--space-3);
  border-radius: 999px;
  background: var(--color-primary-soft);
}

.visual-icon {
  pointer-events: none;
}

.total-song-count {
  display: inline-flex;
  width: fit-content;
  min-height: 30px;
  align-items: center;
  padding: 0 var(--space-3);
  border-radius: 999px;
  background: var(--color-surface-soft);
  color: var(--color-primary-dark);
  font-size: 13px;
  font-weight: 900;
}

.public-song-links .song-link-pill {
  min-height: 36px;
  padding: 0 var(--space-3);
  border-color: color-mix(in srgb, var(--color-primary) 36%, var(--color-line));
  background: var(--color-primary-soft);
  color: var(--color-primary-dark);
}

.detail-breadcrumb .back-button {
  min-height: 40px;
  padding: 0 var(--space-3);
  border: 1px solid var(--glass-border);
  border-radius: 999px;
  background: var(--glass-surface);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.1);
  color: var(--color-primary-dark);
  font-weight: 900;
  backdrop-filter: blur(18px);
}

.detail-breadcrumb .back-button::before {
  content: none;
}

.detail-breadcrumb .back-button span {
  margin-right: 4px;
}

.setlist li:last-child {
  border-bottom: 0;
}

.empty-state,
.error-state {
  margin: var(--space-5) 0;
  padding: var(--space-5);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  background: var(--glass-surface);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(20px);
  color: var(--color-muted);
  font-weight: 800;
}

@media (max-width: 680px) {
  .event-card:hover,
  .event-card:focus-within {
    transform: none;
  }

  .event-card-link {
    min-height: 100%;
  }

  .card-body {
    gap: var(--space-3);
    padding: var(--space-4);
  }

  .detail-button-pill {
    min-height: 40px;
  }

  .card-actions .icon-button {
    width: 40px;
    height: 40px;
  }

  .detail-flow {
    gap: var(--space-4);
  }

  .detail-main,
  .detail-aside {
    padding: var(--space-4);
  }

  .setlist li {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: var(--space-2);
    align-items: start;
    padding: var(--space-3) 0;
  }

  .public-song-links {
    gap: var(--space-2);
  }

  .public-song-links .song-link-pill {
    min-height: 40px;
  }
}

/* UI/UX polish: touch targets, feedback, and mobile-safe controls. */
button:disabled,
input:disabled,
select:disabled,
textarea:disabled {
  cursor: not-allowed;
}

button:disabled {
  opacity: 0.62;
}

.admin-panel.is-busy,
.settings-admin-layout .admin-panel.is-busy {
  position: relative;
}

.admin-panel.is-busy::after {
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: inherit;
  background: rgba(255, 255, 255, 0.36);
  content: '';
  pointer-events: none;
}

.status-line:not(:empty) {
  display: flex;
  min-height: 44px;
  align-items: center;
  padding: 0 var(--space-3);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-sm);
  background: var(--color-primary-soft);
  color: var(--color-primary-dark);
}

.compact-button,
.text-button,
.compose-icon-button,
.mobile-admin-tab,
.admin-icon-tab {
  touch-action: manipulation;
}

.compact-button,
.text-button,
.compose-icon-button {
  min-width: 44px;
  min-height: 44px;
}

.compose-icon-button:active,
.mobile-admin-tab:active,
.admin-icon-tab:active,
.primary-button:active,
.post-button:active,
.ghost-button:active {
  transform: scale(0.97);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

.preview-wrap {
  display: grid;
  gap: var(--space-4);
}

.muted {
  color: var(--color-muted);
}

@media (max-width: 980px) {
  .event-grid,
  .detail-layout,
  .admin-layout,
  .admin-layout.is-editing,
  .song-admin-layout,
  .song-admin-layout.is-editing,
  .settings-admin-layout {
    grid-template-columns: 1fr;
    justify-content: stretch;
  }

  .admin-list {
    position: static;
  }

  .admin-preview {
    order: 2;
  }
}

@media (max-width: 680px) {
  main.shell {
    padding-bottom: calc(128px + env(safe-area-inset-bottom));
  }

  .shell {
    width: min(1180px, calc(100% - 40px));
    padding-right: 16px;
  }

  .page-head,
  .form-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .save-actions,
  .event-delete-actions {
    width: 100%;
  }

  .event-delete-actions {
    justify-content: stretch;
  }

  .save-actions > *,
  .event-delete-button {
    width: 100%;
  }

  .topnav {
    width: auto;
    margin-left: auto;
    padding-right: 18px;
  }

  .topnav a {
    flex: 0 0 auto;
  }

  .topnav a.admin-link {
    margin-left: var(--space-2);
  }

  .event-grid,
  .field-grid,
  .image-fields {
    grid-template-columns: 1fr;
  }

  .field.compact-field {
    margin-bottom: var(--space-2);
  }

  .editor-head {
    margin-bottom: var(--space-3);
  }

  .back-button {
    min-height: 44px;
  }

  .settings-profile-row {
    min-height: 104px;
    padding-inline: var(--space-3);
  }

  .settings-logo-preview {
    left: var(--space-3);
    width: 84px;
    height: 84px;
  }

  .settings-title-preview {
    padding-left: 102px;
  }

  .logo-remove {
    left: 72px;
  }

  .admin-icon-nav {
    display: none;
  }

  .mobile-admin-nav {
    position: fixed;
    right: 18px;
    bottom: max(18px, env(safe-area-inset-bottom));
    left: 18px;
    z-index: 60;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 4px;
    padding: 6px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 28px;
    background:
      linear-gradient(135deg, rgba(15, 23, 42, 0.88), rgba(30, 58, 138, 0.78)),
      rgba(15, 23, 42, 0.82);
    box-shadow: 0 18px 48px rgba(15, 23, 42, 0.34);
    backdrop-filter: blur(22px);
  }

  .mobile-admin-tab {
    display: inline-flex;
    min-width: 0;
    min-height: 58px;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 0 8px;
    border: 0;
    border-radius: 22px;
    background: transparent;
    color: rgba(255, 255, 255, 0.78);
    font-size: 11px;
    font-weight: 900;
  }

  .mobile-admin-tab svg {
    width: 21px;
    height: 21px;
    flex: 0 0 auto;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .mobile-admin-tab span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .mobile-admin-tab[aria-selected='true'] {
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
  }

  .compose-actions {
    position: sticky;
    bottom: calc(98px + env(safe-area-inset-bottom));
    z-index: 15;
    align-items: stretch;
    flex-direction: column;
    margin-inline: calc(var(--space-3) * -1);
    padding: var(--space-3);
    border: 1px solid var(--color-line);
    border-radius: var(--radius-lg);
    background: rgba(255, 254, 254, 0.94);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(18px);
  }

  .compose-tools {
    justify-content: space-between;
    gap: var(--space-2);
  }

  .post-button {
    width: 100%;
    min-height: 48px;
  }

  .tag-input-row {
    grid-template-columns: 1fr;
  }

  .page-title {
    font-size: 36px;
  }

  .card-footer {
    padding-right: 28px;
  }

  .public-profile-header {
    margin-inline: 0;
    border-radius: var(--radius-lg);
  }

  .public-cover {
    min-height: 132px;
  }

  .public-profile-body {
    width: calc(100% - 40px);
    padding-top: 46px;
  }

  .public-avatar {
    top: -44px;
    width: 88px;
    height: 88px;
    font-size: 28px;
  }

  .public-profile-title {
    max-width: calc(100% - 82px);
    font-size: 34px;
  }

  .public-profile-copy {
    font-size: 15px;
  }
}
