.uc-formats {
  padding: 60px 0 120px;
  border-bottom: 1px solid #d8d8d8;
}

.uc-formats__subtitle {
  margin: 0 auto 48px;
  text-align: center;
  font-size: 18px;
}

.uc-formats__card {
  max-width: 83.33%;
  margin: 0 auto;
}

.uc-formats__options {
  margin-top: 56px;
}

.uc-formats__columns {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 130px;
  align-items: stretch;
}

.uc-formats__column {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.uc-formats__column > :last-child {
  margin-top: auto;
}

.uc-formats__item {
  margin-bottom: 40px;
}

.uc-formats__item:last-child {
  margin-bottom: 0;
}

.uc-formats__item-title {
  margin: 0 0 20px;
  font-size: 26px;
  font-weight: 400;
}

.uc-formats__item-lead {
  margin: 0 0 20px;
  font-size: 18px;
  font-weight: 600;
  color: #005e92;
}

.uc-formats__list {
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.uc-formats__list li {
  position: relative;
  margin-bottom: 20px;
  padding-left: 20px;
  font-size: 16px;
}

.uc-formats__list li::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 0;
  width: 7px;
  height: 7px;
  background: #ffc100;
  border-radius: 50%;
}

.uc-formats__license {
  font-size: 16px;
  max-width: 300px;
}

.uc-formats__license a {
  color: #005e92;
  text-decoration: underline;
}

.uc-formats__license a:hover,
.uc-formats__license a:focus {
  color: #007fc5;
}

.uc-formats__cta {
  margin-top: 70px;
  text-align: center;
}

@media (max-width: 1280px) {
  .uc-formats__card {
    max-width: 100%;
  }
}
@media (max-width: 1024px) {
  .uc-formats__card {
    max-width: 100%;
  }
  .uc-formats {
    padding: 60px 0 50px;
  }
  .uc-formats__columns {
    gap: 40px;
  }
}

@media (max-width: 767px) {
  .uc-formats {
    padding: 40px 0 48px;
  }
  .uc-formats__subtitle {
    margin-bottom: 28px;
    font-size: 16px;
  }
  .uc-formats__options {
    display: flex;
    flex-direction: column;
  }
  .uc-formats__columns {
    display: contents;
  }
  .uc-formats__column {
    display: contents;
  }
  .uc-formats__column > :last-child {
    margin-top: 0;
  }
  .uc-formats__item {
    margin-bottom: 15px;
  }
  .uc-formats__item-title {
    padding-top: 20px;
    font-size: 22px;
  }
  .uc-formats__item-lead {
    font-size: 16px;
  }
  .uc-formats__list li {
    font-size: 15px;
  }
  .uc-formats__license {
    order: 5;
    margin-top: 8px;
    max-width: none;
    text-align: center;
  }
  .uc-formats__cta {
    order: 6;
    margin-top: 20px;
  }
}