/* Frontend Styles */

@media (max-width: 1023.98px) {
  .who-we-are-section {
    padding: 0 20px;
  }
}

.who-we-are-section,
.who-we-are-section__section-header,
.who-we-are-section__profile-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: left;
}

.who-we-are-section__section-header .section-title {
  color: #0f1a3a;
  font-family: var(--font-saol);
  font-size: 25px;
  font-style: normal;
  font-weight: 500;
  line-height: 38px; /* 152% */
}

.profile-image-wrapper {
  position: relative;
  height: 252px;
  overflow: hidden;
  border-radius: 8px;
}

.profile-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease-in-out;
  border-radius: 8px;
}

.profile-image-placeholder {
  width: 100%;
  height: 280px;
  background: #f1f5f9;
  border: 2px dashed #cbd5e1;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #64748b;
  font-size: 16px;
}

.who-we-are-section__profile-content .profile-name {
  color: #0f1a3a;
  font-family: var(--font-saol);
  font-size: 25px;
  font-style: normal;
  font-weight: 500;
  line-height: 38px; /* 152% */
}

.who-we-are-section__profile-content .profile-title {
  color: #37405b;
  font-family: var(--font-whyte);
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%; /* 21px */
}

.who-we-are-section__profile-content .profile-description.profile-description--full {
  display: block;
  -webkit-line-clamp: unset;
}

.who-we-are-section__profile-content .profile-description {
  overflow: hidden;
  color: #37405b;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-family: var(--font-whyte);
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 160%; /* 25.6px */
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
}

.read-more svg {
  transition: transform 0.3s ease-in-out;
}

.read-more--rotate svg {
  transform: rotate(180deg);
}

.who-we-are-section__profile-content .read-more {
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #0f1a3a;
}
.who-we-are-section__profile-content .read-more span {
  font-family: var(--font-whyte);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 142.857% */
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}

.services-section {
  padding: 24px 0 32px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-bottom: 1px solid rgba(15, 26, 58, 0.05);
  margin-bottom: 12px;
}

.services-section .services-section__services-title {
  color: #0f1a3a;
  font-family: var(--font-saol);
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 30px; /* 150% */
}
.services-section .services-section__services-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-bottom: 16px;
}

.services-section .services-section__service-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  position: relative;
}

.services-section .services-section__service-item svg {
  position: relative;
  top: 7px;
}

.services-section .services-section__service-item p {
  color: #37405b;
  font-family: var(--font-whyte);
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 160%; /* 25.6px */
  margin: 0;
}

.services-section .services-section__btn {
  display: flex;
  height: 54px;
  padding: 0 16px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  align-self: stretch;
  background-color: #192c5d;
  border-radius: 8px;
  color: #f6f4e7;
  text-overflow: ellipsis;
  font-family: var(--font-whyte);
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px; /* 171.429% */
  letter-spacing: 0.14px;
}
