/* ===========================
   FROM STUCK TO STRONG SECTION
=========================== */

.healing-section {
  background: #fff;
  padding: 70px 0;
  color: #000000;
  font-family: "Raleway", sans-serif;
}

.healing-container {
  max-width: 100%;
  margin: auto;
  padding: 0 60px;
}

.healing-label {
    font-size: 20px;
    font-weight: bold;
    letter-spacing: -0.022em;
    line-height: 150%;
    margin-top: 0px;
    margin-bottom: 10px;
    text-transform: uppercase;
    color: #131527;
}


.healing-title {
  font-size: 36px;
  font-weight: 700;
  /* text-align: center; */
  margin-top: 15px;
  margin-bottom: 25px;
  text-transform: capitalize;
  line-height: 120%;
}

.healing-title .cormorant-font {
  font-size: 40px;
  font-weight: 700;
  font-style: italic;
  font-family: "Cormorant", serif;
}

/* GRID */
.healing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 31.5%));
  gap: 25px;
}

/* CARD */
.healing-card {
  border: 1px solid #eee;
  /* border-radius: 8px; */
  overflow: hidden;
  background: #fff;
  box-shadow: 0 8px 12px -4px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.healing-card:hover{
transform: scale(1.03); 
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15); 

}

.healing-card a, .healing-explore a {
   display: inline-block;
    margin-top: 15px;
    font-size: 16px;
    color: #000000;
    text-decoration: none;
    font-weight: 700;
}

.healing-explore button{
  border: none;
  background: none;
  outline: none;
  cursor: pointer;
}


.healing-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.healing-card-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 300px;
}

.healing-meta {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  margin-bottom: 12px;
  font-weight: 600;
  /* color: #666; */
}

.healing-card h3 {
  font-size: 24px;
  margin-bottom: 12px;
  letter-spacing: -0.019em;
  font-weight: 600;
  line-height: 150%;
}

.healing-challenge {
  /* color: #555; */
  font-size: 16px;
  margin-bottom: 15px;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: -0.022em;
}

.therapy-select{
font-size: 16px;
box-sizing: border-box;
padding: 12px 16px;
align-self: flex-end;
margin: 20px 0;
margin-left: auto;
  display: block;
  cursor: pointer;
}

.healing-readmore {
  color: #000;
  text-decoration: none;
  font-weight: 600;
}

/* EXPLORE */
.healing-explore {
  text-align: center;
  margin-top: 30px;
}


@media (max-width: 1024px) {
  .healing-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 47%));
  }
}

@media (max-width: 600px) {
  .healing-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 100%));
  }
}

@media (max-width: 425px) {
  .healing-section {
  padding: 30px 0;
  }

  .healing-container {
    padding: 0 20px;
  }

  .healing-title {
  font-size: 26px;
}

.healing-title .cormorant-font {
  font-size: 30px;
}
}