.tmc-block {
  overflow: hidden;
}
.tmc-block.bg--light-blue {
  background-color: #EAF4FA;
}
.tmc-block__header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem 5rem;
  align-items: end;
  margin-bottom: 3.5rem;
}
.tmc-block__header-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.tmc-block__subheading {
  margin-bottom: 0.6rem;
}
.tmc-block__heading {
  margin-bottom: 1.25rem;
}
.tmc-block__arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-family: "helvetica-lt-pro", sans-serif;
  font-size: clamp(15px, 1.3vw, 19px);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #1F3642;
  transition: color 200ms ease;
}
.tmc-block__arrow-link svg {
  flex-shrink: 0;
  transition: transform 200ms ease;
}
.tmc-block__arrow-link:hover {
  color: #3A7594;
  text-decoration: none;
}
.tmc-block__arrow-link:hover svg {
  transform: translate(2px, -2px);
}
.tmc-block__description {
  font-size: clamp(13px, 0.95vw, 15px);
  line-height: 1.7;
  color: #10181D;
  margin: 0;
}
.tmc-block__swiper {
  overflow: hidden;
}
.tmc-block__swiper:not(.swiper-initialized) .swiper-wrapper {
  display: flex;
  flex-wrap: nowrap;
  gap: 18px;
}
.tmc-block__swiper:not(.swiper-initialized) .swiper-slide {
  flex: 0 0 calc(25% - 14px);
  min-width: 0;
}
.tmc-block__slide {
  display: flex;
  flex-direction: column;
  cursor: pointer;
}
.tmc-block__card-image {
  aspect-ratio: 387/451;
  overflow: hidden;
  border-radius: 10px;
  background: #2C4C5D;
  margin-bottom: 0.85rem;
  flex-shrink: 0;
}
.tmc-block__card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 380ms ease;
}
.tmc-block__slide:hover .tmc-block__card-image img {
  transform: scale(1.04);
}
.tmc-block__card-footer {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.tmc-block__card-role {
  font-family: "helvetica-lt-pro", sans-serif;
  font-size: clamp(9px, 0.75vw, 12px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #10181D;
  display: block;
}
.tmc-block__card-name {
  font-family: "helvetica-lt-pro", sans-serif;
  font-size: clamp(16px, 1.5vw, 24px);
  font-weight: 400;
  color: #1F3642;
  letter-spacing: 0em;
  line-height: 1.2;
  display: block;
}
.tmc-block__controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 2.5rem;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.tmc-block__nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.tmc-block__nav-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}
.tmc-block__nav-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 112px;
  height: 43px;
  border-radius: 100px;
  border: none;
  background: #1F3642;
  color: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  transition: background 200ms ease, opacity 200ms ease, transform 150ms ease;
  flex-shrink: 0;
}
.tmc-block__nav-btn svg {
  flex-shrink: 0;
}
.tmc-block__nav-btn:hover:not(:disabled):not(.is-disabled) {
  background: rgb(47.2989690722, 82.3917525773, 100.7010309278);
  transform: scale(1.03);
}
.tmc-block__nav-btn:disabled, .tmc-block__nav-btn.is-disabled {
  opacity: 0.35;
  cursor: not-allowed;
}
.tmc-block__nav-label {
  font-family: "helvetica-lt-pro", sans-serif;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #1F3642;
  display: block;
}
@media screen and (max-width: 1024px) {
  .tmc-block__header {
    grid-template-columns: 1fr 1fr;
    gap: 2rem 3rem;
  }
}
@media screen and (max-width: 900px) {
  .tmc-block__header {
    grid-template-columns: 1fr;
    margin-bottom: 2.5rem;
  }
  .tmc-block__header-right {
    display: none;
  }
}
@media screen and (max-width: 600px) {
  .tmc-block__nav-btn {
    width: 96px;
    height: 38px;
  }
  .tmc-block__controls {
    flex-direction: column;
    align-items: flex-start;
  }
}/*# sourceMappingURL=team-members-carousel.css.map */