/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .content h3 {
  font-size: 2rem;
  font-weight: 700;
}

.about .content p {
  margin: 30px 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding: 0 0 15px 0;
  font-weight: 400;
  display: flex;
}

.about .content ul i {
  color: var(--accent-color);
  font-size: 1.25rem;
  line-height: 1.2;
  margin-right: 0.5rem;
}

.about-compact {
  padding-bottom: 40px;
}

.about-compact .row {
  align-items: center;
}

.about-compact .col-lg-5 img {
  height: 380px;
  object-fit: cover;
}

.about-compact .content {
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.why-us-compact {
  padding-top: 40px;
}

.why-us.section + .call-to-action {
  margin-top: 80px;
}

.why-us-compact .img-bg,
.why-us-compact .slides {
  min-height: 380px;
}

.why-us-compact .swiper {
  margin: 80px 80px 50px 80px;
}

.how-we-work .member-info {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 0;
  min-height: 120px;
  padding-left: 18px;
  position: relative;
}

.how-we-work .member-info::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 2px;
  height: 74px;
  background: color-mix(in srgb, var(--default-color), transparent 88%);
}

.how-we-work .member-info span {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.how-we-work .work-head {
  gap: 12px;
  margin-bottom: 8px;
}

.how-we-work .work-head i {
  color: color-mix(in srgb, var(--heading-color), transparent 20%);
  background: color-mix(in srgb, var(--default-color), transparent 95%);
  border-radius: 12px;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.how-we-work .member-info h4 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

.how-we-work .member-info span {
  color: color-mix(in srgb, var(--default-color), transparent 35%);
  line-height: 1.5;
}


/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .team-member {
  background-color: var(--surface-color);
  overflow: hidden;
  border-radius: var(--radius-soft);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  box-shadow: 0 12px 28px rgba(23, 40, 59, 0.08);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.team .team-member .member-img {
  position: relative;
  overflow: hidden;
}

.team .team-member .member-img img {
  width: 100%;
  height: clamp(220px, 26vw, 300px);
  object-fit: cover;
}

.team .team-member .social {
  position: absolute;
  left: 0;
  bottom: 30px;
  right: 0;
  opacity: 0;
  transition: ease-in-out 0.3s;
  text-align: center;
}

.team .team-member .social a {
  background: color-mix(in srgb, var(--contrast-color), transparent 25%);
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0 3px;
  border-radius: 4px;
  width: 36px;
  height: 36px;
  transition: ease-in-out 0.3s;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.team .team-member .social a:hover {
  color: var(--contrast-color);
  background: var(--accent-color);
}

.team .team-member .social i {
  font-size: 18px;
  line-height: 0;
}

.team .team-member .member-info {
  padding: 25px 15px;
  margin-top: auto;
}

.team .team-member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 18px;
}

.team .team-member .member-info span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.team .team-member:hover .social {
  opacity: 1;
  bottom: 15px;
}

.team .team-member:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 36px rgba(23, 40, 59, 0.12);
  border-color: color-mix(in srgb, var(--accent-color), transparent 75%);
}

.team .work-head {
  gap: 12px;
  margin-bottom: 10px;
}

.team .work-head h4 {
  margin: 0;
}
