:root {
  interpolate-size: allow-keywords;
}

body {
  color: var(--dca-color-scheme-text);
  line-height: 22px;
}

.container {
  @media (min-width: 768px) {
    max-width: 780px;
  }

  @media (min-width: 992px) {
    max-width: 970px;
  }

  @media (min-width: 1200px) {
    max-width: 1200px;
  }
}

a {
  color: inherit;
  text-decoration: underline;

  &:hover {
    text-decoration: none;

    &:is(.text a):not(.button) {
      color: #19703e;
    }
  }
}

.paragraph--type--webform {
  label {
    display: block;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 10px;
    width: max-content;
  }

  input[type="text"], input[type="email"], select, textarea {
    border: 1px solid #000;
    max-width: 663px;
    padding: 13px 10px 14px;
    width: 100%;
  }

  select {
    appearance: none;
  }

  input[type="submit"] {
    background: #FFF;
    border: 1px solid #000;
    cursor: pointer;
    font-weight: 600;
    line-height: 21px;
    padding: 14px 22px;
    transition: linear 0.2s;
    transition-property: background-color, color;

    &:hover {
      background: #000;
      color: #FFF;
    }
  }

  .form-actions {
    padding-top: 10px;
  }
}

.button {
  display: inline-block;
  text-align: center;
  padding: 1rem;
}

.button--outline {
  background: none;
  border: 1px solid currentColor;
  color: currentColor;
  line-height: 16px;
  padding: 14px 30px;
  text-decoration: none;
  transition: linear 0.2s;
  transition-property: background-color, color;

  &:hover {
    color: #FFF;
    background: #000;
  }
}

.button--solid {
  background: #e8e8e8;
  border: 1px solid #5b5b5b;
  color: #5b5b5b;
  padding: 8px 10px;
  text-decoration: none;
}

.large {
  font-size: 20px;
  line-height: 28px;
}

h2.larger {
  font-size: 25px;
  text-transform: uppercase;
}

h2.colored {
  color: var(--dca-color-scheme);
}

.button--round-dark {
  background-color: #32373c;
  border-radius: 9999px;
  box-shadow: none;
  text-decoration: none;
  padding: calc(.667em + 2px) calc(1.333em + 2px);
  font-size: 1.125em;
}

.button--round-em {
  background: #304ea1;
  border-radius: 9999px;
  color: #FFF !important;
  font-weight: bold;
  padding: calc(.667em + 2px) calc(1.333em + 2px);
  font-size: 1.125em;

  &:hover {
    text-decoration: underline;
  }
}
