.paragraph--type--webform {
  padding-block: 80px;
  background:
    linear-gradient(360deg, #FFF -100%, rgba(255, 255, 255, 0.10) 88.68%),
    url(/sites/default/files/2025-11/Cavs-Pattern.png);
  background-blend-mode: difference, normal;

  .content-inner {
    max-width: 1526px;
    margin: 0 auto;
    padding-left: 43px;
    padding-right: 43px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    @media (max-width: 1440px) {
      padding-left: 3vw;
      padding-right: 3vw;
    }

    .field--name-field-heading {
      color: var(--Brand-Secondary, #DD3A31);
      text-align: center;
      font-family: var(--font-sans);
      font-size: 40px;
      font-style: normal;
      font-weight: 600;
      line-height: 110%; /* 44px */
      margin-bottom: 40px;
    }

    .field--name-field-body {
      margin-bottom: 60px;
    }

    .field--name-field-webform {
      width: 100%;
    }

    .field--name-field-webform form {
      width: 100%;
      box-sizing: border-box;

      .form-type-checkbox {
        display: flex;
        gap: 7px;

        label {
          color: #000;
          font-family: var(--font-sans);
          font-size: 16px;
          font-style: normal;
          font-weight: 400;
          line-height: 163%; /* 26.08px */

          a {
            color: var(--Brand-Primary, #25408E);
            font-family: var(--font-sans);
            font-size: 16px;
            font-style: normal;
            font-weight: 700;
            line-height: 163%;
          }
        }

        .form-checkbox {
          position: relative;
          appearance: none;
          width: 26px;
          height: 26px;
          border-radius: 6px;
          border: 2px solid var(--Tertiary, #4AA8DE) !important;
          background: var(--White, #FFF);
          cursor: pointer;
          box-shadow: 0 0 16px 0 rgba(123, 205, 241, 0.26) inset, 0 2px 8px 0 rgba(0, 0, 0, 0.25);

          &:checked::after {
            content: "";
            position: absolute;
            left: 7px;
            top: 1px;
            width: 8px;
            height: 15px;
            border: solid black; /* checkmark color */
            border-width: 0 2px 2px 0;
            transform: rotate(45deg);
          }
        }
      }

      .form-checkboxes {
        display: flex;
        gap: 15px;
        flex-wrap: wrap;
      }

      hr {
        max-width: unset !important;
        background-color: var(--Brand-Secondary, #DD3A31) !important;
        margin-block: 60px 20px !important;
      }

      .form-type-textfield, .form-type-email, .form-type-textarea, .form-type-tel, legend, .form-type-select {
        input, textarea, select {
          border: none;
          border-radius: 6px;
          background: var(--Pure-White, #FFF);
          box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.25);
          padding: 20px 25px;
          width: 100%;
          max-width: 100%;
          box-sizing: border-box;
          box-shadow: 0 0 16px 0 rgba(123, 205, 241, 0.26) inset, 0 2px 8px 0 rgba(0, 0, 0, 0.25);
        }

        label, .fieldset-legend {
          color: var(--Brand-Secondary, #DD3A31);
          font-family: var(--font-sans);
          font-size: 17px;
          font-style: normal;
          font-weight: 600;
          line-height: normal;
          letter-spacing: 1.167px;
          text-transform: uppercase;
          margin-bottom: 5px;
        }
      }

      .form-type-number {
        input, textarea, select {
          border: none;
          border-radius: 6px;
          background: var(--Pure-White, #FFF);
          box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.25);
          padding: 20px 25px;
          box-sizing: border-box;
          box-shadow: 0 0 16px 0 rgba(123, 205, 241, 0.26) inset, 0 2px 8px 0 rgba(0, 0, 0, 0.25);
        }

        label, .fieldset-legend {
          display: flex;
          width: 100%;
          color: var(--Brand-Secondary, #DD3A31);
          font-family: var(--font-sans);
          font-size: 17px;
          font-style: normal;
          font-weight: 600;
          line-height: normal;
          letter-spacing: 1.167px;
          text-transform: uppercase;
          margin-bottom: 5px;
        }
      }

      .form-actions {
        margin: 0 !important;
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.17);
        box-sizing: border-box;

        .webform-button--submit {
          display: inline-flex;
          align-items: center;
          justify-content: center;
          border: none;
          text-wrap: wrap;
          padding: 15px 20px;
          border-radius: 6px;
          background: var(--Brand-Primary, #25408E);
          cursor: pointer;

          color: var(--Pure-White, #FFF);
          text-align: center;
          font-family: var(--font-sans);
          font-size: 24px;
          font-style: normal;
          font-weight: 600;
          letter-spacing: 1.44px;
          text-transform: uppercase;
          transition: padding 0.3s ease, background-color 0.3s ease;
          border: 1px solid transparent;

          &:hover {
            background: var(--Pure-White, #FFF) !important;
            border: 1px solid var(--Brand-Secondary, #DD3A31);
            color: var(--Dark-Base, #282846) !important;

            background-image: none;
            padding-right: 20px;
          }
        }
      }
    }
  }
}