.cps-block__grid {
  display: grid;
  grid-template-columns: minmax(300px, 460px) 1fr;
  gap: clamp(2rem, 6vw, 4.5rem);
  align-items: start;
}
.cps-block__info {
  background: linear-gradient(230deg, #305265 0%, #1F3642 100%);
  border-radius: 5px;
  padding: clamp(2.5rem, 4vw, 3.5rem) clamp(2rem, 3.5vw, 2.75rem);
}
.cps-block__title {
  margin-bottom: 2rem;
}
.cps-block__group {
  margin-bottom: 2rem;
}
.cps-block__group:last-child {
  margin-bottom: 0;
}
.cps-block__group-title {
  margin-bottom: 0.75rem;
}
.cps-block__lines p {
  margin: 0 0 4px;
  border-bottom: #4d7c96 1px solid;
  padding: 8px 0;
  line-height: 1.3;
}
.cps-block__lines p:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.cps-block__link {
  color: #F6F3F0;
  text-decoration: none;
  transition: color 250ms ease;
}
.cps-block__link:hover, .cps-block__link:focus-visible {
  text-decoration: underline;
  color: #A3D4F2;
}
.cps-block__social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.cps-block__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  background: #305264;
  border-radius: 4px;
  transition: background 200ms ease;
}
.cps-block__social-link:hover, .cps-block__social-link:focus-visible {
  background: #3A7594;
}
.cps-block__social-icon {
  width: 1rem;
  height: 1rem;
  object-fit: contain;
  display: block;
}
.cps-block__form-col {
  min-height: 200px;
}

@media screen and (max-width: 1024px) {
  .cps-block__grid {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 600px) {
  .cps-block__info {
    padding: 2rem 1.5rem;
  }
}/*# sourceMappingURL=contact-page-section.css.map */