  html {
    line-height: 1;
  
  }

  /* Main Paragraph Body Text  */
  body {
    font-family: "futura-100", sans-serif;
    font-weight: 300;
    font-style: normal;
    color: #000000; 
    background: #FFB3DA;
    width: 100%;
    height: 100%;
    position: relative;
    overflow: visible;
  }


  :root{
  --hero-green: #5FA1BA;   /* box color — change as needed */
  --box-radius: 80px;      /* rounded corners */
  --box-max: 1100px;   
  --credit-max: 900px;    /* max width for the boxes */
}

/* layout */
.cover .row{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;               /* space between the two boxes */
  padding: 28px 16px;      /* breathing room around the boxes */
}

.hero-box{
  margin: 0 auto;                 /* center the box itself */
  text-align: center;             /* center inline text */
  display: flex;                  /* also center block children */
  flex-direction: column;
  align-items: center;            /* ensures h1/h2 are centered as blocks */
  padding: 22px 28px;             /* keep symmetric padding */
}

/* shared box styles */
.hero-box,
.credit-box{
  background: var(--hero-green);
  border-radius: var(--box-radius);
  padding: 22px 28px;
  width: min(92vw, var(--box-max));
  text-align: center;
  margin: 0;
}

.hero-box{  width: min(92vw, var(--box-max)); }
.credit-box{ width: min(85vw, var(--credit-max)); } 


/* keep your existing heading styles; just remove top/bottom margins so the boxes are tight */
.title,
.subtitle,
.author{
  margin: 0.25em 0;
}

/* your existing typography (colors already white) */
.title{
  font-family: "futura-100", sans-serif;
  font-weight: 700;
  color: #fff;
  font-size: clamp(36px, 6vw, 100px);
  text-transform: uppercase;
}

.subtitle{
  font-family: "futura-100", sans-serif;
  font-weight: 700;
  color: #fff;
  font-size: clamp(22px, 3.5vw, 40px);
  text-transform: uppercase;
}

.author{
  font-family: "futura-100", sans-serif;
  font-weight: 400;
  color: #fff;
  font-size: clamp(18px, 2.8vw, 30px);
  line-height: 1.3;
  text-transform: uppercase;
}
  

/* Tribune Nav Bar Stuff  */
.section-header {
  color: black;
  font-family: 'Amplitude-Black';
  font-size: 24px !important;
  background-color: white;
  border: 2px solid black;
  padding: 10px;
  display: inline-block;
  text-align: center;
}

.filler {
    height: 10vw;
    opacity: 0;
    background-color: black;
  }
  
  .tribune {
    font-family: "Playfair Display" !important;
    margin-left: 2vw;
    color: #c7c1c7 !important;
    float: left;
    font-size: 32px;
  }
  
  .tribune a {
    text-decoration: none !important;
    color:#c7c1c7 !important;
    cursor: pointer;
  }
  
  .feature {
    font-family: "Garamond 3 LT Std";
    margin-right: 2.5vw;
    color: #c7c1c7;
    float: right;
    margin-top: 1vw;
    font-size: 30px;
  }
  :root {
    --nav-height: 70px; 
  }
    
  .header {
    position: fixed;
    background: #000000;
    z-index: 5;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: transform 0.3s;
  }
  .nav-hidden{
    transform: translateY(-90px);
  }
  

  .cover {
    padding-top: 85px;
    overflow: hidden;
    position: relative;
    height: 10%;
    margin-top: 0px;
    border: none; 
    outline: none; 
  }
  
  .row {
    display: flex;
    flex-direction: column; /* Stack elements vertically */
    align-items: center; /* Center horizontally */
    justify-content: center; /* Center vertically */
    text-align: center;
    position:relative;
  }
  .innerwrap p {
    margin-bottom: 2em;
    font-size: 22px;
    border: none; 
    outline: none; 

  .h2 {
      text-align: left; 
  }

  }
  /* First letter styling */
  .innerwrap > p:first-of-type::first-letter {
    font-size:70px;
    text-decoration: bold;
    float: left;
    line-height: 60px;
    padding-right: 8px;
    margin-top:3px;
    color: #000000; 
    font-family: "futura-100", sans-serif;
  }
  
  /* Body Text Formatting */

  .warning {
  width: 50%;
  margin: 0 auto 1.5rem;
  padding: 0 4vw 0 5vw;
  font-size: 22px;
  font-style: italic;
   font-family: "futura-100", sans-serif;
  text-align: center;
}

  .innerwrap {
    width: 50%;
    height: 100%;
    max-width: 100%;
    margin:  auto;
    padding: 0px 0;
    font-size: 3em;
    line-height: 1.6;
    text-align: left;
    border: none; 
    outline: none;
   
    
  }

  .first-line {
  font-weight: 600;
  font-size: 1.5em; /* slightly bigger than normal text */
  text-transform: uppercase;
}


.image-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0; /* Adds spacing above and below */
  padding: 0;
  width: 100%;
  position: relative;
}

.image-container img {
    width: 70vw; /* Adjust size as needed */
    height: auto;
    max-width: 100%;
    /* display: block; */
}


.innerwrap p {
  text-align: justify; /* Justify text for better flow around the image */
}

.innerwrap::after {
  content: "";
  display: table;
  clear: both;
}

/* Responsive to Screen Size  */

@media (max-width: 415px) {
    
      .tribune{
        font-size: 28px;
      }
      .feature{
        margin-top: 1.8vw;
        font-size: 25px;
      }

      .title {
        width: 80%;
      }

      .subtitle {
        width: 75%;
      }

      .author {
        width: 70%;
      }

      .quote {
        font-size: 25px !important;
      }
  
    
  }
  @media (min-width: 416px) {
    .title{
      width: 80%;
    }
    .subtitle {
      width: 80%;
    }
    .author {
      width: 100%; 
    }
    .tribune{
      font-size: 32px;
    }
    .feature{
      margin-top: 1vw;
      font-size: 30px;
    }
    .bottom-image {
      width: 150%;
      max-width: none; /* Allows the 150% to apply on larger screens */
      margin: 0 auto;
    }
   
}
  @media (max-width: 768px) {
    .innerwrap{
      width: 80% !important;
    }

     .image-container img {
    width: 90vw;
  }

  }

/* mobile tightening */
@media (max-width: 600px){
  .hero-box, .credit-box{ padding: 18px 20px; }
}



  