/* ========================= WELLNESS STORIES PAGE STYLES ========================= */

.wellness-hero {
  background: #C1E7EE;
  /* Updated to Baby Blue */
  padding: clamp(2rem, 5vw, 4rem) 0;
  text-align: center;
  /* Centered text */
}
.hero-title{
  font-family: 'Playfair Display', serif;
  /* Updated Font */
  font-weight: 800;
  font-size: 40px;
  line-height: 50px;
  color: #1671B0;
  /* Updated to Denim Blue */
  margin-bottom: 10px;
}

.hero-subtitle{
  font-size: 20px;
  font-weight: 500;
}

.stories-bg {
  position: relative;
}

.stories-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 545px;
  /* Updated to Baby Blue with opacity */
  background: linear-gradient(180deg, #FFFFFF 0%, rgba(193, 231, 238, 0.8) 100%);
  opacity: 0.9;
  z-index: 0;
}

.stories-bg>* {
  position: relative;
  z-index: 1;
}

/* Added to center section headings */
.section-head {
  text-align: center;
}

.section-title {
  font-family: 'Playfair Display', serif;
  /* Updated Font */
  font-weight: 800;
  font-size: 32px;
  line-height: 25px;
  color: rgba(96, 183, 255, 1);
  margin-bottom: 10px;
}

.section-subtitle {
  font-family: 'Georgia', serif;
  /* Updated Font */
  font-weight: 500;
  font-size: 24px;
  line-height: 35px;
  color: rgba(0, 0, 0, 0.6);
  max-width: 760px;
  margin: 0 auto 20px auto;
}

.stories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2vw, 1.2rem);
  padding-top: 20px;
}

.story-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(106, 106, 106, .25);
  padding: clamp(1rem, 2vw, 1.2rem);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 300px;
  text-align: center;
  /* Centered card text */
}

.story-content {
  flex-grow: 1;
  margin-bottom: 1rem;
}

.story-card h3 {
  font-family: 'Playfair Display', serif;
  /* Updated Font */
  font-weight: 600;
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  margin-bottom: 0.5rem;
}

.story-card .kicker {
  font-size: .9rem;
  opacity: .8;
  margin: .3rem 0 .6rem;
  font-family: 'Georgia', serif;
  /* Updated Font */
  font-weight: 500;
}

.story-card p {
  font-family: 'Georgia', serif;
  /* Updated Font */
  font-weight: 500;
  font-size: 16px;
  line-height: 28px;
  color: rgba(75, 85, 99, 1);
}

.story-card.border-peach {
  border: 2px solid #FD7065;
  box-shadow: 0 8px 0 #FD7065;
}

.story-card.border-sky {
  border: 2px solid #1671B0;
  /* Updated to Denim Blue */
  box-shadow: 0 8px 0 #1671B0;
  /* Updated to Denim Blue */
}

.story-card.border-violet {
  border: 2px solid #6B54A6;
  /* Updated to Violet */
  box-shadow: 0 8px 0 #6B54A6;
  /* Updated to Violet */
}

.btn.peach {
  background: #FD7065;
}

.btn.sky {
  background: #1671B0;
  /* Updated to Denim Blue */
}

.btn.violet {
  background: #6B54A6;
  /* Updated to Violet */
}

.btn.bottom-right {
  align-self: center;
  /* Centered button in card */
  margin-top: auto;
  padding: 0.8rem 1.2rem;
  border-radius: 1000px;
  box-shadow: 0 8px 20px rgba(15, 129, 252, .25);
}

/* Blog Section */
.section-title-blog {
  font-family: 'Playfair Display', serif;
  /* Updated Font */
  font-weight: 700;
  font-size: 36px;
  line-height: 100%;
  color: rgba(0, 0, 0, 1);
  margin-bottom: 10px;
}

.section-subtitle-blog {
  font-family: 'Georgia', serif;
  /* Updated Font */
  font-weight: 500;
  font-size: 18px;
  line-height: 28px;
  color: rgba(75, 85, 99, 1);
  max-width: 714px;
  margin: 0 auto 30px auto;
}

.blogs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1rem, 2vw, 1.2rem);
}

.blog-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(106, 106, 106, .25);
  padding: clamp(1rem, 2vw, 1.2rem);
  padding-bottom: 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  position: relative;
  min-height: 180px;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.blog-content {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-grow: 1;
  padding-right: 1rem;
}

.blog-card img {
  height: 35px;
  width: auto;
  flex-shrink: 0;
}

.blog-title {
  font-family: 'Playfair Display', serif;
  /* Updated Font */
  font-weight: 600;
  font-size: 16px;
  line-height: 29px;
  color: rgba(0, 0, 0, 1);
  margin: 0;
}

.blog-icon {
  width: 47px;
  height: 47px;
  border-radius: 50%;
  background: #eee;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.blog-icon img {
  width: 60%;
  height: 60%;
  object-fit: contain;
}

.blog-card h4 {
  font-family: 'Playfair Display', serif;
  /* Updated Font */
  font-weight: 600;
  font-size: 16px;
  line-height: 29px;
  color: rgba(0, 0, 0, 1);
  margin: 0;
  flex-grow: 1;
}

.btn.link.bottom-right {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  background: rgba(255, 255, 255, 0.9);
  color: var(--purple-primary);
  padding: 0.3rem 0.6rem;
  border-radius: 4px;
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 3.6%;
  z-index: 10;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.story-card .btn.bottom-right {
  box-shadow: none !important;
}