/**
 * Clinicella Laravel — homepage section polish
 */

/* ── Why Clinicella (why-dentspa) ── */
.why-dentspa-section .why-dentspa-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  width: 100%;
}

.why-dentspa-section .why-dentspa-content-icon {
  display: block;
  width: 4.5rem;
  height: 4.5rem;
  flex-shrink: 0;
  object-fit: contain;
}

.why-dentspa-section .why-dentspa-content-heading {
  margin: 0;
  line-height: 1.15;
}

.why-dentspa-section .why-dentspa-content-description {
  margin: 0;
  width: 100%;
  max-width: 36rem;
  line-height: 1.55;
}

.why-dentspa-section .why-dentspa-content-rigtside {
  width: 100%;
}

@media (min-width: 1024px) {
  .why-dentspa-section .why-dentspa-content {
    flex-direction: row;
    align-items: center;
    gap: 2rem;
  }

  .why-dentspa-section .why-dentspa-content-icon {
    width: 5.5rem;
    height: 5.5rem;
  }
}

@media (max-width: 1023px) {
  .why-dentspa-section .why-dentspa-content-container {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }
}

/* ── Doctors / team — büyük kartlar, orijinal temaya yakın grid ── */
.doctors-container-wrapper {
  padding-top: 5rem !important;
  padding-bottom: 5.5rem !important;
}

.doctors-container-wrapper .doctors-container {
  width: 100%;
  max-width: 100%;
}

.doctors-container-wrapper .doctors-wrapper {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.doctors-container-wrapper .doctors-content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (min-width: 1024px) {
  .doctors-container-wrapper .doctors-wrapper {
    flex-direction: column;
    gap: 3rem;
  }

  .doctors-container-wrapper .doctors-content-wrapper {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
  }

  .doctors-container-wrapper .doctors-content {
    flex: 1 1 auto;
    max-width: 42rem;
  }
}

.doctors-container-wrapper .doctors-content h3 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin-bottom: 0.85rem;
  line-height: 1.15;
}

.doctors-container-wrapper .doctors-content p {
  font-size: 1.0625rem;
  line-height: 1.55;
  max-width: 36rem;
}

.doctors-container-wrapper .doctors-cards-wrapper {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.15rem !important;
  width: 100%;
}

@media (min-width: 768px) {
  .doctors-container-wrapper .doctors-cards-wrapper {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.35rem !important;
  }
}

@media (min-width: 1200px) {
  .doctors-container-wrapper .doctors-cards-wrapper {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem !important;
  }
}

@media (min-width: 1400px) {
  .doctors-container-wrapper .doctors-cards-wrapper {
    grid-template-columns: repeat(4, minmax(220px, 1fr));
    gap: 1.75rem !important;
  }
}

.doctors-container-wrapper .doctors-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 100%;
  border-radius: 1.125rem !important;
  overflow: hidden;
  border: 1px solid rgb(27 29 30 / 0.08) !important;
  background: #fff;
  box-shadow: 0 8px 28px rgb(117 89 219 / 0.08);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
  text-decoration: none;
  position: relative;
}

.doctors-container-wrapper .doctors-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 42px rgb(117 89 219 / 0.16);
}

.doctors-container-wrapper .doctors-card-image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  min-height: 220px;
  overflow: hidden;
  background: linear-gradient(180deg, #e8e2fa 0%, #f8f7f2 100%);
}

@media (min-width: 768px) {
  .doctors-container-wrapper .doctors-card-image-wrapper {
    aspect-ratio: 3 / 4;
    min-height: 260px;
  }
}

@media (min-width: 1200px) {
  .doctors-container-wrapper .doctors-card-image-wrapper {
    min-height: 300px;
  }
}

.doctors-container-wrapper .doctors-card-image,
.doctors-container-wrapper .doctors-card-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.doctors-container-wrapper .doctors-card-content {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.4rem;
  padding: 1.1rem 1.15rem 1.25rem !important;
  min-height: 6rem;
}

.doctors-container-wrapper .doctors-card-name {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.25;
  margin: 0;
}

@media (min-width: 768px) {
  .doctors-container-wrapper .doctors-card-name {
    font-size: 1.0625rem;
  }
}

.doctors-container-wrapper .doctors-card-title {
  font-size: 0.875rem;
  line-height: 1.4;
  color: rgb(21 13 48 / 0.72);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.doctors-container-wrapper .doctors-arrow {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  z-index: 2;
  width: 3rem !important;
  height: 3rem !important;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.doctors-container-wrapper .doctors-card:hover .doctors-arrow {
  opacity: 1;
}

@media (max-width: 767px) {
  .doctors-container-wrapper {
    padding-top: 3.5rem !important;
    padding-bottom: 3.5rem !important;
  }

  .doctors-container-wrapper .doctors-card-image-wrapper {
    min-height: 200px;
  }

  .doctors-container-wrapper .doctors-card-content {
    min-height: 5.25rem;
    padding: 0.9rem 1rem 1.1rem !important;
  }
}
