/* Pharmacists Page Styles */

.pharmacists-sec .container {
  max-width: 1150px;
}

/* Pharmacy bento grid */
.pharmacy-bento {
  display: flex;
  gap: 10px;
  height: 400px;
}

.pharmacy-bento__main {
  flex: 1.3;
  border-radius: 14px;
  overflow: hidden;
}

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

.pharmacy-bento__side {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pharmacy-bento__side-top,
.pharmacy-bento__side-bottom {
  flex: 1;
  border-radius: 14px;
  overflow: hidden;
}

.pharmacy-bento__side-top img,
.pharmacy-bento__side-bottom img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 576px) {
  .pharmacy-bento {
    height: 300px;
  }
}
