/* News Single Banner Styles */
.news-single-banner {
  width: 100%;
  min-height: 650px;
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
  background: var(--Tertiary-40, #FBF3F2);
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.news-single-banner-content {
  width: 100%;
  max-width: 1200px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 144px; /* gap-36 = 9rem = 144px */
  position: relative;
}

/* Left Content */
.news-single-banner-left {
  width: 506px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 2rem; /* gap-8 = 2rem = 32px */
  text-align: left;
}

/* Breadcrumb */
.news-single-breadcrumb {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.25rem;
}

.breadcrumb-link {
  color: var(--Neutral-40, #666);
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumb-link:hover {
  color: var(--Primary-100, #680144);
}

.breadcrumb-separator {
  color: var(--Neutral-40, #666);
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.breadcrumb-current {
  color: var(--Primary-100, #680144);
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-decoration: underline;
}

/* Title and Description */
.news-single-banner-text {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 0.875rem; /* gap-3.5 = 0.875rem = 14px */
  text-align: left;
}

.news-single-title {
  width: 100%;
  color: var(--Primary-100, #680144);
  font-family: "Calluna", serif;
  font-size: 3rem; /* text-5xl = 3rem = 48px, but we need 57.20px line-height */
  font-weight: 400;
  line-height: 57.20px;
  margin: 0;
  padding: 0;
}

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

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

/* Right Sidebar */
.news-single-banner-sidebar {
  width: 176px; /* w-44 = 11rem = 176px */
  padding: 0 36px; /* px-9 = 2.25rem = 36px */
  border-left: 1px solid var(--Primary-100, #680144);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 1rem; /* gap-4 = 1rem = 16px */
}

.news-single-meta-item {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 0.125rem; /* gap-0.5 = 0.125rem = 2px */
}

.news-single-meta-label {
  width: 100%;
  color: var(--Primary-60, #9B4D7A);
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.news-single-meta-value {
  width: 100%;
  color: var(--Primary-100, #680144);
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}

/* Responsive - Large screens (1920px+) */
@media (min-width: 1920px) {
  .news-single-banner {
    min-height: 700px;
    padding: 6rem 0;
  }
}

/* Responsive - Desktop/Laptop (1280px - 1919px) */
@media (min-width: 1280px) and (max-width: 1919px) {
  .news-single-banner {
    min-height: 650px;
    padding: 5rem 0;
  }
  
  .news-single-banner-content {
    gap: 120px;
  }
  
  .news-single-banner-left {
    width: 450px;
  }
}

/* Responsive - Desktop (1024px - 1279px) */
@media (min-width: 1024px) and (max-width: 1279px) {
  .news-single-banner {
    min-height: 600px;
    padding: 4.5rem 0;
  }
  
  .news-single-banner-content {
    gap: 80px;
    max-width: 100%;
  }
  
  .news-single-banner-left {
    width: 400px;
    flex: 1;
  }
  
  .news-single-banner-sidebar {
    width: 160px;
    padding: 0 24px;
  }
}

/* Responsive - Tablet (768px - 1023px) */
@media (min-width: 768px) and (max-width: 1023px) {
  .news-single-banner {
    min-height: 550px;
    padding: 4rem 0;
  }
  
  .news-single-banner-container {
    padding: 0 2rem;
  }
  
  .news-single-banner-content {
    flex-direction: column;
    gap: 2rem;
    max-width: 100%;
  }
  
  .news-single-banner-left {
    width: 100%;
    text-align: left;
  }
  
  .news-single-banner-sidebar {
    width: 100%;
    border-left: none;
    border-top: 1px solid var(--Primary-100, #680144);
    padding: 1.5rem 0;
    flex-direction: row;
    gap: 3rem;
    justify-content: center;
  }
  
  .news-single-title {
    font-size: 2.5rem;
    line-height: 48px;
  }
}

/* Responsive - Mobile (max-width: 767px) */
@media (max-width: 767px) {
  .news-single-banner {
    min-height: 500px;
    padding: 3.5rem 0;
  }
  
  .news-single-banner-container {
    padding: 0 1rem;
  }
  
  .news-single-banner-content {
    flex-direction: column;
    gap: 1.5rem;
    max-width: 100%;
  }
  
  .news-single-banner-left {
    width: 100%;
    gap: 1.5rem;
    text-align: left;
  }
  
  .news-single-breadcrumb {
    font-size: 14px;
    line-height: 20px;
  }
  
  .news-single-banner-text {
    gap: 0.75rem;
  }
  
  .news-single-title {
    font-size: 2rem;
    line-height: 40px;
  }
  
  .news-single-description {
    font-size: 16px;
    line-height: 22px;
  }
  
  .news-single-banner-sidebar {
    width: 100%;
    border-left: none;
    border-top: 1px solid var(--Primary-100, #680144);
    padding: 1.5rem 0;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
  }
  
  .news-single-meta-item {
    gap: 0.25rem;
  }
  
  .news-single-meta-label,
  .news-single-meta-value {
    font-size: 13px;
    line-height: 18px;
  }
}
