.welcome {
  font-family: Gotham, sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 100%;
  color: #34373F;
  padding-bottom: 50px;
}

.welcome h1 {
  font-weight: 700;
  font-size: 36px;
  line-height: 100%;
}

.welcome .highlight {
  color: #E1242A;;
}

.welcome .buttons {
  display: flex;
  gap: 20px;
}

.welcome .btn1 {
  display: flex;
  align-items: center;
  font-size: 16px;
  padding: 12px 24px;
  border-radius: 30px;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.3s;
  font-family: Gotham, sans-serif;
  line-height: 21.27px;
  vertical-align: middle;
  justify-content: space-between;
  font-weight: 700;
  width: 230px;
}

.welcome .btn1 .icon {
  width: 24px;
  height: 24px;
}

.welcome .btn-signin {
  border: 2px solid #34373F;
  background: #fff;
  color: #34373F;
}

.welcome .btn-signin:hover {
  background-color: #34373F;
   border: 2px solid #34373F;
   color: #fff;
}
.btn-signin:hover svg path {
  stroke: white;
}

.welcome .btn-register {
  background-color: #E1242A;
  color: #fff;
  border: none;
}

.welcome .btn-register:hover {
  background-color: #c02126;
  color: #fff;
}

@media (max-width: 768px) {
  .welcome h1 {
    font-size: 22px;
  }

  .welcome {
    font-size: 18px;
  }

  .welcome .btn1{
    font-size: 15px;
    padding: 10px 16px;
  }

  .welcome .buttons {
    flex-direction: column;
  }
}


.therapeutic-area {
  font-family: Gotham, sans-serif;
  font-size: 15px;
  color: #34373F;
  padding: 40px 0;
  border-bottom: 1px solid #34373F;
}

.therapeutic-area h2 {
  margin-bottom: 20px;
  font-family: Gotham;
  font-weight: 700;
  font-size: 28px;
  line-height: 100%;
}

.therapeutic-area .cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.therapeutic-area .therapeutic-area-card {
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 30px;
  flex: 1;
  min-width: 250px;
  display: flex;
  gap: 30px;
}

.therapeutic-area-card:hover{
  border: 1px solid #E1242A;
}

.therapeutic-area .therapeutic-area-card .icon {
  flex-shrink: 0;
  width: 70px;
}

.therapeutic-area .therapeutic-area-card h3 {
  color: #891515;
  margin-top: 10px;
  font-size: 22px;
  margin-bottom: 20px;
}

.therapeutic-area .therapeutic-area-card a {
  display: flex;
  align-items: center;
  margin-top: 10px;
  color: #891515;
  text-decoration: none;
  font-weight: bold;
}

@media (max-width: 768px) {
  .therapeutic-area .cards {
    flex-direction: column;
  }
}

.latest-updates {
  color: #34373F;
  font-size: 15px;
  margin: 0 -15px;
}


.latest-updates .header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.latest-updates .header h2 {
  font-family: Gotham, sans-serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 100%;
}

.latest-updates .update-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-family: Gotham, Sans-Serif, serif;
}

@media screen and (min-width: 769px) {
  .latest-updates .update-card .thumbmail-wrapper img.thumbnail-img {
    height: 230px;
    object-fit: cover;
  }
}

body:not(.user-logged-in) .latest-updates .update-card h4 {
  margin-top: 10px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2; /* number of lines to show */
  line-clamp: 2;
  -webkit-box-orient: vertical;
  font-weight: 500;
  font-size: 22.72px;
  line-height: 26.5px;
  vertical-align: middle;
  color: #891515;
}

.latest-updates .update-card a {
  display: flex;
  align-items: center;
  margin-top: 10px;
  color: #891515;
  text-decoration: none;
  font-weight: bold;
}

.latest-updates .content {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  font-weight: 400;
  font-size: 15px;
  line-height: 18.93px;
  letter-spacing: 0.47px;
  vertical-align: middle;
  color: #34373F;

}

.latest-updates .btn-view-more {
  font-family: Gotham, sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 100%;
  color: #34373F;
  text-decoration: underline;
  text-decoration-style: solid;
  text-decoration-thickness: 0%;
  text-decoration-skip-ink: auto;
}

@media screen and (max-width: 768px) {
  .latest-updates .update-card h4 ,
  .latest-updates .content {
    min-height: unset;
  }
}

