.reader-hero h1,
.reader-hero p,
.reader-check-card,
.reader-question,
.reader-content-grid,
.reader-boundary-note {
  overflow-wrap: break-word;
  word-break: normal;
  hyphens: auto;
}

.reader-check-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr);
  gap: 20px;
  align-items: start;
}

.reader-check-card h2,
.reader-privacy-card h2 {
  margin: 18px 0 10px;
}

.reader-form {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.reader-question {
  padding: 18px;
  border: 1px solid rgba(99, 179, 255, 0.26);
  border-radius: 18px;
  background: rgba(99, 179, 255, 0.08);
  font-size: 1.08rem;
  font-weight: 700;
}

.reader-form label {
  margin-top: 4px;
  font-weight: 700;
}

.reader-form input[type="text"] {
  width: 100%;
  min-height: 52px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  color: var(--text);
  background: rgba(5, 9, 20, 0.72);
  font: inherit;
}

.reader-form input[type="text"]:focus-visible {
  outline: 3px solid rgba(99, 179, 255, 0.45);
  outline-offset: 2px;
}

.reader-form .button {
  width: fit-content;
  min-width: 190px;
  cursor: pointer;
  font: inherit;
}

.reader-help,
.reader-small {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.reader-feedback,
.reader-cooldown,
.reader-boundary-note {
  margin-top: 20px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 191, 105, 0.24);
  border-radius: 16px;
  background: rgba(255, 191, 105, 0.08);
}

.reader-feedback.is-error {
  border-color: rgba(255, 133, 133, 0.32);
  background: rgba(255, 105, 105, 0.1);
}

.reader-cooldown h3 {
  margin: 0 0 6px;
}

.reader-cooldown p,
.reader-boundary-note p {
  margin: 0;
}

.reader-access-badge {
  display: inline-flex;
  padding: 7px 12px;
  border: 1px solid rgba(133, 240, 208, 0.3);
  border-radius: 999px;
  color: var(--accent-2);
  background: rgba(133, 240, 208, 0.08);
  font-size: 0.9rem;
  font-weight: 700;
}

.reader-content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
}

.reader-content-entry {
  max-width: 920px;
}

.reader-content-entry h3 {
  font-size: clamp(1.45rem, 3vw, 2rem);
}

.reader-entry-lead {
  color: var(--accent-2);
  font-size: 1.1rem;
  font-weight: 800;
}

.reader-update-list {
  margin: 20px 0 0;
}

.reader-entry-note {
  margin: 22px 0 0;
  padding: 16px 18px;
  border-left: 4px solid #ffbf69;
  border-radius: 10px;
  background: rgba(255, 191, 105, 0.09);
}

.reader-privacy-card {
  position: sticky;
  top: 98px;
}

@media (max-width: 860px) {
  .reader-check-layout,
  .reader-content-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .reader-privacy-card {
    position: static;
  }
}

@media (max-width: 520px) {
  .reader-hero h1 {
    font-size: clamp(2rem, 8.5vw, 2.25rem);
  }

  .reader-form .button {
    width: 100%;
  }
}
