/* Feature Highlights Section Styles */

.features-wrapper {
  display: flex;
  align-items: center;
  gap: var(--space-3xl);
  overflow: hidden;
  min-height: 335px;
}

@media (max-width: 1023px) {
  .features-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-xl);
    min-height: auto;
  }
}

/* Content Column */
.content-column {
  flex: 0 0 auto;
  width: 100%;
  max-width: 540px;
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  padding-top: var(--space-2xl);
}

@media (max-width: 1023px) {
  .content-column {
    max-width: 100%;
    padding-top: var(--space-lg);
  }
}

.heading-wrapper h2 {
  line-height: 1.15;
  letter-spacing: -0.96px;
}

.description-wrapper p {
  line-height: 1.44;
  letter-spacing: -0.16px;
}

/* Features Column */
.features-column {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  padding-top: var(--space-2xl);
  padding-bottom: var(--space-2xl);
}

@media (max-width: 1023px) {
  .features-column {
    width: 100%;
    padding-top: var(--space-lg);
    padding-bottom: var(--space-lg);
  }
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-sm);
  width: 100%;
}

@media (max-width: 767px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

/* Feature Cards */
.feature-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: var(--space-md);
  padding: var(--space-lg) var(--space-md);
  border-radius: 16px;
}

.icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.icon-wrapper img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.text-wrapper p {
  line-height: 1.47;
  text-align: center;
}

/* Doctors Section */
.doctors-wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: var(--space-xl);
  margin-top: var(--space-xl);
}

.doctor-card {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  flex-shrink: 0;
}

.doctor-photo {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 8px;
  overflow: hidden;
}

.doctor-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.doctor-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.doctor-name {
  margin: 0;
  line-height: 1.2;
  font-size: 0.95rem !important;
  white-space: normal;
  word-wrap: break-word;
}

.doctor-title {
  margin: 0;
  line-height: 1.3;
  opacity: 0.7;
  font-size: 0.75rem !important;
  white-space: normal;
  word-wrap: break-word;
}

@media (max-width: 767px) {
  .doctors-wrapper {
    gap: var(--space-md);
  }
  
  .doctor-photo {
    width: 48px;
    height: 48px;
  }
  
  .doctor-name {
    font-size: 0.85rem !important;
  }
  
  .doctor-title {
    font-size: 0.7rem !important;
  }
}

/* ================================
   V2 LAYOUT - Doctors Left, Content Right
   ================================ */

.features-wrapper-v2 {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

@media (max-width: 1023px) {
  .features-wrapper-v2 {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
}

/* Doctors Column (Left) */
.doctors-column {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

@media (max-width: 1023px) {
  .doctors-column {
    flex-direction: row;
    flex-wrap: wrap;
    gap: var(--space-lg);
  }
}

.doctor-card-v2 {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
}

.doctor-photo-v2 {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
}

.doctor-photo-v2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.doctor-info-v2 {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.doctor-name-v2 {
  margin: 0;
  font-size: 1.125rem;
  line-height: 1.3;
}

.doctor-title-v2 {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.4;
  opacity: 0.8;
}

/* Content Column (Right) */
.content-column-v2 {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.section-heading-v2 {
  margin: 0;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.section-description-v2 {
  margin: 0;
  line-height: 1.6;
}

/* Bullet List */
.bullet-list-v2 {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.bullet-item-v2 {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
}

.bullet-icon-v2 {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  margin-top: 4px;
  color: var(--clr-black);
}

.bullet-icon-v2 svg {
  width: 100%;
  height: 100%;
}

.bullet-text-v2 {
  line-height: 1.5;
}

/* Closing Text */
.closing-text-v2 {
  margin: 0;
  margin-top: var(--space-md);
  line-height: 1.6;
}

