/* "Which of the three are you?" cards on the welcome form (GF 113, field 25).
   Written against Gravity Forms' legacy (ul/li) markup with enough specificity
   to override the plugin's own radio rules. */
.gform_wrapper .ainm-level-choice .ginput_container_radio ul.gfield_radio {
    display: grid !important;
    grid-template-columns: repeat( auto-fit, minmax( 220px, 1fr ) );
    gap: 1rem;
    margin: 0;
    padding: 0;
    list-style: none;
}
.gform_wrapper .ainm-level-choice ul.gfield_radio li.gchoice {
    display: block !important;
    position: relative;
    margin: 0 !important;
    padding: 0 !important;
    overflow: visible;
    list-style: none !important;
}
/* The theme paints list bullets red through ::marker; the choices are list items. */
.gform_wrapper .ainm-level-choice ul.gfield_radio li.gchoice::marker,
.gform_wrapper .ainm-level-choice ul.gfield_radio li.gchoice::before {
    content: none !important;
}
.gform_wrapper .ainm-level-choice ul.gfield_radio li.gchoice input[type="radio"] {
    position: absolute !important;
    top: 0;
    left: 0;
    width: 1px;
    height: 1px;
    margin: 0;
    opacity: 0 !important;
}
.gform_wrapper .ainm-level-choice ul.gfield_radio li.gchoice label {
    display: block !important;
    box-sizing: border-box;
    width: 100% !important;
    max-width: none !important;
    height: 100%;
    margin: 0;
    padding: 1.25rem 1.1rem;
    border: 1px solid #d9d4cc;
    border-radius: 6px;
    background: #fff;
    cursor: pointer;
    font-weight: 400;
    line-height: 1.45;
    white-space: normal;
}
.gform_wrapper .ainm-level-choice ul.gfield_radio li.gchoice input[type="radio"]:checked + label {
    border: 2px solid #d61f2c;
    padding: calc( 1.25rem - 1px ) calc( 1.1rem - 1px );
}
.gform_wrapper .ainm-level-choice ul.gfield_radio li.gchoice input[type="radio"]:focus-visible + label {
    outline: 2px solid #d61f2c;
    outline-offset: 2px;
}
.gform_wrapper .ainm-level-choice .ainm-level-name { display: block; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 0.6rem; }
.gform_wrapper .ainm-level-choice .ainm-level-desc { display: block; font-size: 0.95rem; color: #333; margin-bottom: 0.9rem; }
.gform_wrapper .ainm-level-choice .ainm-level-prep { display: block; font-size: 0.9rem; color: #444; }
.gform_wrapper .ainm-level-choice .ainm-level-prep-label { display: block; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: #777; margin-bottom: 0.3rem; }
.gform_wrapper .ainm-level-choice .gfield_description { margin-bottom: 0.75rem; }
