  /* ═══ DESKTOP ═══ */
  .appointment-block {
      background: #ecedee;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 0 24px;
    height: 80px;
    border: 1px solid #e0e0e0;
    border-radius: 16px;
    max-width: 1140px;
    margin: 0 auto;
  }

  .appointment-block__icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .appointment-block__text {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
  }

  .appointment-block__title {
    font-size: 17px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.3;
  }

  .appointment-block__subtitle {
    font-size: 14px;
    color: #999;
    line-height: 1.4;
  }

  .appointment-block__btn {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    height: 48px;
    padding: 0 28px;
    background: #1a1a1a;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    border: none;
    border-radius: 40px;
    cursor: pointer;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.2s;
  }

  .appointment-block__btn:hover {
    background: #333;
  }

  .appointment-block__btn svg {
    width: 20px;
    height: 20px;
    transition: transform 0.2s;
  }

  .appointment-block__btn:hover svg {
    transform: translateX(3px);
  }

  /* ═══ MOBILE ≤ 767px ═══ */
  @media (max-width: 767px) {
      
    .appointment-block {
        background: #ecedee;
      display: grid;
      grid-template-columns: 40px 1fr;
      gap: 0 12px;
      height: auto;
      padding: 16px;
      align-items: start;
    }

    .appointment-block__icon {
      grid-column: 1;
      grid-row: 1 / 3;
      width: 40px;
      height: 40px;
      align-self: start;
      margin-top: 2px;
    }

    .appointment-block__icon svg {
      width: 40px;
      height: 40px;
    }

    .appointment-block__text {
      grid-column: 2;
      grid-row: 1;
    }

    .appointment-block__title {
      font-size: 15px;
    }

    .appointment-block__subtitle {
      font-size: 13px;
    }

    .appointment-block__btn {
      grid-column: 2;
      grid-row: 2;
      margin-top: 12px;
      height: 44px;
      padding: 0 20px;
      font-size: 14px;
      justify-content: center;
      width: 100%;
    }
  }



  /* ═══ GRID ═══ */
  .doctors-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  /* ═══ CARD ═══ */
  .doctor-card {
    display: flex;
    flex-direction: row;
    padding: 14px;
    gap: 24px;
    border: 1px solid #E5E5E5;
    border-radius: 16px;
    background: #fff;
  }

  /* — Photo — */
  .doctor-card__photo {
    flex-shrink: 0;
    width: 210px;
    height: 220px;
    object-fit: cover;
    display: block;
    border-radius: 12px;
  }

  /* — Body — */
  .doctor-card__body {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
  }

  .doctor-card__name {
    font-size: 16px;
    font-weight: 600;
    color: #222222;
    line-height: 1.2;
    margin-bottom: 12px;
  }

  .doctor-card__speciality {
    font-size: 15px;
    font-weight: 400;
    color: #444951;
    line-height: 1.4;
    margin-bottom: 8px;
  }

  .doctor-card__experience {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    padding: 4px 10px;
    background: #F1F1F1;
    border-radius: 16px;
    font-size: 13px;
    font-weight: 600;
    color: #444951;
    margin-bottom: 16px;
  }

  .doctor-card__directions {
    font-size: 14px;
    font-weight: 400;
    color: #444951;
    line-height: 1.4;
    margin-bottom: 8px;
  }

  .doctor-card__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 44px;
    background: #444951;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    text-decoration: none;
    margin-top: auto;
    transition: background 0.2s;
  }

  .doctor-card__btn:hover {
    background: #333;
  }

  .doctor-card__btn svg {
    width: 18px;
    height: 18px;
    transition: transform 0.2s;
  }

  .doctor-card__btn:hover svg {
    transform: translateX(3px);
  }

  /* ═══ TABLET 768–1199 ═══ */
  @media (max-width: 1199px) {
      .doctor-card {
    display: flex;
   flex-direction: column;
    padding: 14px;
    gap: 24px;
    border: 1px solid #E5E5E5;
    border-radius: 16px;
    background: #fff;
  }
    .doctors-grid {
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }

    .doctor-card {
      gap: 16px;
    }

    .doctor-card__photo {
   width: 100%;
        height: 300px;
    }

    .doctor-card__name {
      font-size: 18px;
    }
  }

  /* ═══ MOBILE ≤ 767px ═══ */
  @media (max-width: 767px) {
    .doctors-grid {
      grid-template-columns: 1fr;
      gap: 16px;
    }

    .doctor-card {
      flex-direction: column;
      padding: 16px;
      gap: 0;
    }

    .doctor-card__photo {
      width: 100%;
      height: 400px;
      border-radius: 12px;
      margin-bottom: 12px;
    }

    .doctor-card__name {
      font-size: 20px;
      font-weight: 600;
      margin-bottom: 12px;
    }

    .doctor-card__speciality {
      font-size: 14px;
      margin-bottom: 8px;
    }

    .doctor-card__experience {
      font-weight: 600;
      font-size: 13px;
      margin-bottom: 16px;
    }

    .doctor-card__directions {
      font-size: 14px;
      margin-bottom: 16px;
    }

    .doctor-card__btn {
      height: 48px;
      width: 100%;
      font-size: 16px;
      font-weight: 500;
      margin-top: 8px;
    }
  }

