/* ========================================
   LOGO & TEAM PHOTOS STYLES
======================================== */

/* Brand Logo in Navbar */
.brand__logo {
  height: 40px;
  width: auto;
  display: block;
  transition: opacity 0.3s ease;
}

.brand__logo:hover {
  opacity: 0.8;
}

@media (max-width: 768px) {
  .brand__logo {
    height: 32px;
  }
}

/* Team Member Photo */
.team-member__photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: var(--radius);
}
