/* GLOBAL RESET */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
  font-family: Arial, sans-serif;
}

.banner-wrapper {
  width: 100vw;
  margin: 0;
  padding: 0;
}

.swiper {
  width: 100%;
  max-width: 1317px;
  height: 551px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
}

.swiper-slide video,
.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 768px) {
  .swiper {
    width: 100vw;
    height: auto;
    aspect-ratio: 1317/551;
    border-radius: 0;
  }
  .swiper-slide video,
  .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.team-card {
  width: 132px;
  height: 125px;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 8px rgba(0,0,0,0.1);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 8px;
  margin: 5px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.team-card img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 6px;
}

.team-card h3 {
  margin: 0;
  font-size: 12px;
  color: #333;
}

.team-card p {
  margin: 2px 0 0;
  font-size: 10px;
  color: #777;
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.2);
}

#teamContainer {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  padding: 20px 0;
  background: #f4f4f4;
}
