.c-brochure {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(22rem, 34rem) minmax(0, 1fr);
  gap: 6rem;
  align-items: center;
  margin-top: 4rem;
}

.c-brochure__cover {
  justify-self: center;
  width: 100%;
  max-width: 34rem;
}

.c-brochure__cover-link {
  display: block;
  overflow: hidden;
  border-radius: 0.4rem;
  box-shadow: 0 1.6rem 4rem rgba(34, 31, 92, 0.18);
  background-color: #e7eef3;
  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.c-brochure__cover-link:hover {
  transform: translateY(-0.4rem);
  box-shadow: 0 2.2rem 4.8rem rgba(34, 31, 92, 0.24);
}

.c-brochure__cover img {
  display: block;
  width: 100%;
  height: auto;
}

.c-brochure__lead {
  margin: 0 0 2.4rem;
  font-size: 2rem;
  line-height: 2.8rem;
  color: #404040;
}

.c-brochure__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 2.4rem;
  margin: 0 0 3.2rem;
  padding: 0;
  list-style: none;
  font-size: 1.6rem;
  line-height: 2.2rem;
  font-weight: 700;
  color: #221f5c;
  text-transform: uppercase;
}

.c-brochure__meta li {
  position: relative;
}

.c-brochure__meta li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -1.4rem;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background-color: #afc2d0;
  transform: translateY(-50%);
}

.c-brochure__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem 2.8rem;
}

.c-brochure__actions .c-btn--section-primary .c-btn__wrap {
  column-gap: 1rem;
}

.c-brochure__actions .c-btn--section-primary svg path {
  stroke: currentColor;
}

.c-brochure__actions .c-btn--w-uline {
  font-size: 1.6rem;
  line-height: 2.2rem;
  font-weight: 700;
}

.c-brochure__note {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin: 3.2rem 0 0;
  font-size: 1.6rem;
  line-height: 2.2rem;
  color: #221f5c;
}

.c-brochure__note svg {
  flex-shrink: 0;
  width: 2.8rem;
  height: 2rem;
}

.c-brochure-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.c-brochure-points__item {
  display: flex;
  flex-direction: column;
  height: 100%;
  margin: 0;
  padding: 3.2rem 2.8rem 3.6rem;
  background-color: #e7eef3;
  border-radius: 1.6rem;
}

.c-brochure-points__title {
  margin: 0 0 1.6rem;
  font-size: 2.4rem;
  line-height: 3.2rem;
  font-weight: 700;
  color: #221f5c;
}

.c-brochure-points__text {
  margin: 0;
  font-size: 1.6rem;
  line-height: 2.2rem;
  color: #404040;
}

@media (max-width: 1200px) {
  .c-brochure {
    gap: 4rem;
  }
}

@media (max-width: 980px) {
  .c-brochure {
    grid-template-columns: 1fr;
    gap: 3.2rem;
    margin-top: 2.4rem;
  }

  .c-brochure__cover {
    max-width: 28rem;
  }

  .c-brochure__lead {
    font-size: 1.8rem;
    line-height: 2.5rem;
  }

  .c-brochure-points {
    grid-template-columns: 1fr;
  }

  .c-brochure-points__title {
    font-size: 2rem;
    line-height: 2.8rem;
  }
}

@media (max-width: 670px) {
  .c-brochure {
    margin-top: 1.6rem;
  }

  .c-brochure__cover {
    max-width: 24rem;
  }

  .c-brochure__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .c-brochure__actions .c-btn--section-primary {
    text-align: center;
  }

  .c-brochure__actions .c-btn--w-uline {
    align-self: center;
  }

  .c-brochure-points__item {
    padding: 2.4rem 2rem 2.8rem;
  }
}
