/* Text */
  .contact-description {
    margin-bottom: 32px;
  }

/* Form */
  .custom-contact-form .form-row {
    display: flex;
    flex-wrap: nowrap;
    align-items: stretch;
    gap: 8px;
  }

  .custom-contact-form {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }

  .custom-contact-form .form-group {
  flex-shrink: 1;
  min-width: 0;
  }
  
  .custom-contact-form .form-row.full {
    flex-direction: column;
    align-items: stretch;
  }
      /* Form groups (50% each) */
      .custom-contact-form .form-row.first-last > .form-group,
      .custom-contact-form .form-row.email-subject > .form-group {
        display: flex;
        flex-direction: column;
        flex: 1 1 50%;
        min-width: 250px;
      }

/* Inputs / textarea */
  .custom-contact-form input,
  .custom-contact-form select,
  .custom-contact-form textarea {
    display: block;
    height: 100%;
    width: 100%;
    padding: 8px;
    background-color: var(--color-primary);
    font-size: var(--font-medium);
    border: 1px solid var(--color-accent) !important;
    border-radius: 8px;
    box-sizing: border-box;
  }
    .custom-contact-form textarea {
    min-height: 6em;
    }

/* Message */
  .form-feedback {
    text-align: center;
    font-weight: bold;
  }

/* --- Responsive --- */

/* Form */
  @media (max-width: 768px) {
    .custom-contact-form .form-row {
      flex-wrap: wrap;
    }
  }