/* ==== SCSS Utils ==== */
/* ========== Layout & Grid ========== */
/* ========== Fonts ========== */
/* ========== Elderplan Color Palette ========== */
/* Based on Figma designs - 2026-05-18 */
/* ========== Semantic Color Aliases ========== */
/* ========== Spacing ========== */
/* ========== Borders ========== */
/* ========== Z-Index ========== */
/* ========== SVGS ========== */
/* ==== SCSS Utils ==== */
/* ========== Font Weights ========== */
/* ========== Font Sizes ========== */
/* ==== SCSS Utils ==== */
/* ========== Breakpoints for Mixins ========== */
/* ======= Media Queries ======= */
/* Mobile */
/* Tablet */
/* Desktop */
/* Desktop XL */
/* Desktop XXL */
/* Custom media queries */
/* ==== SCSS Utils ==== */
/* ==== SCSS Utils ==== */
/* ======= Media ======= */
/* ======= SVG ======= */
/* ======= Typography ======= */
/* ======= Storybook Goodies ======= */
/* ======= Form Spacing ======= */
/* ======= Input Styles ======= */
/* ==== SCSS Utils ==== */
/* ======= Buttons ======= */
/* Base button styles */
/* Primary button styles */
/* Secondary button styles */
/* Blue button styles */
/* Green button styles */
/* Link button styles */
/* Button Icon styles */
/* Button Icon styles */
/* ==== SCSS Utils ==== */
/* ======= Layout ======= */
/* ======= FLEXBOX MIXINS ======= */
/* ======= GRID MIXINS ======= */
/* ==== SCSS Utils ==== */
/* MJ 7.17.24: Only call utilites like variable definitions and mixins.
* ! Do not add any class or ID selects, or it will render output into EVERY .css file.
* Add styles to global.scss instead to add styles globally.
*/
/**
 * Contact Form Component
 */
.contact-form {
  margin-bottom: 64px;
}
.contact-form > .container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 992px) {
  .contact-form > .container {
    flex-direction: row;
    align-items: center;
    gap: 16px;
  }
}
.contact-form .contact-form__image {
  flex: 1 1 40%;
}
.contact-form .contact-form__image img {
  display: block;
  height: auto;
  max-width: none;
}
.contact-form .contact-form__content {
  flex: 1 1 60%;
}
.contact-form h2 {
  margin-bottom: 16px;
}
.contact-form .wpcf7-form p {
  margin-bottom: 24px;
}
.contact-form .wpcf7-form label {
  display: block;
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.contact-form .wpcf7-form label .field-subtitle {
  font-size: 1.125rem;
  font-weight: 400;
  display: block;
  margin-top: 0;
}
.contact-form .wpcf7-form label .wpcf7-form-control-wrap {
  display: block;
}
.contact-form .wpcf7-form input[type=text],
.contact-form .wpcf7-form input[type=email],
.contact-form .wpcf7-form select,
.contact-form .wpcf7-form textarea {
  border: 1px solid #444444;
  margin-top: 8px;
}
.contact-form .wpcf7-form textarea {
  width: 100%;
}
/*# sourceMappingURL=contact-form.css.map */