/* 1. BASIC RESET & TYPOGRAPHY */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

html {
  font-size: 100%;
  line-height: 1.5;
  
}

body {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  color: #333;
  background-color: #D8D4D4;
  margin: 0;
}
 h1 {
  font-size: 225%;
  margin-bottom: 0.5rem;
  padding: 0 18px;
  color: #181717;
  
}

 h2 {
text-align: left;
font-weight: normal;
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  padding: 0 18px;
  hyphens: auto;
  
}

 h3 {
text-align: left;
  font-size: 3.0em;
  margin-bottom: 0.5rem;
  color: #F6060A;
}
p {
  font-size: 1.25rem;
  text-align: justify;
}

/* UTILITY CLASSES */
.container {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;  
  
}
.container p {
  color: #000;
}

.container-description {
 width: 90%;
 background-color: #FFF;
 padding: 20px;
 border-radius: 8px;
 box-shadow: 0 0 12px #444;
  max-width: 900px;
  margin: 0 auto;
  margin-top: 80px;
  border-bottom: 4px solid #777;
}

.container-description h1 {
font-size: 3rem;
}

.container-description h2 {
font-size: 2rem;
font-style: italic;
}
/* 3. HERO SECTION */

.hero-content {
text-align: center;
background-color: #fff;
  max-width: 1000px;
  margin: 24px auto 24px auto;
  padding: 24px;
  border-radius: 8px;
  box-shadow: 0 0 12px #777;
 
}

/* 4. MAIN CONTENT AREA */
.press-item {
  background-color: #fff;
  margin: 1.5rem 0;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}


.press-image {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  aspect-ratio: 2 / 2;
  height: auto;
  display: block;
}

.press-image-description {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  aspect-ratio: 2 / 2;
  height: auto;
  display: block;
    border-radius: 8px;
  box-shadow: 0 0 12px #777;
}

  .article-description {
  margin: 24px;
  text-align: left;
  font-size: 1.2rem;

  }

.press-details {
  padding: 1rem 1.5rem;
}

.press-details p {
  font-size: 1.2rem;
}

.press-details h3 {
font-size: 2.2rem;
  margin-bottom: 0.5rem;
}

.press-date {
  color: #888;
  font-size: 1rem;
  margin: .5rem 0;
  margin-bottom: 8px;
  padding-bottom: 0;
  font-style: italic;
}

.read-more {
	font-size: 1.2rem;
  display: inline-block;
  margin-top: 1rem;
  color: #007bff;
  text-decoration: none;
  font-weight: 500;
}

.read-more:hover {
  text-decoration: underline;
  font-weight: bold;
}

/* 5. FOOTER */
.site-footer {
  background-color: #333;
  color: #fff;
  padding: 1rem 0;
  
  margin: 2rem auto;
}

.footer-content {


}

.footer-content p {
  margin-bottom: 0.5rem;
  color: #fff;
  text-align: center;
}


/* 6. MEDIA QUERIES */
/* For tablets and up */
@media (max-width: 599px) {
  .main-nav ul {
    display: flex;
    gap: 1rem;
    flex-direction: row;
  }
  
  h1 {
  font-size: 2rem;
  }
  
  h2 {
   hyphens: auto;
  }
  
  h3 {
  font-size: 1.85rem;
  }
  
  .container {
  width: 96%;
  }
  
  .hero-content {
  width: 100%;
  border-radius: 0;
  box-shadow: none;
  margin-top: 80px;
  padding: 16px;
  }
  
    .hero-content h2 {
  font-size: 1.30rem;
  font-weight: normal;
  }
  
  .press-image {
  width: 100%;
 max-width: 100%;
  aspect-ratio: 2 / 2;
 
  }
 
 .container-description {
 background-color: #FFF;
 width: 98%;
 padding: 16px;
 border-radius: 8px;
 box-shadow: 0 0 12px #444;
 max-width: 900px;
 `margin: 0 auto;
 margin-top: 15%; 
}

.container-description h1 {
font-size: 2rem;
}

.container-description h2 {
font-size: 1.5rem;
font-style: italic;
}

.press-image-description {
  width: 100%;
 max-width: 100%;
  aspect-ratio: 2 / 2;
  border-radius: 8px;
  box-shadow: 0 0 12px #777;
 
  }
  .article-description {
  margin: 16px 0px;
  text-align: left;
  font-size: 1.1rem;
  }
 .press-item {
    border-bottom: 2px solid #444; 
  }
  
.press-item h3 {
	  font-size: 1.85rem;  
  }
  
  .press-item p {
	  font-size: 1.15rem; 
	  hyphens: auto;
  }


  }
/* For tablets and up */
@media (min-width: 600px) {

  .hero-content {
  margin-top: 24px;
  padding: 18px;
  }
 
  .press-item {
    flex-direction: row;
  }

   .press-image {
  width: 40%;
  height: 40%;
  aspect-ratio: 2 / 2;
  }

  .press-details {
    width: 60%;
  }
  
   .press-details h2 {
    font-weight: normal;
  }
 
}


