/* Custom CSS unique to the About Page structure */
 
  .about-container {
    max-width: 1100px; 
    margin: 0 auto;
    padding: 40px 20px;
  }
  
  .about-title {
    color: black;
    font-size: 2.5rem;
    border-bottom: 3px solid var(--color-yellow);
    padding-bottom: 10px;
    margin-bottom: 40px;
  }

  /* Flexbox Rows: Top alignment makes boxes align with images */
  .about-row {
    display: flex;
    flex-direction: row;
    align-items: flex-start; 
    gap: 40px;               
    margin-bottom: 60px;     
  }
  
  .about-row.reverse {
    flex-direction: row-reverse;
  }

  .about-text-block {
    flex: 1.5;
  }
  
  /* Color Specific Border Assigners using our Central Layout Utility */
  .border-red { border-color: var(--color-red) }
  .border-green { border-color: var(--color-green) }
  .border-purple { border-color: var(--color-blue) }
  
  .about-text-block h3 {
    font-size: 1.8rem;
    margin-top: 0;
    margin-bottom: 15px;
  }
  
  /* Specific header matching for colors */
  .border-red h3 { var(--color-red) }
  .border-green h3 { color: var(--color-green) }
  .border-purple h3 { color: var(--color-blue) }

  .about-text-block p {
    margin-top: 0;
    margin-bottom: 15px; 
  }
  .about-text-block p:last-child {
    margin-bottom: 0; /* Clears bottom margin on final paragraph inside box */
  }

  .about-image-block {
    flex: 1;
    text-align: center;
    /* Keeps image vertically centered relative to the thick box height */
    align-self: center; 
  }

  .about-img {
    width: 100%;
    max-width: 420px;
    height: auto;
    border-radius: 12px;
   
  }   

  /* Responsive Breakpoint: Stack columns cleanly on small mobile browsers */
  @media (max-width: 768px) {
    .about-row, .about-row.reverse {
      flex-direction: column;
      gap: 20px;
      margin-bottom: 40px;
    }
    .about-img {
      max-width: 100%; 
    }
  }
 
 /* ==========================================================================
   AHAVA IN THE NEWS STYLES
   ========================================================================== */

.news-section {
  margin-top: 80px;
  border-top: 2px solid #eaeaea;
  padding-top: 50px;
}

.news-section-title {
  font-size: 2rem;
  color: black;
  margin-top: 0;
  margin-bottom: 30px;
}

/* Flex/Grid responsive display wrapper */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

/* News Cards matching your flat graphic aesthetic */
.news-card {
  background-color: #ffffff;
  border: 3px solid var(--color-blue);
  border-radius: 12px;
  padding: 25px;
  text-decoration: none;
  color: #222;
  box-shadow: 5px 5px 0px var(--color-blue);
  display: flex;
  flex-direction: column;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.news-card:hover {
  transform: translateY(-3px);
  box-shadow: 7px 7px 0px var(--color-yellow); /* Glows yellow on focus */
}

.news-source {
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--color-blue);
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

.news-card h4 {
  font-size: 1.25rem;
  font-weight: bold;
  margin: 0 0 12px 0;
  line-height: 1.3;
  color: black;
}

.news-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.4;
  margin: 0 0 20px 0;
  flex-grow: 1; /* Ensures buttons align even with varying text lengths */
}

.news-link-text {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-blue);
}

.news-card:hover .news-link-text {
  text-decoration: underline;
}