/* Main Container */
@font-face {
    font-family: 'Montserrat Armenian';
    src: url('../fonts/web_font/Montserratarm-Regular.woff2') format('woff2'),
        url('../fonts/web_font/Montserrat-Armenian-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat Armenian bold';
    src:
        url('../fonts/web_font/Montserratarm-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat Armenian semiBold';
    src:
        url('../fonts/web_font/Montserratarm-SemiBold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat Armenian light';
    src:
        url('../fonts/web_font/Montserratarm-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
}
html, body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
  }
  
  .videoTitle {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;

    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
    height: calc(1.4em * 3); /* 3 տող */
    color: #333;
    padding: 10px 10px 15px;
}


body {
    font-family: 'Montserrat Armenian';
    max-width: 100%;
}

main {
    padding: 9% 4% 2%;
}

.container-two-column {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 0;
}

.left-banner {
    width: 60%;
    padding-right: 40px;
    box-sizing: border-box;
    position: relative;
}

.banner-img {
    width: 100%;
    height: 469px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 20px;
}

.banner-title {
    font-family: 'Montserrat Armenian semiBold';
    font-size: 25px;
    margin-bottom: 11px;
    margin-top: 11px;
    margin-left: 25px;
    color: #111;
}

.banner-text {
  font-size: 13px;
  line-height: 1.6;
  color: #6C6C6C;
  margin-left: 22px;
  margin-right: 22px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 9; /* ✅ ցույց կտա առավելագույնը 6 տող */
  overflow: hidden;
}
.banner-text a {
    color: #833F6D;
    text-decoration: none;
    font-family: 'Montserrat Armenian bold';
}
@media (min-width: 1025px) {
  .banner-text {
    -webkit-line-clamp: 8;
  }
}

@media (max-width: 1024px) {
  .banner-text {
    -webkit-line-clamp: 6;
  }
}

@media (max-width: 768px) {
  .banner-text {
    -webkit-line-clamp: 5;
  }
}






.right-doctors {
    width: 43%;
    padding-left: 45px;
    box-sizing: border-box;
    border-left: 1.5px solid #EAEAEA;
    display: flex;
    align-items: center;
}

.doctors-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: 100%;
}

.doctor-card {
    background-color: #ffffff;
    text-align: center;
    transition: transform 0.2s ease;
    width: 171px;
    height: 164px;
}

.doctor-card:hover {
    transform: translateY(-3px);
}

.doctor-card img {
    width: 100%;
    height: 124px;
    object-fit: cover;
    display: block;
   border-radius: 10px;
}

.doctor-card p {
    font-size: 11px;
    font-family: 'Montserrat Armenian light';
    color: #151515;
    line-height: 1.4;
    padding: 10px;
    margin: 0;
    text-align: left;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}


.image-wrapper {
    position: relative;
    width: 100%;
    height: 469px;
    border-radius: 12px;
    overflow: hidden;
}

.dot-indicators {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    z-index: 2;
}

.dot {
    width: 9px;
    height: 10px;
    border-radius: 50%;
    background-color: white;
    opacity: 0.95;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
}

.dot:hover {
    transform: scale(1.2);
}

.dot.active {
    background-color: #B760A5;
}


/* ≤ 1400px */
@media (max-width: 1400px) {
    .left-banner {
      width: 58%;
      padding-right: 30px;
    }
  
    .right-doctors {
      width: 42%;
      padding-left: 30px;
    }
  
    .doctor-card {
      width: 160px;
      height: 160px;
    }
  }
  
  /* ≤ 1200px */
  @media (max-width: 1200px) {
    .left-banner {
      width: 55%;
      padding-right: 20px;
    }
  
    .right-doctors {
      width: 45%;
      padding-left: 20px;
    }
  
    .doctor-card {
      width: 150px;
    }
  
    .banner-img,
    .image-wrapper {
      height: 400px;
      margin-top: 52px;
    }
  }
  
  /* ≤ 1024px */
  @media (max-width: 1024px) {
    .container-two-column {
      flex-direction: column;
      gap: 30px;
    }
  
    .left-banner,
    .right-doctors {
      width: 100%;
      padding: 0;
      border-left: none;
    }
  
    .doctors-grid {
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
    }
  
    /* .banner-img,
    .image-wrapper {
      height: auto;
    } */
  
    .banner-text {
      margin-left: 0;
    }
  
    .doctor-card {
      width: 100%;
    }
  }
  
  /* ≤ 768px */
  @media (max-width: 768px) {
    main {
      padding: 16px;
    }
  
    .doctors-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 14px;
    }
  
    .banner-title {
      font-size: 16px;
      margin-left: 0;
    }
  
    .banner-text {
      font-size: 13px;
    }
  
    .doctor-card {
      height: auto;
    }
  }
  
  /* ≤ 576px */
  @media (max-width: 576px) {
    .banner-title {
      font-size: 15px;
    }
  
    .banner-text {
      font-size: 12px;
    }
  
    .doctor-card p {
      font-size: 11px;
    }
  
    /* .doctors-grid {
      grid-template-columns: 1fr;
    } */
  
    .dot {
      width: 7px;
      height: 7px;
    }
  }
  
  /* ≤ 400px */
  @media (max-width: 400px) {
    .banner-title {
      font-size: 14px;
    }
  
    .banner-text {
      font-size: 11px;
    }
  
    .doctor-card p {
      font-size: 10px;
    }
  
    .dot {
      width: 6px;
      height: 6px;
    }
  }
  