.company-section {
  width: 100%;
  min-height: 100vh;
  background: #fff;
  color: var(--color-dark-grey);
  padding: clamp(24px, 4vw, 48px) 0 0 0;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.company-section__inner {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 0;
  padding: 0 clamp(16px, 3vw, 48px);
}
.company-section__kicker {
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 10px;
  color: var(--color-accent-gold-alt);
}
.company-section__title {
  font-size: clamp(32px, 5vw, 72px);
  font-weight: 200;
  line-height: 1.05;
  margin: 0 0 18px 0;
  color: var(--color-dark-grey);
}
.company-section__title span {
  color: var(--color-accent-gold-alt);
}
.company-section__desc {
  font-size: clamp(15px, 2vw, 18px);
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 1200px;
  color: #222;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.company-section__actions {
  display: flex;
  gap: 18px;
  margin-bottom: 38px;
  justify-content: center;
}
.btn--tsa {
  background: transparent;
  border: 2px solid var(--color-accent-gold-alt);
  color: var(--color-dark-grey);
  font-weight: 600;
  transition:
    background 0.18s,
    color 0.18s;
}
.btn--tsa:hover {
  background: var(--color-accent-gold-alt);
  color: #fff;
}

/* Carrousel */
.company-carousel {
  width: 100%;
  overflow: hidden;
  margin-top: 18px;
  position: relative;
  padding-bottom: 48px;
}
.company-carousel__track {
  display: flex;
  align-items: center;
  gap: 32px;
  width: max-content;
  animation: company-scroll 40s linear infinite;
  will-change: transform;
}
.company-carousel__img {
  border-radius: 18px;
  object-fit: cover;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.1);
  background: #eee;
  transition:
    height 0.3s,
    width 0.3s;

  flex: 0 0 auto;
}
.company-carousel__img--sm,
.company-carousel__img--md,
.company-carousel__img--lg {
  width: 380px;
  height: 600px;
  min-width: 380px;
  min-height: 600px;
  max-width: 380px;
  max-height: 600px;
}

#img-carousel-1{
    object-position: 70% 50%;
}

#img-carousel-2{
    object-position: 40% 50%;
}

#img-carousel-5{
  object-position: 24%;
}

#img-carousel-6{
      object-position: 39%;
}

@keyframes company-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (max-width: 900px) {
  .company-section__title {
    font-size: 2rem;
  }
  .company-carousel__img--sm {
    height: 60vw;
    min-height: 200px;
    max-height: 320px;
    width: 60vw;
    min-width: 200px;
    max-width: 320px;
  }
  .company-carousel__img--md {
    height: 70vw;
    min-height: 280px;
    max-height: 420px;
    width: 70vw;
    min-width: 280px;
    max-width: 420px;
  }
  .company-carousel__img--lg {
    height: 70vw;
    min-height: 240px;
    max-height: 420px;
    width: 70vw;
    min-width: 240px;
    max-width: 420px;
  }
}
@media (max-width: 600px) {
  .company-section__inner {
    padding: 0 8px;
  }
  .company-section__desc {
    font-size: 1rem;
  }
  .company-carousel__img--sm {
    height: 80vw;
    min-height: 120px;
    max-height: 200px;
    width: 80vw;
    min-width: 120px;
    max-width: 200px;
  }
  .company-carousel__img--md {
    height: 100vw;
    min-height: 180px;
    max-height: 320px;
    width: 100vw;
    min-width: 180px;
    max-width: 320px;
  }
  .company-carousel__img--lg {
    height: 100vw;
    min-height: 160px;
    max-height: 280px;
    width: 100vw;
    min-width: 160px;
    max-width: 280px;
  }
  .company-carousel__track {
    display: flex;
    align-items: center;
    gap: 32px;
    width: max-content;
    flex-wrap: nowrap;
    animation: company-scroll 40s linear infinite;
    will-change: transform;
  }
}
