/*-----------------------------------------------------------
    Contact page intro copy
    The paragraph block under the "Reach Out to Us" heading
    describing the call center, capped to a readable line
    length instead of stretching to the full container width.
-----------------------------------------------------------*/

.contact-intro-text {
    max-width: 820px;
    margin-inline: auto;
    margin-top: 20px;
}

.contact-intro-text p {
    margin-bottom: 12px;
}

.contact-intro-text p:last-child {
    margin-bottom: 0;
    font-weight: var(--tj-fw-sbold);
    color: var(--tj-color-heading-primary);
}

.contact-intro-text a {
    color: #6f3a86;
}

.contact-intro-text a:hover {
    text-decoration: underline;
}

/*-----------------------------------------------------------
    Contact form: "how should we contact you" radio group
-----------------------------------------------------------*/
.contact-preference-label {
    display: block;
    margin-bottom: 12px;
    color: var(--tj-color-text-body-3);
}

.contact-preference-options {
    display: flex;
    flex-wrap: wrap;
    gap: 15px 30px;
}

.radio-option {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    color: var(--tj-color-heading-primary);
}

.radio-option input[type="radio"] {
    appearance: none;
    -webkit-appearance: none;
    position: relative;
    width: 18px;
    height: 18px;
    margin: 0;
    border: 1px solid var(--tj-color-border-1);
    border-radius: 50%;
    cursor: pointer;
    flex-shrink: 0;
}

.radio-option input[type="radio"]:checked {
    border-color: #6f3a86;
}

.radio-option input[type="radio"]:checked::after {
    content: "";
    position: absolute;
    inset: 3px;
    border-radius: 50%;
    background-color: #6f3a86;
}
