.contact-hero-7__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.95fr);
  gap: 44px;
  align-items: start;
}

.contact-hero-7__content {
  padding-top: 10px;
}

.contact-hero-7__actions {
  display: flex;
  gap: 18px;
  margin-top: 30px;
}

.contact-hero-7__form-shell {
  border-radius: 56px;
  background: #dff4ff;
  box-shadow: 0 10px 28px rgba(113, 150, 173, 0.16);
}

.contact-hero-7__form-card {
  display: flex;
  flex-direction: column;
  gap: 26px;
  padding: 46px 44px 34px;
}

.contact-hero-7__field {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-hero-7__field span {
  color: #343943;
  font-family: var(--font-family-display);
  font-size: 18px;
  font-weight: 700;
}

.contact-hero-7__field span strong {
  color: #eb5d3b;
}

.contact-hero-7__field input,
.contact-hero-7__field textarea {
  width: 100%;
  border: 0;
  border-bottom: 2px solid rgba(52, 57, 67, 0.85);
  padding: 0 0 12px;
  border-radius: 0;
  background: transparent;
  color: #2a2f36;
  font-family: var(--font-family);
  font-size: 17px;
}

.contact-hero-7__field textarea {
  resize: vertical;
  min-height: 70px;
}

.contact-hero-7__field input:focus,
.contact-hero-7__field textarea:focus {
  outline: none;
  border-bottom-color: #7fb6dc;
}

.contact-hero-7__submit {
  width: min(100%, 308px);
  margin-left: auto;
}

@media (max-width: 1180px) {
  .contact-hero-7__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .contact-hero-7__form-shell {
    border-radius: 32px;
  }

  .contact-hero-7__form-card {
    padding: 30px 22px 24px;
    gap: 20px;
  }

  .contact-hero-7__field span {
    font-size: 16px;
  }
}
