/* Featured News Styles */
.featured-news {
  width: 100%;
  padding: 2rem 0;
  background: var(--Tertiary-40, #FBF3F2);
  display: flex;
  justify-content: center;
  align-items: center;
}

.featured-news-container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 2rem;
}

.featured-news-card {
  width: 100%;
  height: 516px;
  display: inline-flex;
  justify-content: flex-start;
  align-items: flex-start;
  overflow: hidden;
  text-decoration: none;
  transition: all 0.3s ease;
}

.featured-news-card:hover {
  opacity: 0.95;
}

/* Image Wrapper */
.featured-news-image-wrapper {
  flex: 0 0 50%;
  width: 50%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.625rem;
  overflow: hidden;
  background: #f0f0f0;
}

.featured-news-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.featured-news-image-placeholder {
  width: 100%;
  height: 100%;
  background: var(--Primary-100, #680144);
  opacity: 0.1;
}

/* Content Section */
.featured-news-content {
  flex: 0 0 50%;
  width: 50%;
  height: 100%;
  background: var(--Primary-100, #680144);
  display: inline-flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  overflow: hidden;
}

.featured-news-content-inner {
  width: 100%;
  height: 100%;
  padding: 1.5rem 2rem; /* px-8 py-6 = 2rem 1.5rem */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}

.featured-news-text-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 0.75rem; /* gap-3 = 0.75rem = 12px */
}

.featured-news-header {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 0.5rem; /* gap-2 = 0.5rem = 8px */
}

/* Category */
.featured-news-category {
  width: 100%;
  color: var(--Primary-40, #BD93AE);
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 22.4px */
  letter-spacing: 0.8px;
  text-transform: uppercase;
  text-align: left;
}

/* Title */
.featured-news-title {
  width: 100%;
  color: var(--Tertiary-100, #F6E0DF);
  font-family: "DM Sans", sans-serif;
  font-size: 36px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%; /* 43.2px */
  letter-spacing: -1.8px;
  margin: 0;
  padding: 0;
  text-align: left;
}

/* Description */
.featured-news-description {
  width: 100%;
  color: var(--Tertiary-100, #F6E0DF);
  font-family: "DM Sans", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 25.2px */
  letter-spacing: -0.36px;
  text-align: left;
}

/* Button */
.featured-news-button {
  padding: 16px 32px;
  background: var(--Secondary-40, #F9C5C3);
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  align-self: flex-start;
  min-width: 200px;
}

.featured-news-card:hover .featured-news-button {
  background: var(--Secondary-60, #F5A8A5);
  transform: scale(1.05);
}

.featured-news-button-text {
  text-align: center;
  color: var(--Primary-100, #680144);
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 22.4px */
  letter-spacing: -0.32px;
}

/* Responsive - Desktop/Laptop (1024px+) */
@media (min-width: 1024px) {
  .featured-news-container {
    padding: 0 2rem;
  }
  
  .featured-news-card {
    height: 516px;
  }
}

/* Responsive - Tablet (768px - 1023px) */
@media (min-width: 768px) and (max-width: 1023px) {
  .featured-news {
    padding: 2rem 0;
  }
  
  .featured-news-container {
    padding: 0 2rem;
  }
  
  .featured-news-card {
    height: 450px;
  }
  
  .featured-news-content-inner {
    padding: 1.25rem 1.5rem;
  }
  
  .featured-news-title {
    font-size: 28px;
    line-height: 120%; /* 33.6px */
    letter-spacing: -1.4px;
  }
  
  .featured-news-description {
    font-size: 16px;
    line-height: 140%; /* 22.4px */
    letter-spacing: -0.32px;
  }
  
  .featured-news-category {
    font-size: 14px;
    line-height: 140%; /* 19.6px */
    letter-spacing: 0.7px;
  }
}

/* Responsive - Mobile (max-width: 767px) */
@media (max-width: 767px) {
  .featured-news {
    padding: 2rem 0;
  }
  
  .featured-news-container {
    padding: 0 1rem;
  }
  
  .featured-news-card {
    flex-direction: column;
    height: auto;
    min-height: 500px;
  }
  
  .featured-news-image-wrapper {
    width: 100%;
    height: 250px;
    flex: none;
  }
  
  .featured-news-content {
    width: 100%;
    flex: none;
    height: auto;
    min-height: 250px;
  }
  
  .featured-news-content-inner {
    padding: 1.5rem 1rem;
  }
  
  .featured-news-text-wrapper {
    align-items: flex-start;
    gap: 1rem;
  }
  
  .featured-news-header {
    gap: 0.75rem;
  }
  
  .featured-news-category {
    text-align: left;
    font-size: 14px;
    line-height: 140%; /* 19.6px */
    letter-spacing: 0.7px;
  }
  
  .featured-news-title {
    font-size: 24px;
    line-height: 120%; /* 28.8px */
    letter-spacing: -1.2px;
    text-align: left;
  }
  
  .featured-news-description {
    font-size: 16px;
    line-height: 140%; /* 22.4px */
    letter-spacing: -0.32px;
    text-align: left;
  }
  
  .featured-news-button {
    width: 100%;
    max-width: 200px;
    min-width: 180px;
    margin-top: 1rem;
    padding: 16px 24px;
  }
}
