.products-gallery-block {
  background: #fff;
  padding: 50px 18px 60px;
}

.products-gallery-block .container-fluid {
  max-width: 1180px;
  margin: 0 auto;
}

.product-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  margin-top: 28px;
}

.product-gallery-card {
  background: #fff;
  border: 1px solid rgba(3, 141, 76, 0.16);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(12, 12, 11, 0.08);
  overflow: hidden;
}

.product-gallery-card img {
  aspect-ratio: 4 / 3;
  display: block;
  height: auto;
  object-fit: cover;
  width: 100%;
}

.product-gallery-card h3 {
  color: #0c0c0b;
  font-family: "Exo 2", sans-serif;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.3;
  margin: 0;
  min-height: 68px;
  padding: 16px 16px 18px;
}

.teams-block .container-fluid {
  max-width: 1180px;
}

.team-profile-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin: 0 auto 32px;
  max-width: 1120px;
}

.team-profile-card {
  background: #fff;
  border: 1px solid rgba(3, 141, 76, 0.14);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(12, 12, 11, 0.08);
  overflow: hidden;
  position: relative;
}

.team-profile-card img {
  aspect-ratio: 1 / 1;
  background: #f5f8f3;
  display: block;
  object-fit: cover;
  object-position: center top;
  width: 100%;
}

.team-profile-group {
  background: rgba(3, 141, 76, 0.92);
  border-radius: 999px;
  color: #fff;
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  left: 14px;
  letter-spacing: 0.02em;
  line-height: 1;
  padding: 8px 11px;
  position: absolute;
  text-transform: uppercase;
  top: 14px;
}

.team-profile-copy {
  padding: 18px 18px 20px;
  text-align: center;
}

.team-profile-copy h3 {
  color: #038d4c;
  font-family: Kalnia, serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.2;
  margin: 0 0 7px;
}

.team-profile-copy .designation {
  color: #0c0c0b;
  display: block;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  margin: 0 0 7px;
}

.team-profile-copy p {
  color: #444;
  font-size: 15px;
  line-height: 1.45;
  margin: 0;
}

@media screen and (max-width: 1024px) {
  .product-gallery-grid,
  .team-profile-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media screen and (max-width: 640px) {
  .products-gallery-block {
    padding-left: 12px;
    padding-right: 12px;
  }

  .product-gallery-grid,
  .team-profile-grid {
    grid-template-columns: 1fr;
  }
}
