/* ==============================
   Newspaper Tribute Page Styles
   ============================== */

/* MASTHEAD */
.newspaper-masthead {
  background: #000;
  color: #fff;
  padding: 50px 0 30px;
  border-top: 5px solid #666;
  border-bottom: 3px double #666;
  font-family: 'Times New Roman', serif;
}

.newspaper-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 30px;
}

.newspaper-name h1 {
  font-family: 'Times New Roman', serif;
  font-size: 3.5rem;
  font-weight: bold;
  margin: 0;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.paper-subtitle {
  font-family: 'Times New Roman', serif;
  font-size: 1.2rem;
  margin: 8px 0 0 0;
  opacity: 0.8;
  letter-spacing: 1px;
}

.publication-info {
  text-align: right;
  font-family: 'Times New Roman', serif;
}

.date-line, .volume-info {
  font-size: 1rem;
  margin: 0;
  opacity: 0.9;
}

.current-date {
  font-size: 1.4rem;
  font-weight: bold;
  margin-top: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.masthead-decoration {
  display: flex;
  align-items: center;
  margin: 25px 0;
}

.decoration-line {
  flex: 1;
  height: 2px;
  background: #666;
}

.decoration-star {
  margin: 0 25px;
  font-size: 2.5rem;
  color: #666;
}

.hero-portrait-section {
  text-align: center;
  margin: 30px 0;
}

.hero-portrait-frame {
  display: inline-block;
  border: 3px solid #666;
  padding: 10px;
  background: #fff;
}

.hero-portrait {
  width: 180px;
  height: 240px;
  object-fit: cover;
  filter: grayscale(100%) contrast(1.1) brightness(0.95);
}

.portrait-caption {
  margin-top: 15px;
}

.caption-name {
  font-family: 'Times New Roman', serif;
  font-size: 1.2rem;
  font-weight: bold;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.caption-dates {
  font-family: 'Times New Roman', serif;
  font-size: 1rem;
  margin: 5px 0;
  opacity: 0.8;
}

.caption-award {
  font-family: 'Times New Roman', serif;
  font-size: 0.9rem;
  margin: 0;
  font-style: italic;
}

.main-headline {
  text-align: center;
  margin-top: 40px;
}

.headline-text {
  font-family: 'Times New Roman', serif;
  font-size: 3rem;
  font-weight: bold;
  margin: 0;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.subheadline {
  font-family: 'Times New Roman', serif;
  font-size: 1.5rem;
  margin: 15px 0;
  opacity: 0.9;
  font-weight: normal;
}

.dateline {
  font-family: 'Times New Roman', serif;
  font-size: 1.1rem;
  font-style: italic;
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* NAVIGATION */
.newspaper-nav {
  background: #f5f5f5;
  border-bottom: 2px solid #666;
  padding: 15px 0;
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-brand {
  font-family: 'Times New Roman', serif;
  font-size: 1.1rem;
}

.nav-date {
  font-weight: bold;
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-item {
  margin: 0 20px;
}

.nav-link {
  font-family: 'Times New Roman', serif;
  text-decoration: none;
  color: #333;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 5px 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s ease;
}

.nav-link:hover,
.nav-item.active .nav-link {
  border-bottom-color: #666;
  color: #000;
}

.nav-weather {
  font-family: 'Times New Roman', serif;
  font-size: 0.9rem;
  color: #666;
}

/* MAIN CONTENT LAYOUT */
.newspaper-content {
  padding: 60px 0;
  border-top: 1px solid #ccc;
}

.newspaper-grid {
  display: grid;
  grid-template-columns: 70% 30%;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.main-column {
  background: #fff;
  border: 1px solid #ccc;
  padding: 0;
}

.sidebar-column {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* STORY TYPOGRAPHY */
.lead-story {
  padding: 30px;
  border-bottom: 1px solid #ccc;
}

.story-header {
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 2px solid #666;
}

.story-kicker {
  font-family: 'Arial', sans-serif;
  font-size: 0.9rem;
  font-weight: bold;
  color: #666;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0 0 10px 0;
}

.story-headline {
  font-family: 'Times New Roman', serif;
  font-size: 2.5rem;
  font-weight: bold;
  margin: 0;
  line-height: 1.1;
  color: #000;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.story-byline {
  margin-top: 15px;
  font-family: 'Times New Roman', serif;
  font-size: 0.9rem;
  color: #666;
}

.byline {
  font-weight: bold;
  color: #000;
}

.dateline {
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* COLUMN LAYOUT */
.story-content {
  font-family: 'Times New Roman', serif;
  line-height: 1.6;
  color: #333;
  font-size: 1rem;
}

.story-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 25px;
}

.story-column p {
  margin-bottom: 20px;
  text-align: justify;
}

.drop-cap {
  float: left;
  font-size: 4.5rem;
  line-height: 0.8;
  margin-right: 8px;
  margin-top: 5px;
  font-weight: bold;
  color: #000;
  font-family: 'Times New Roman', serif;
}

.pull-quote {
  background: #f9f9f9;
  border-left: 4px solid #666;
  padding: 20px 25px;
  margin: 30px 0;
  font-style: italic;
  font-size: 1.3rem;
  border-right: 4px solid #666;
}

.pull-quote blockquote {
  margin: 0;
  font-family: 'Times New Roman', serif;
  font-weight: normal;
}

.pull-quote cite {
  display: block;
  margin-top: 15px;
  font-size: 0.9rem;
  font-style: normal;
  color: #666;
  text-align: right;
  font-weight: bold;
}

/* SECONDARY STORIES */
.secondary-stories {
  padding: 30px;
  background: #f9f9f9;
  border-top: 1px solid #ccc;
}

.secondary-story {
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #ddd;
}

.secondary-story:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.secondary-headline {
  font-family: 'Times New Roman', serif;
  font-size: 1.4rem;
  font-weight: bold;
  margin: 0 0 15px 0;
  color: #000;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.secondary-text {
  font-family: 'Times New Roman', serif;
  line-height: 1.6;
  margin: 0;
  color: #333;
  text-align: justify;
}

/* Lead Story Styles */
.lead-story {
  margin-bottom: 40px;
}

.story-header {
  border-bottom: 2px solid #e74c3c;
  padding-bottom: 20px;
  margin-bottom: 30px;
}

.story-kicker {
  font-family: 'Arial', sans-serif;
  font-size: 0.9rem;
  font-weight: bold;
  color: #e74c3c;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 0 0 10px 0;
}

.story-headline {
  font-family: 'Times New Roman', serif;
  font-size: 2.2rem;
  font-weight: bold;
  margin: 0;
  line-height: 1.2;
  color: #2c3e50;
}

.story-byline {
  margin-top: 15px;
  font-family: 'Times New Roman', serif;
  font-size: 0.9rem;
  color: #7f8c8d;
}

.byline {
  font-weight: bold;
  color: #2c3e50;
}

.dateline {
  font-style: italic;
}

/* Story Content */
.story-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  font-family: 'Times New Roman', serif;
  line-height: 1.6;
  color: #2c3e50;
}

.story-column p {
  margin-bottom: 20px;
}

.drop-cap {
  float: left;
  font-size: 4rem;
  line-height: 0.8;
  margin-right: 8px;
  margin-top: 5px;
  font-weight: bold;
  color: #e74c3c;
}

.pull-quote {
  background: #f8f9fa;
  border-left: 4px solid #e74c3c;
  padding: 20px;
  margin: 30px 0;
  font-style: italic;
  font-size: 1.2rem;
}

.pull-quote blockquote {
  margin: 0;
  font-family: 'Times New Roman', serif;
}

.pull-quote cite {
  display: block;
  margin-top: 10px;
  font-size: 0.9rem;
  font-style: normal;
  color: #7f8c8d;
}

/* Secondary Stories */
.secondary-stories {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 40px;
}

.secondary-story {
  background: #f8f9fa;
  padding: 20px;
  border: 1px solid #dee2e6;
}

.secondary-headline {
  font-family: 'Times New Roman', serif;
  font-size: 1.3rem;
  font-weight: bold;
  margin: 0 0 15px 0;
  color: #2c3e50;
}

.secondary-text {
  font-family: 'Times New Roman', serif;
  line-height: 1.6;
  margin: 0;
  color: #2c3e50;
}

/* SIDEBAR ELEMENTS */
.hero-portrait-box {
  background: #fff;
  border: 1px solid #ccc;
  text-align: center;
  margin-bottom: 30px;
}

.hero-portrait {
  width: 100%;
  max-width: 180px;
  height: auto;
  border: 2px solid #666;
  filter: grayscale(100%) contrast(1.1) brightness(0.95);
}

.portrait-caption {
  padding: 15px;
  font-family: 'Times New Roman', serif;
}

.portrait-caption p {
  margin: 5px 0;
  font-weight: bold;
  color: #000;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.caption-date {
  font-size: 0.9rem;
  color: #666;
  font-weight: normal;
  text-transform: none;
  letter-spacing: normal;
}

/* FACTS BOX */
.facts-box {
  background: #f9f9f9;
  border: 1px solid #ccc;
  margin-bottom: 30px;
}

.facts-title {
  font-family: 'Arial', sans-serif;
  font-size: 1rem;
  font-weight: bold;
  color: #000;
  margin: 0;
  padding: 15px;
  background: #666;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-align: center;
}

.facts-list {
  list-style: none;
  padding: 20px;
  margin: 0;
}

.facts-list li {
  padding: 8px 0;
  border-bottom: 1px solid #ddd;
  font-size: 1rem;
  color: #333;
}

.facts-list li:last-child {
  border-bottom: none;
}

.facts-list strong {
  color: #000;
  font-weight: bold;
}

/* TIMELINE */
.timeline-box {
  background: #fff;
  border: 1px solid #ccc;
  margin-bottom: 30px;
}

.timeline-title {
  font-family: 'Arial', sans-serif;
  font-size: 1rem;
  font-weight: bold;
  color: #000;
  margin: 0;
  padding: 15px;
  background: #666;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-align: center;
}

.timeline-item {
  display: flex;
  padding: 15px 20px;
  border-bottom: 1px solid #eee;
}

.timeline-item:last-child {
  border-bottom: none;
}

.timeline-date {
  font-weight: bold;
  color: #666;
  min-width: 60px;
  margin-right: 15px;
  font-size: 0.9rem;
}

.timeline-event {
  margin: 0;
  color: #333;
  line-height: 1.4;
  font-size: 0.9rem;
}

/* Facts Box */
.facts-box {
  background: white;
  padding: 20px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  border: 1px solid #dee2e6;
}

.facts-title {
  font-family: 'Arial', sans-serif;
  font-size: 1.1rem;
  font-weight: bold;
  color: #e74c3c;
  margin: 0 0 15px 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.facts-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.facts-list li {
  padding: 8px 0;
  border-bottom: 1px solid #ecf0f1;
  font-size: 1rem;
}

.facts-list li:last-child {
  border-bottom: none;
}

.facts-list strong {
  color: #2c3e50;
}

/* Timeline */
.timeline-box {
  background: white;
  padding: 20px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  border: 1px solid #dee2e6;
}

.timeline-title {
  font-family: 'Arial', sans-serif;
  font-size: 1.1rem;
  font-weight: bold;
  color: #e74c3c;
  margin: 0 0 15px 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.timeline-item {
  display: flex;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #ecf0f1;
}

.timeline-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.timeline-date {

  font-weight: bold;
  color: #e74c3c;
  min-width: 60px;
  margin-right: 15px;
}

.timeline-event {
  margin: 0;
  color: #2c3e50;
  line-height: 1.4;
}

/* PHOTO ESSAY SECTION */
.photo-essay {
  grid-column: 1 / -1;
  margin-top: 50px;
  background: #f9f9f9;
  border: 1px solid #ccc;
  padding: 40px;
}

.photo-essay-header {
  text-align: center;
  margin-bottom: 40px;
  border-bottom: 2px solid #666;
  padding-bottom: 20px;
}

.photo-essay-title {
  font-family: 'Arial', sans-serif;
  font-size: 1.8rem;
  font-weight: bold;
  color: #000;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.photo-essay-subtitle {
  font-size: 1.3rem;
  margin: 10px 0 0 0;
  color: #666;
  font-style: italic;
}

.photo-essay-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 30px;
  margin-top: 30px;
}

.photo-essay-item {
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  background: #fff;
  border: 1px solid #ddd;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.photo-essay-item:hover {
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.photo-essay-item.large {
  grid-column: 1;
  grid-row: 1 / -1;
}

.photo-essay-item.wide {
  grid-column: 2 / -1;
  grid-row: 2;
}

.photo-essay-image {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-bottom: 1px solid #ddd;
  filter: grayscale(100%) contrast(1.1) brightness(0.95);
  transition: filter 0.3s ease;
}

.photo-essay-item:hover .photo-essay-image {
  filter: grayscale(80%) contrast(1.1) brightness(1);
}

.photo-essay-caption {
  background: #fff;
  padding: 25px;
  font-family: 'Times New Roman', serif;
  flex-grow: 1;
}

.caption-title {
  font-family: 'Arial', sans-serif;
  font-size: 1rem;
  font-weight: bold;
  color: #000;
  margin: 0 0 12px 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 1px solid #eee;
  padding-bottom: 8px;
}

.caption-text {
  margin: 0;
  color: #333;
  line-height: 1.6;
  font-size: 1rem;
  text-align: left;
}

/* READER TRIBUTES */
.reader-tributes {
  grid-column: 1 / -1;
  margin-top: 50px;
  background: #fff;
  border: 1px solid #ccc;
  padding: 40px;
}

.tributes-section-title {
  font-family: 'Arial', sans-serif;
  font-size: 1.8rem;
  font-weight: bold;
  color: #000;
  margin: 0 0 40px 0;
  text-transform: uppercase;
  letter-spacing: 3px;
  text-align: center;
  border-bottom: 2px solid #666;
  padding-bottom: 15px;
}

.tribute-letters {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.tribute-letter {
  border: 2px solid #666;
  padding: 25px;
  background: #f9f9f9;
  position: relative;
}

.tribute-letter::before {
  content: '"';
  position: absolute;
  top: 15px;
  left: 20px;
  font-size: 4rem;
  color: #666;
  font-family: 'Times New Roman', serif;
  line-height: 0.5;
}

.letter-header {
  border-bottom: 1px solid #999;
  padding-bottom: 15px;
  margin-bottom: 20px;
  margin-left: 40px;
}

.letter-author {
  font-family: 'Times New Roman', serif;
  font-weight: bold;
  color: #000;
  margin: 0;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.letter-title {
  font-family: 'Times New Roman', serif;
  font-size: 0.9rem;
  color: #666;
  margin: 5px 0 0 0;
  font-style: italic;
}

.letter-content {
  margin-left: 40px;
}

.letter-content p {
  font-family: 'Times New Roman', serif;
  line-height: 1.6;
  margin: 0;
  color: #333;
  font-style: italic;
  text-align: justify;
  font-size: 0.95rem;
}

.letters-to-editor {
  text-align: center;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid #ccc;
}

.letters-link {
  font-family: 'Times New Roman', serif;
  color: #000;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 2px solid #666;
  padding-bottom: 5px;
  transition: all 0.3s ease;
}

.letters-link:hover {
  color: #666;
  border-bottom-color: #000;
}

/* LETTERS TO THE EDITOR */
.letters-section {
  grid-column: 1 / -1;
  margin-top: 50px;
  background: #f9f9f9;
  border: 1px solid #ccc;
  padding: 50px 40px;
}

.letters-header {
  text-align: center;
  margin-bottom: 40px;
  border-bottom: 2px solid #666;
  padding-bottom: 20px;
}

.letters-title {
  font-family: 'Arial', sans-serif;
  font-size: 1.8rem;
  font-weight: bold;
  color: #000;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.letters-subtitle {
  font-family: 'Times New Roman', serif;
  font-size: 1.2rem;
  margin: 10px 0 0 0;
  color: #666;
  font-style: italic;
}

.letter-form {
  max-width: 900px;
  margin: 0 auto;
}

.form-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 30px;
}

.form-column .form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-family: 'Times New Roman', serif;
  font-weight: bold;
  color: #000;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 15px;
  border: 2px solid #666;
  background: #fff;
  font-family: 'Times New Roman', serif;
  font-size: 1rem;
  line-height: 1.4;
  color: #333;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #000;
}

.form-group textarea {
  resize: vertical;
  min-height: 150px;
}

.form-actions {
  text-align: center;
  margin-top: 30px;
}

.submit-letter-btn {
  background: #000;
  color: #fff;
  border: 2px solid #000;
  padding: 18px 40px;
  font-family: 'Times New Roman', serif;
  font-size: 1.2rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-letter-btn:hover {
  background: #fff;
  color: #000;
}

.disclaimer {
  font-family: 'Times New Roman', serif;
  font-size: 0.9rem;
  color: #666;
  margin-top: 20px;
  font-style: italic;
  text-align: center;
}

/* NEWSPAPER FOOTER */
.newspaper-footer {
  background: #000;
  color: #fff;
  padding: 50px 0 30px;
  margin-top: 60px;
  border-top: 3px double #666;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.footer-masthead {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-logo h3 {
  font-family: 'Times New Roman', serif;
  font-size: 2.2rem;
  margin: 0;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.footer-logo p {
  font-family: 'Times New Roman', serif;
  margin: 8px 0 0 0;
  opacity: 0.7;
  font-style: italic;
}

.footer-info p {
  font-family: 'Times New Roman', serif;
  margin: 0;
  opacity: 0.7;
}

.footer-decoration {
  display: flex;
  align-items: center;
  margin: 30px 0;
}

.decoration-line {
  flex: 1;
  height: 2px;
  background: #666;
}

.decoration-star {
  margin: 0 25px;
  font-size: 2rem;
  color: #666;
}

.memorial-notice {
  margin: 40px 0;
}

.memorial-text {
  font-family: 'Times New Roman', serif;
  font-size: 1.8rem;
  font-weight: bold;
  margin: 0;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.memorial-subtitle {
  font-family: 'Times New Roman', serif;
  font-size: 1.1rem;
  margin: 15px 0 0 0;
  opacity: 0.8;
  font-style: italic;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid #333;
}

.copyright-info p {
  font-family: 'Times New Roman', serif;
  margin: 0;
  opacity: 0.7;
  font-size: 0.9rem;
}

.footer-date p {
  font-family: 'Times New Roman', serif;
  font-weight: bold;
  margin: 0;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
  .newspaper-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .main-column,
  .sidebar-column {
    margin: 0 auto;
    max-width: 800px;
  }

  .story-columns {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .photo-essay-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .photo-essay-item.large,
  .photo-essay-item.wide {
    grid-column: 1;
    grid-row: auto;
  }
}

@media (max-width: 768px) {
  .newspaper-masthead {
    padding: 30px 0 20px;
  }

  .newspaper-header {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .newspaper-name h1 {
    font-size: 2.5rem;
  }

  .paper-subtitle {
    font-size: 1rem;
  }

  .publication-info {
    text-align: center;
  }

  .hero-portrait-section {
    margin: 20px 0;
  }

  .hero-portrait {
    width: 150px;
    height: 200px;
  }

  .main-headline {
    margin-top: 30px;
  }

  .headline-text {
    font-size: 2.2rem;
  }

  .subheadline {
    font-size: 1.2rem;
  }

  .newspaper-nav {
    padding: 10px 0;
  }

  .nav-menu {
    display: none;
  }

  .nav-content {
    justify-content: center;
  }

  .story-headline {
    font-size: 2rem;
  }

  .drop-cap {
    font-size: 3.5rem;
  }

  .secondary-stories {
    grid-template-columns: 1fr;
  }

  .tribute-letters {
    grid-template-columns: 1fr;
  }

  .form-columns {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .photo-essay-image {
    height: 320px;
  }

  .photo-essay-caption {
    padding: 20px;
  }

  .footer-masthead,
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .memorial-text {
    font-size: 1.4rem;
  }
}

@media (max-width: 480px) {
  .newspaper-masthead {
    padding: 20px 0 15px;
  }

  .newspaper-name h1 {
    font-size: 2rem;
  }

  .headline-text {
    font-size: 1.8rem;
  }

  .story-headline {
    font-size: 1.6rem;
  }

  .hero-portrait {
    width: 120px;
    height: 160px;
  }

  .photo-essay {
    padding: 20px;
  }

  .photo-essay-image {
    height: 250px;
  }

  .photo-essay-caption {
    padding: 15px;
  }

  .letters-section {
    padding: 20px;
  }

  .newspaper-footer {
    padding: 30px 0 20px;
  }
}