body {
  background-color: #8b2835; /* maroon behind the newspaper */
  margin: 0;
  padding: 0;
}
.paper-wrap {
  width: 55em;
  margin: 8% auto;
  background: #f5f3ee;
  border: 2px solid #000;
  box-shadow:
    0 6px 0 #000,
    0 12px 24px rgba(0,0,0,0.35);
}

/* =========================
   NAVIGATION
   ========================= */
.newspaper-nav {
  display: flex;
  justify-content: center;
  gap: 2em;
  margin-bottom: 2em;
  font-family: "Times New Roman", Georgia, serif;
  font-weight: bold;
  font-size: 14px;
  text-transform: uppercase;
}

.newspaper-nav a {
  text-decoration: none;
  color: #111;
  border-bottom: 1px solid transparent;
  transition: border-bottom 0.2s;
}

.newspaper-nav a:hover {
  border-bottom: 1px solid #000;
}

/* =========================
   TEXT STYLING
   ========================= */
.newspaper {
  font-family: "Times New Roman", Georgia, serif;
  color: #111;
  text-align: center;
}

/* HEADLINE */
.newspaper h1, .newspaper h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 0.2em;
}

/* SUBHEAD */
.newspaper .subhead {
  font-size: 14px;
  font-style: italic;
  border-bottom: 1px solid #000;
  padding-bottom: 6px;
  margin-bottom: 1.5em;
}

/* BYLINE */
.newspaper .byline {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1em;
}

/* ARTICLE COLUMNS */
.newspaper .article {
  column-count: 2;
  column-gap: 2em;
  font-size: 15px;
  line-height: 1.6;
  text-align: justify;
}

/* PULL QUOTE */
.pull-quote {
  font-style: italic;
  font-size: 16px;
  border-left: 3px solid #000;
  padding-left: 1em;
  margin: 1.5em auto;
}

/* RATING */
.rating {
  font-weight: bold;
  text-align: center;
  border: 1px solid #000;
  padding: 8px;
  margin: 2em auto;
  width: fit-content;
  letter-spacing: 1px;
}

/* PADDING INSIDE PAPER */
.paper-wrap .content {
  padding: 4em 4.5em;
}

/* =========================
   PAST REVIEW TABS
   ========================= */
.past-reviews input[type="radio"] {
  display: none;
}

.past-review-tabs {
  text-align: center;
  margin: 2em 0 1em 0;
}

.past-review-tab {
  display: inline-block;
  background: #f5f3ee;
  border: 1px solid #000;
  padding: 6px 10px;
  margin: 0 5px;
  cursor: pointer;
  font-family: "Times New Roman", Georgia, serif;
  font-size: 14px;
  transition: background 0.2s;
}

.past-review-tab:hover {
  background: #e0ddd4;
}

.past-review-content {
  display: none;
  margin-top: 1em;
  border-top: 1px solid #000;
  padding-top: 1em;
}

/* SHOW CONTENT BASED ON RADIO BUTTON SELECTION */
#review1:checked ~ .past-review-tabs ~ #content1,
#review2:checked ~ .past-review-tabs ~ #content2,
#review3:checked ~ .past-review-tabs ~ #content3 {
  display: block;
}
