:root {
  --bg: #f4ede4;
  --bg-strong: #efe4d7;
  --surface: rgba(255, 248, 241, 0.6);
  --surface-strong: rgba(255, 248, 241, 0.9);
  --surface-solid: #fbf5ef;
  --ink: #241614;
  --muted: #69534f;
  --line: rgba(88, 54, 44, 0.14);
  --line-strong: rgba(88, 54, 44, 0.24);
  --red: #a51c30;
  --red-soft: #c24753;
  --gold: #d7b49e;
  --shadow: 0 24px 60px rgba(70, 31, 25, 0.12);
  --glass-shadow: 0 22px 60px rgba(72, 35, 28, 0.14);
  --radius: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --font-display: "Fraunces", "Cormorant Garamond", serif;
  --font-serif: "Cormorant Garamond", serif;
  --font-sans: "Manrope", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-sans);
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(165, 28, 48, 0.12), transparent 30%),
    radial-gradient(circle at top right, rgba(215, 180, 158, 0.32), transparent 32%),
    linear-gradient(180deg, #f6efe7 0%, #f3ebdf 45%, #efe6d9 100%);
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

.site-root {
  padding: 24px;
}

.page-shell,
.dashboard-shell {
  width: min(1240px, 100%);
  margin: 0 auto;
}

.page-shell {
  padding-top: 120px;
  padding-bottom: 48px;
}

.floating-header {
  position: fixed;
  inset: 18px 18px auto;
  z-index: 50;
}

.glass-shell,
.glass-panel {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.34);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.32), rgba(255, 255, 255, 0.12)),
    rgba(251, 245, 239, 0.46);
  backdrop-filter: blur(22px) saturate(140%);
  box-shadow: var(--glass-shadow);
}

.glass-shell::before,
.glass-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45), inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.glass-shell {
  width: min(1240px, calc(100vw - 36px));
  margin: 0 auto;
  border-radius: 999px;
  padding: 12px 16px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
}

.brand-lockup {
  width: clamp(140px, 18vw, 190px);
}

.site-menu {
  display: flex;
  justify-content: center;
  gap: 10px;
  align-items: center;
}

.nav-cluster {
  position: relative;
}

.nav-pill,
.nav-dropdown-toggle,
.account-chip {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 10px 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.nav-pill:hover,
.nav-dropdown-toggle:hover,
.account-chip:hover,
.nav-cluster.is-open .nav-dropdown-toggle {
  transform: translateY(-1px);
  border-color: rgba(165, 28, 48, 0.28);
  background: rgba(255, 255, 255, 0.28);
}

.nav-pill.is-active {
  color: var(--red);
  border-color: rgba(165, 28, 48, 0.26);
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  width: 320px;
  padding: 12px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(251, 245, 239, 0.86);
  backdrop-filter: blur(24px);
  box-shadow: var(--glass-shadow);
  display: none;
  gap: 8px;
}

.nav-cluster.is-open .nav-dropdown {
  display: grid;
}

.nav-dropdown-link {
  padding: 12px 14px;
  border-radius: 16px;
  display: grid;
  gap: 4px;
  background: rgba(255, 255, 255, 0.2);
}

.nav-dropdown-link:hover,
.nav-dropdown-link.is-active {
  background: rgba(165, 28, 48, 0.08);
}

.nav-dropdown-link small {
  color: var(--muted);
}

.nav-caret {
  font-size: 0.85rem;
}

.account-chip {
  cursor: pointer;
}

.account-avatar,
.author-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: white;
  background: linear-gradient(135deg, var(--red), #7b1d22);
  font-weight: 700;
  letter-spacing: 0.04em;
}

.account-copy {
  font-size: 0.92rem;
  white-space: nowrap;
}

.mobile-menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  width: 44px;
  height: 44px;
  padding: 0;
  gap: 4px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.mobile-menu-toggle span {
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 999px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 28px;
  align-items: stretch;
  margin-bottom: 44px;
}

.hero-copy,
.feature-story,
.bio-card,
.contact-card,
.article-body-card,
.author-box,
.game-panel,
.article-card,
.mini-article,
.archive-group,
.collabora-banner,
.dashboard-note,
.queue-card,
.draft-item,
.dashboard-sidebar,
.writer-panel,
.side-panel {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.hero-copy {
  padding: clamp(28px, 5vw, 48px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-copy h1,
.section-hero h1,
.dashboard-banner h1,
.article-banner-copy h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 5.4rem);
  line-height: 0.95;
  margin: 0 0 16px;
  letter-spacing: -0.04em;
}

.hero-copy p,
.section-hero p,
.dashboard-banner p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--muted);
  max-width: 62ch;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--red);
  margin-bottom: 14px;
}

.eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--eyebrow, var(--red));
}

.hero-actions,
.account-actions,
.writer-actions,
.queue-actions,
.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.primary-button,
.secondary-button,
.queue-actions button {
  border-radius: 999px;
  padding: 12px 18px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 180ms ease, opacity 180ms ease, border-color 180ms ease;
}

.primary-button,
.queue-actions button:first-child {
  background: var(--red);
  color: white;
}

.secondary-button,
.queue-actions button {
  background: rgba(255, 255, 255, 0.2);
  border-color: var(--line);
}

.primary-button:hover,
.secondary-button:hover,
.queue-actions button:hover {
  transform: translateY(-1px);
}

.primary-button.small {
  padding: 10px 14px;
}

.feature-story {
  position: relative;
  min-height: 520px;
  overflow: hidden;
}

.feature-overlay {
  position: absolute;
  inset: auto 0 0;
  padding: 34px;
  background: linear-gradient(180deg, transparent, rgba(16, 10, 8, 0.72));
  color: white;
}

.feature-overlay h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3.6rem);
  line-height: 0.98;
  margin: 0 0 10px;
}

.feature-overlay p,
.feature-overlay .meta-row {
  color: rgba(255, 255, 255, 0.82);
}

.editorial-image {
  position: relative;
  min-height: 230px;
  border-radius: calc(var(--radius) - 2px);
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.5), transparent 32%),
    linear-gradient(135deg, var(--tone-a), var(--tone-b) 55%, var(--tone-c));
}

.editorial-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.12), transparent 40%),
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.22), transparent 0 26%);
  mix-blend-mode: screen;
}

.editorial-image.is-large {
  min-height: 520px;
}

.editorial-image-kicker,
.editorial-image-word {
  position: absolute;
  z-index: 1;
}

.editorial-image-kicker {
  left: 20px;
  top: 16px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  text-transform: uppercase;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
}

.editorial-image-word {
  right: 18px;
  bottom: 16px;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  color: rgba(255, 255, 255, 0.88);
  letter-spacing: -0.06em;
}

.grid-section,
.section-band,
.games-band,
.archive-listing,
.archive-groups {
  margin-top: 26px;
}

.section-header,
.section-band-head,
.panel-head,
.archive-group-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 16px;
  margin-bottom: 18px;
}

.section-header h2,
.section-band-head h2,
.panel-head h2,
.archive-group-head h2,
.bio-card h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}

.text-link,
.game-arrow {
  color: var(--red);
  font-weight: 700;
}

.article-grid,
.games-grid,
.team-grid,
.contacts-grid,
.bio-panel,
.dashboard-grid {
  display: grid;
  gap: 18px;
}

.article-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.games-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.games-grid.wide {
  margin-top: 12px;
}

.game-panel {
  padding: 24px;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  gap: 8px;
  position: relative;
  overflow: hidden;
}

.game-panel::before {
  content: "";
  position: absolute;
  inset: auto -10% -50% auto;
  width: 180px;
  height: 180px;
  border-radius: 36px;
  background: linear-gradient(135deg, rgba(165, 28, 48, 0.18), rgba(215, 180, 158, 0.08));
  transform: rotate(24deg);
}

.game-panel h3,
.article-card h3,
.mini-article h4,
.author-box h3,
.team-card h3,
.contact-card h3,
.queue-card h4,
.draft-item h4 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.8rem;
}

.game-panel p,
.article-card p,
.mini-article p,
.team-card p,
.contact-card p,
.bio-card p,
.article-body-card p,
.queue-card p,
.draft-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.article-card {
  overflow: hidden;
}

.article-card-link {
  display: grid;
  gap: 0;
}

.article-card .editorial-image {
  min-height: 220px;
  border-radius: 0;
}

.article-card-body {
  padding: 22px;
  display: grid;
  gap: 10px;
}

.article-card.is-compact {
  min-width: 320px;
}

.article-card.is-compact .editorial-image {
  min-height: 180px;
}

.horizontal-strip {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(320px, 1fr);
  gap: 18px;
  overflow-x: auto;
  padding-bottom: 8px;
}

.collabora-banner {
  margin-top: 28px;
  padding: 28px 30px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}

.section-hero {
  padding: 42px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: linear-gradient(140deg, rgba(255, 248, 241, 0.85), rgba(255, 244, 236, 0.58));
  box-shadow: var(--shadow);
}

.archive-stack,
.privacy-stack,
.queue-stack,
.draft-history {
  display: grid;
  gap: 14px;
}

.mini-article {
  grid-template-columns: 180px 1fr;
  display: grid;
  gap: 18px;
  padding: 16px;
  align-items: stretch;
}

.mini-article .editorial-image {
  min-height: 140px;
}

.article-layout {
  display: grid;
  gap: 22px;
}

.article-banner {
  position: relative;
  min-height: 560px;
  border-radius: var(--radius);
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 255, 255, 0.24), transparent 24%),
    linear-gradient(140deg, var(--tone-a), var(--tone-b) 52%, var(--tone-c));
}

.article-banner-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(19, 12, 10, 0.05), rgba(19, 12, 10, 0.7));
}

.article-banner-copy {
  position: absolute;
  inset: auto 0 0;
  padding: 46px;
  color: white;
  z-index: 1;
}

.article-banner-copy h2 {
  margin: 0 0 14px;
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.84);
}

.article-banner-copy p {
  max-width: 60ch;
  color: rgba(255, 255, 255, 0.85);
}

.article-meta-box {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  padding: 18px 22px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.3);
}

.article-body-card {
  padding: clamp(24px, 4vw, 42px);
}

.article-body-card p {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  line-height: 1.75;
  color: #3e2c27;
  margin-bottom: 1.2em;
}

.article-callout {
  margin: 28px 0;
  padding: 18px 22px;
  border-left: 4px solid var(--red);
  background: rgba(165, 28, 48, 0.06);
  font-family: var(--font-display);
  font-size: 1.6rem;
  line-height: 1.35;
}

.article-figure {
  margin: 34px 0;
}

.article-figure-media,
.inline-editor-figure img {
  min-height: 280px;
  border-radius: 24px;
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(165, 28, 48, 0.16), rgba(215, 180, 158, 0.28)),
    var(--surface-solid);
  color: var(--red);
  font-family: var(--font-display);
  font-size: 2rem;
}

.article-figure figcaption,
.inline-editor-figure figcaption {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.95rem;
}

.author-box {
  padding: 24px;
  display: flex;
  gap: 18px;
  align-items: start;
}

.bio-panel {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 24px;
}

.bio-card,
.contact-card,
.team-card {
  padding: 24px;
}

.team-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 24px;
}

.contacts-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 22px;
}

.account-modal {
  position: fixed;
  inset: 0;
  background: rgba(34, 20, 18, 0.36);
  backdrop-filter: blur(6px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 120;
  padding: 24px;
}

.account-modal.is-open {
  display: flex;
}

.account-dialog {
  width: min(640px, 100%);
  border-radius: var(--radius);
  padding: 28px;
}

.modal-close {
  margin-left: auto;
  display: block;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.24);
  cursor: pointer;
  font-size: 1.4rem;
}

.account-form,
.writer-form {
  display: grid;
  gap: 16px;
}

.writer-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.account-form label,
.writer-form label {
  display: grid;
  gap: 8px;
}

.account-form span,
.writer-form span {
  font-size: 0.92rem;
  color: var(--muted);
}

input,
textarea,
select,
.editor-surface {
  width: 100%;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.38);
  color: var(--ink);
}

.optional-block {
  padding: 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px dashed var(--line-strong);
  display: grid;
  gap: 14px;
}

.account-summary {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 0;
}

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

.dashboard-root {
  padding-top: 18px;
}

.dashboard-shell {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 22px;
  align-items: start;
}

.dashboard-sidebar,
.dashboard-banner,
.writer-panel,
.side-panel {
  padding: 22px;
}

.dashboard-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.dashboard-logo img {
  width: 120px;
}

.dashboard-user {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 16px 0 20px;
  border-bottom: 1px solid var(--line);
}

.role-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.role-pill {
  border-radius: 999px;
  padding: 7px 10px;
  background: rgba(165, 28, 48, 0.08);
  color: var(--red);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.dashboard-nav {
  display: grid;
  gap: 8px;
  margin-top: 18px;
}

.dash-nav-item {
  text-align: left;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid transparent;
  background: transparent;
  cursor: pointer;
}

.dash-nav-item.is-active,
.dash-nav-item:hover {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.22);
}

.dashboard-content {
  display: grid;
  gap: 18px;
}

.dashboard-note {
  padding: 18px;
  min-width: 260px;
}

.dashboard-grid {
  grid-template-columns: minmax(0, 2fr) minmax(340px, 0.95fr);
}

.dashboard-grid.single-column {
  grid-template-columns: 1fr;
}

.dashboard-grid.lower {
  align-items: start;
}

.dashboard-panel.is-hidden {
  display: none;
}

.editor-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.editor-toolbar button,
.editor-toolbar select {
  width: auto;
}

.editor-surface {
  min-height: 360px;
  line-height: 1.65;
  background: rgba(255, 255, 255, 0.48);
}

.inline-editor-figure {
  margin: 24px 0;
}

.queue-card,
.draft-item {
  padding: 18px;
}

.queue-actions button {
  font-size: 0.9rem;
}

.draft-history {
  max-height: 520px;
  overflow-y: auto;
}

.compact {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.site-footer {
  width: min(1240px, 100%);
  margin: 16px auto 36px;
  padding: 28px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255, 248, 241, 0.44);
  box-shadow: var(--shadow);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.8fr;
  gap: 18px;
}

.footer-brand {
  display: grid;
  gap: 12px;
}

.footer-brand img {
  width: 220px;
}

.footer-grid h4 {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-size: 1.4rem;
}

.footer-grid a,
.footer-brand p,
.footer-bottom {
  color: var(--muted);
}

.footer-grid a {
  display: block;
  margin-bottom: 10px;
}

.footer-bottom {
  padding-top: 18px;
  margin-top: 18px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

/* Compatibility layer for existing giochi landing */
.site-header,
.header-inner,
.site-nav,
.footer-inner,
.footer-top,
.footer-col,
.page-container,
.display-lg,
.label-lg,
.body-md,
.section-title,
.tagline,
.masthead-logo {
  all: unset;
}

.site-header {
  display: block;
}

.header-inner,
.footer-top,
.footer-inner {
  display: grid;
}

.site-nav {
  display: flex;
  gap: 16px;
}

.masthead-logo img {
  width: 180px;
}

.page-container {
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto;
}

.display-lg {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 5rem);
  line-height: 0.96;
}

.label-lg,
.body-md,
.section-title,
.tagline {
  display: block;
}

.label-lg {
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  margin-bottom: 12px;
}

.body-md,
.tagline {
  color: var(--muted);
  line-height: 1.6;
}

.section-title {
  font-family: var(--font-display);
  font-size: 2rem;
}

.nav-toggle {
  display: none;
}

.fade-in.visible {
  opacity: 1;
}

@media (max-width: 1100px) {
  .hero-grid,
  .dashboard-grid,
  .footer-grid,
  .games-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .contacts-grid,
  .article-grid,
  .bio-panel,
  .compact,
  .dashboard-shell {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .site-root {
    padding: 16px;
  }

  .glass-shell {
    grid-template-columns: auto auto;
    border-radius: 28px;
  }

  .site-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    right: 0;
    padding: 16px;
    border-radius: 28px;
    background: rgba(251, 245, 239, 0.9);
    box-shadow: var(--glass-shadow);
    display: none;
    flex-direction: column;
    align-items: stretch;
  }

  .site-menu.is-open {
    display: flex;
  }

  .mobile-menu-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .account-chip {
    grid-column: 1 / -1;
    justify-content: center;
  }

  .nav-dropdown {
    position: static;
    width: 100%;
    margin-top: 10px;
  }

  .page-shell {
    padding-top: 108px;
  }

  .hero-copy h1,
  .section-hero h1,
  .dashboard-banner h1,
  .article-banner-copy h1 {
    font-size: clamp(2.3rem, 10vw, 3.6rem);
  }

  .feature-story,
  .editorial-image.is-large,
  .article-banner {
    min-height: 420px;
  }

  .article-banner-copy,
  .hero-copy,
  .section-hero,
  .site-footer,
  .dashboard-sidebar,
  .dashboard-banner,
  .writer-panel,
  .side-panel {
    padding: 22px;
  }

  .mini-article,
  .collabora-banner,
  .author-box,
  .writer-row {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: stretch;
  }
}

@media (max-width: 540px) {
  .page-shell {
    padding-top: 98px;
  }

  .glass-shell {
    width: calc(100vw - 24px);
    gap: 12px;
    padding: 10px 12px;
  }

  .brand-lockup {
    width: 136px;
  }

  .account-copy {
    display: none;
  }

  .article-body-card p {
    font-size: 1.14rem;
  }
}
