/* News Banner Styles */
.news-banner {
  min-height: 100vh;
  background: var(--Tertiary-40, #FBF3F2);
  position: relative;
  overflow: hidden;
}

.news-banner-container {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
}

.news-banner-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 2rem;
  max-width: 684px;
  width: 100%;
}

.news-banner-text {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 0.875rem;
  width: 100%;
}

.news-banner-heading {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: baseline;
  line-height: 1;
  flex-wrap: wrap;
}

.news-heading-part-1 {
  color: var(--Primary-100, #680144);
  font-family: "DM Sans", sans-serif;
  font-size: 4.5rem; /* 72px - text-7xl equivalent */
  font-weight: 400;
  line-height: 88px;
}

.news-heading-part-2 {
  color: var(--Primary-100, #680144);
  font-family: "Calluna", serif;
  font-size: 5rem; /* 80px - text-8xl equivalent */
  font-weight: 400;
  font-style: italic;
  line-height: 92.4px;
}

.news-banner-description {
  width: 100%;
  max-width: 384px;
  color: var(--Primary-100, #680144);
  font-family: "DM Sans", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
}

.news-banner-description p {
  margin: 0;
  padding: 0;
}

/* Responsive - Large screens (1920px+) */
@media (min-width: 1920px) {
  .news-banner {
    min-height: 100vh;
  }
  
  .news-banner-container {
    min-height: 100vh;
  }
}

/* Responsive - Desktop/Laptop (1024px - 1919px) */
@media (min-width: 1024px) {
  .news-banner {
    height: 100vh;
    min-height: 100vh;
  }
  
  .news-banner-container {
    height: 100vh;
    min-height: 100vh;
  }
  
  .news-banner-content {
    max-width: 684px;
  }
  
  .news-heading-part-1 {
    font-size: 4.5rem;
    line-height: 88px;
  }
  
  .news-heading-part-2 {
    font-size: 5rem;
    line-height: 92.4px;
  }
  
  .news-banner-description {
    max-width: 384px;
    font-size: 18px;
    line-height: 24px;
  }
}

/* Responsive - Tablet (768px - 1023px) */
@media (min-width: 768px) and (max-width: 1023px) {
  .news-banner {
    min-height: auto;
    padding: 4rem 0;
  }
  
  .news-banner-container {
    min-height: auto;
    padding: 2rem;
  }
  
  .news-banner-content {
    max-width: 600px;
  }
  
  .news-heading-part-1 {
    font-size: 3.5rem;
    line-height: 70px;
  }
  
  .news-heading-part-2 {
    font-size: 4rem;
    line-height: 80px;
  }
  
  .news-banner-description {
    max-width: 100%;
    font-size: 17px;
    line-height: 24px;
  }
}

/* Responsive - Mobile (max-width: 767px) */
@media (max-width: 767px) {
  .news-banner {
    min-height: auto;
    padding: 3rem 0;
  }
  
  .news-banner-container {
    min-height: auto;
    padding: 2rem 1rem;
  }
  
  .news-banner-content {
    max-width: 100%;
    gap: 1.5rem;
  }
  
  .news-banner-text {
    gap: 1rem;
  }
  
  .news-banner-heading {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
  }
  
  .news-heading-part-1 {
    font-size: 2.5rem;
    line-height: 50px;
  }
  
  .news-heading-part-2 {
    font-size: 3rem;
    line-height: 60px;
  }
  
  .news-banner-description {
    max-width: 100%;
    font-size: 16px;
    line-height: 22px;
  }
}

/* Responsive - Small Mobile (max-width: 480px) */
@media (max-width: 480px) {
  .news-banner {
    padding: 2rem 0;
  }
  
  .news-banner-container {
    padding: 1.5rem 1rem;
  }
  
  .news-banner-content {
    gap: 1.25rem;
  }
  
  .news-banner-text {
    gap: 0.875rem;
  }
  
  .news-heading-part-1 {
    font-size: 2rem;
    line-height: 42px;
  }
  
  .news-heading-part-2 {
    font-size: 2.5rem;
    line-height: 50px;
  }
  
  .news-banner-description {
    font-size: 15px;
    line-height: 20px;
  }
}
