.newsletter-page {
  min-height: 100vh;
  color: #1d292c;
  background: #eee9df;
  font-family: Georgia, 'Times New Roman', serif;
}

.newsletter-bar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px clamp(16px, 4vw, 52px);
  border-bottom: 1px solid #b9b1a2;
  background: rgba(245, 241, 232, .94);
  backdrop-filter: blur(12px);
}

.newsletter-bar strong {
  font-family: Arial, sans-serif;
  color: #154b56;
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.newsletter-actions {
  display: flex;
  gap: 8px;
}

.newsletter-action {
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid #154b56;
  color: #154b56;
  background: transparent;
  font-family: Arial, sans-serif;
  font-weight: 800;
}

.newsletter-action.dark {
  color: #fff;
  background: #154b56;
}

.newspaper {
  width: min(1320px, calc(100% - 32px));
  margin: 22px auto 42px;
  padding: clamp(20px, 4vw, 48px);
  border: 1px solid #c6bcab;
  background:
    linear-gradient(rgba(255,255,255,.5), rgba(255,255,255,.5)),
    repeating-linear-gradient(0deg, rgba(57,45,31,.018) 0, rgba(57,45,31,.018) 1px, transparent 1px, transparent 4px),
    #f7f2e7;
  box-shadow: 0 24px 60px rgba(40, 34, 26, .16);
}

.newspaper-masthead {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: end;
  gap: 18px;
  padding-bottom: 14px;
  border-bottom: 5px double #222;
}

.newspaper-edition,
.newspaper-date {
  font-family: Arial, sans-serif;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.newspaper-date {
  text-align: right;
}

.newspaper-title {
  margin: 0;
  color: #0f4652;
  font-size: clamp(2.8rem, 7vw, 6.5rem);
  line-height: .78;
  text-align: center;
  letter-spacing: 0;
}

.newspaper-deck {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(250px, .65fr);
  gap: 26px;
  padding: 22px 0;
  border-bottom: 1px solid #39342c;
}

.newspaper-deck h2 {
  margin: 0 0 8px;
  max-width: 920px;
  font-size: clamp(2rem, 4.6vw, 4.5rem);
  line-height: .96;
}

.newspaper-deck p {
  margin: 0;
  color: #50493e;
  font-size: 1.02rem;
  line-height: 1.55;
}

.newspaper-note {
  align-self: stretch;
  padding: 18px;
  border-left: 1px solid #39342c;
  font-style: italic;
}

.opinion-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 0;
  margin-top: 22px;
  border-top: 1px solid #39342c;
  border-left: 1px solid #39342c;
}

.opinion-column {
  grid-column: span 4;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 16px;
  border-right: 1px solid #39342c;
  border-bottom: 1px solid #39342c;
}

.opinion-column.featured {
  grid-column: span 8;
}

.opinion-cover {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border: 1px solid #777065;
  filter: saturate(.82) contrast(1.02);
}

.opinion-kicker {
  color: #bf5b43;
  font-family: Arial, sans-serif;
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.opinion-column h3 {
  margin: 0;
  color: #1e292b;
  font-size: clamp(1.35rem, 2.1vw, 2.2rem);
  line-height: 1.02;
}

.opinion-column p {
  margin: 0;
  color: #575044;
  line-height: 1.48;
}

.opinion-read {
  width: max-content;
  margin-top: auto;
  padding: 0 0 4px;
  border-bottom: 2px solid #0f6671;
  color: #0f6671;
  background: transparent;
  font-family: Arial, sans-serif;
  font-weight: 900;
}

.newsletter-reader {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  background: rgba(18, 22, 23, .96);
}

.newsletter-reader.hidden {
  display: none;
}

.reader-head {
  width: 100%;
  min-width: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 16px;
  color: white;
  background: #103f49;
  font-family: Arial, sans-serif;
}

.reader-head h3 {
  min-width: 0;
  flex: 1 1 auto;
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 1rem;
}

.reader-close {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  border-radius: 50%;
  color: #103f49;
  background: white;
  font-size: 1.35rem;
  font-weight: 900;
}

#newsletterFrame {
  width: 100%;
  height: 100%;
  border: 0;
  background: white;
}

@media (max-width: 850px) {
  .newspaper-masthead {
    grid-template-columns: 1fr 1fr;
  }

  .newspaper-title {
    grid-column: 1 / -1;
    grid-row: 1;
    margin-bottom: 10px;
  }

  .newspaper-deck {
    grid-template-columns: 1fr;
  }

  .newspaper-note {
    border-left: 0;
    border-top: 1px solid #39342c;
  }

  .opinion-column,
  .opinion-column.featured {
    grid-column: span 6;
  }
}

@media (max-width: 560px) {
  .newsletter-bar {
    align-items: flex-start;
  }

  .newsletter-actions {
    flex-direction: column;
  }

  .newsletter-action {
    min-height: 34px;
  }

  .newspaper {
    width: 100%;
    margin: 0;
    padding: 18px 14px 32px;
    border-left: 0;
    border-right: 0;
  }

  .newspaper-title {
    font-size: 2.7rem;
  }

  .opinion-column,
  .opinion-column.featured {
    grid-column: 1 / -1;
  }
}
