.company-page {
  background: #ececec;
  font-family: 'Roboto Condensed', 'Inter', sans-serif;
}

.company-hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: flex-end;
  color: #fff;
  background-image:
    linear-gradient(180deg, rgba(10, 24, 64, 0.1) 0%, rgba(10, 24, 64, 0.62) 84%),
    url('../../assets/images/companybg.png');
  background-size: cover;
  background-position: center;
}

.company-hero__content {
  padding: 0 0 54px;
}

.company-hero__title {
  margin: 0;
  font-size: clamp(1.6rem, 2.53vw, 2.67rem);
  line-height: 1.08;
  font-weight: 400;
  color: #fff;
}

.company-hero__subtitle {
  margin: 12px 0 0;
  font-size: clamp(0.7rem, 1.07vw, 1.13rem);
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.95);
}

.company-content {
  padding: 54px 0 64px;
}

.company-intro {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(540px, 2.2fr);
  gap: 56px;
  align-items: start;
}

.company-intro__title {
  margin: 0;
  font-size: clamp(1.33rem, 2vw, 2.37rem);
  line-height: 1.06;
  color: #152232;
}

.company-intro__lead {
  margin: 0;
  font-size: clamp(0.72rem, 1.13vw, 1.45rem);
  line-height: 1.36;
  color: #26384a;
}


.company-at-a-glance {
  margin-top: 64px;
}

.company-at-a-glance__title {
  margin: 0;
  font-size: clamp(1.33rem, 2vw, 2.33rem);
  line-height: 1.08;
  color: #152232;
}

.company-at-a-glance__text {
  margin: 26px 0 0;
  font-size: clamp(0.72rem, 1.11vw, 1.44rem);
  line-height: 1.35;
  color: #26384a;
}

.company-at-a-glance__text strong {
  color: #12263a;
  font-weight: 700;
}

@media (max-width: 1100px) {
  .company-hero {
    min-height: 420px;
  }

  .company-content {
    padding: 38px 0 46px;
  }

  .company-intro {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .company-at-a-glance {
    margin-top: 40px;
  }

  .company-at-a-glance__text {
    margin-top: 16px;
  }
}

@media (max-width: 768px) {
  .company-hero {
    min-height: 300px;
  }

  .company-hero__content {
    padding-bottom: 32px;
  }

  .company-content {
    padding: 28px 0 34px;
  }

}
