/* new header css */
.news-header {
  margin: 0 200px;
  padding-top: 100px;
  padding-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 20px;
}

.post-date {
  font-size: 16px;
  font-weight: 300;
  color: #333a63;
  letter-spacing: 1px;
  line-height: 22px;
}

.entry-title {
  font-weight: 500px;
  line-height: 55px;
}

.entry-title,
.entry-meta {
  width: 100%;
  text-align: left;
}

.social-menu-news {
  width: 100%;
}

.social-menu-news ul {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
}

.social-menu-news li {
  list-style: none;
}

.social-icon-news {
  width: 30px;
  height: 30px;
}

.post-categories {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  text-transform: uppercase;
}

.post-categories a {
  color: #333a63;
  text-decoration: none;
}

.article-wrapper-banner{
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 5px;
}

.good-life-banner {
  height: 736px;
  width: 100%;
  border-radius: 25px;
}

.good-life-banner img{
  width: 100%;
  height: 100%;
  border-radius: 25px;
  background-position: bottom center;
  object-fit: cover;
}

.goodlife-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  margin: 0 300px;
}

.good-life-post {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.entry-content h3{
  font-size: 32px;
  font-weight: 500;
  color: #000F73;
  line-height: 36px;
  margin-top: 20px;
  margin-bottom: 10px;
}

.good-life-post-p {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: left;
}

.good-life-post-p p {
  width: 100%;
  text-align: left;
  font-size: 25px;
  letter-spacing: 1px;
}

.article-wrapper p{
  font-size: 20px;
  letter-spacing: 1px;
}

.article-image-single {
  width: 100%;
  border-radius: 25px !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-bottom:  28px;
  padding-top: 12px;
}

.article-image-single img{
  width: 100%;
  border-radius: 25px !important;
}

.image-caption, .good-life-banner-caption {
  width: 100%;
  font-size: 16px;
  color: #534a74;
  text-align: left;
  padding: 0 25px;
}

 /* Swiper Carousel Styles for Good Life */
.goodlife-swiper {
    /* Account for the 300px left + 300px right margins used in desktop layout */
    width: calc(100% - 600px);
    max-width: 1300px;
    margin: 20px auto;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
    padding: 0;
}

.goodlife-swiper .swiper-wrapper {
    display: flex;
    align-items: center;
    box-sizing: border-box;
}

.goodlife-swiper .swiper-slide {
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    display: flex;
    justify-content: center;
    align-items: center;
    /* ensure slides don't grow beyond the wrapper calculations */
    flex: 0 0 auto;
}

.goodlife-swiper .swiper-slide img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.goodlife-swiper .swiper-pagination {
    bottom: 10px !important;
}

.goodlife-swiper .swiper-button-prev,
.goodlife-swiper .swiper-button-next {
    color: #000F73;
    background: rgba(255,255,255,0.7);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    top: 50%;
    transform: translateY(-50%);
}

/* Tablet view (max-width: 1024px) */
@media (max-width: 1024px) {
  .news-header {
    margin: 0 24px;
    padding-top: 48px;
    padding-bottom: 36px;
  }
  .goodlife-content {
    margin: 0 24px;
  }
  .good-life-banner {
    height: 320px;
    border-radius: 18px;
  }
  .goodlife-swiper {
    width: calc(100% - 48px);
    max-width: none;
    margin: 20px auto;
  }
}

/* Mobile view (max-width: 600px) */
@media (max-width: 720px) {
  .news-header {
    margin: 0 4vw;
    padding-top: 24px;
    padding-bottom: 18px;
    gap: 10px;
  }
  .post-date {
    font-size: 8px;
    line-height: 17px;
  }
  .social-icon-news {
    width: 24px;
    height: 24px;
  }
  .entry-title {
    font-size: 20px;
    line-height: 26px;
  }
  .goodlife-content {
    margin: 0 4vw;
  }
  .good-life-banner {
    height: 180px;
    border-radius: 8px;
  }
  .entry-content h3 {
    font-size: 17px;
    line-height: 22px;
    margin-top: 8px;
    margin-bottom: 4px;
  }
  .good-life-post-p{
    margin: 0;
  }
  .article-wrapper p,
  .good-life-post-p p {
    font-size: 14px;
  }
  .image-caption, .good-life-banner-caption {
    font-size: 11px;
    padding: 0 1vw;
  }
  .goodlife-swiper {
    max-width: 100vw;
    margin: 12px auto;
  }
  .goodlife-swiper .swiper-button-prev,
  .goodlife-swiper .swiper-button-next {
    width: 28px;
    height: 28px;
  }
}

@media (max-width: 600px) {
  body {
    font-size: 14px;
  }
  .entry-title {
    font-size: 1.4em;
  }
  .entry-content h3 {
    font-size: 1.2em;
  }
  .image-caption {
    font-size: 0.8em;
  }
}

/* ...existing code... */