:root {
  --bg: #050505;
  --panel: #101010;
  --text: #f7f2eb;
  --muted: #c7bfb3;
  --line: #343434;
  --input-bg: #090909;
  --list-bg: #070707;
  --header-bg: rgba(5, 5, 5, 0.88);
  --header-bg-solid: rgba(5, 5, 5, 0.98);
  --logo-line: rgba(255, 255, 255, 0.28);
  --button-line: #ffffff;
  --button-text: #ffffff;
  --secondary-bg: rgba(0, 0, 0, 0.28);
  --entry-overlay: linear-gradient(90deg, rgba(0,0,0,0.82), rgba(0,0,0,0.48), rgba(0,0,0,0.22));
  --hero-overlay: linear-gradient(90deg, rgba(0,0,0,0.84), rgba(0,0,0,0.54), rgba(0,0,0,0.22));
  --hero-copy: #f7f2eb;
}

.entry-content {
  margin-left: clamp(18px, 7vw, 96px);
  margin-right: auto;
  text-align: left;
}

.entry-logo {
  margin-left: 0;
  margin-right: 0;
}

.entry-copy {
  margin-left: 0;
}

.entry-actions {
  justify-content: flex-start;
}

@media (max-width: 640px) {
  .entry-content {
    margin-left: 0;
    text-align: center;
  }

  .entry-logo,
  .entry-copy {
    margin-left: auto;
    margin-right: auto;
  }

  .entry-actions {
    justify-content: center;
  }
}
