.hero-section{
  height: 600px;
}

.hero-left p {
  margin-right: 60px;
}

.social-media-section{
    padding-top:50px;
}

.hero-left{
  flex: 1;
  min-width: 50%;
}

.hero-right-image img{
    max-width:1000px;
    width: 900px;
    margin-right: -100px;
}

/* ============================== 
   CLINIC LISTING 
================================ */
.clinic-listing {
  padding: 80px 20px 40px;
}

.clinic-listing .container {
  width: 1200px;
  margin: 0 auto;
}

.clinic-card {
  border: 1px solid #cfcfcf;
  border-radius: 18px;
  background: #fff;
  overflow: hidden;
  margin: 0 0 28px;
}

.clinic-card__row {
  display: flex;
  align-items: stretch;
}

.clinic-card__left {
  flex: 0 0 34%;
  max-width: 34%;
  min-height: 320px;
}

.clinic-card__left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.clinic-card__middle {
  flex: 1 1 auto;
  padding: 34px 75px 34px 34px;
}

.clinic-brand {
  margin: 0 0 6px;
  font-size: 34px;
  line-height: 1.1;
  font-weight: 700;
  color: var(--primary-color);
}

.clinic-title {
  margin: 0 0 22px;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 700;
  color: #000;
}

.clinic-hours-title {
  margin: 0 0 14px;
  font-size: 22px;
  line-height: 1.2;
  font-weight: 700;
  color: var(--primary-color);
}

.working-hours {
  width: 100%;
  max-width: 520px;
}

.working-hours__row {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  padding: 6px 0;
  font-size: 16px;
  line-height: 1.5;
  color: #000;
}

.working-hours__day {
  font-weight: 500;
}

.working-hours__time {
  font-weight: 500;
}

.clinic-card__middle .cta-btn {
  margin-top: 22px;
  padding: 12px 28px;
}

.clinic-card__right {
  flex: 0 0 32%;
  max-width: 32%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 34px 34px 34px 0;
}

.clinic-contact {
  width: 100%;
  background: #f1f1f1;
  border-radius: 18px;
  padding: 50px;
  position: relative;
}

.clinic-contact::before {
  content: "";
  width: 64px;
  height: 64px;
  border-radius: 100%;
  background: #a84a87 url("/wp-content/uploads/2026/01/Group-83.svg") center /
    66px no-repeat;
  position: absolute;
  top: -28px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.clinic-contact__item {
  position: relative;
  padding-left: 40px;
  margin: 18px 0;
  font-size: 18px;
  line-height: 1.35;
  color: #000;
  font-weight: 600;
}

.clinic-contact__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 25px;
  height: 25px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 0.9;
}

.clinic-contact__item:nth-child(1)::before {
  background-image: url("/wp-content/uploads/2026/01/Group-3.svg");
  top:5px;
}

.clinic-contact__item:nth-child(2)::before {
  background-image: url("/wp-content/uploads/2026/01/Vector-9.svg");
}

.clinic-contact__item:nth-child(3)::before {
  background-image: url("/wp-content/uploads/2026/01/Vector-8.svg");
}

.clinic-contact__item a {
  color: inherit;
  text-decoration: none;
}

.clinic-contact__item a:hover {
  text-decoration: none;
}