#block-coikonkurs-hero {
  padding: 34px 0 42px;
  background-image: url("../images/hero-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
}

.coi-hero__container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 0.9fr 1.25fr;
  align-items: center;
}

.coi-hero__title {
  margin: 0 0 22px;
  color: #173768;
  font-size: 42px;
  line-height: 1.18;
  font-weight: 800;
}

.coi-hero__text {
  margin: 0 0 28px;
  color: #35537a;
  font-size: 17px;
  line-height: 1.55;
  font-weight: 500;
}

.coi-hero__actions {
  display: flex;
  gap: 16px;
  align-items: center;
}

.coi-hero__image img {
  display: block;
  width: 100%;
  height: auto;
}

@media (max-width: 900px) {
  .coi-hero__container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .coi-hero__actions {
    justify-content: center;
  }

  .coi-hero__title {
    font-size: 34px;
  }
}

@media (max-width: 520px) {
  .coi-hero {
    padding-top: 24px;
  }

  .coi-hero__title {
    font-size: 28px;
  }

  .coi-hero__text {
    font-size: 15px;
  }

  .coi-hero__actions {
    flex-direction: column;
  }
}