.artizona-treatment-choice {
    margin: 24px 0;
}

.treatment-heading span {
    color: #c76323;
    font-size: .75rem;
    font-weight: 900;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.treatment-heading h2 {
    margin: 5px 0 14px;
    font-size: 1.35rem;
    letter-spacing: -.025em;
}

.treatment-options {
    display: grid;
    grid-template-columns: repeat(2,minmax(0,1fr));
    gap: 12px;
}

.treatment-card {
    display: grid;
    grid-template-columns: auto 36px 1fr;
    gap: 11px;
    align-items: flex-start;
    padding: 17px;
    border: 1px solid rgba(25,25,25,.1);
    border-radius: 17px;
    background: #fff;
    cursor: pointer;
    transition:
        border .16s ease,
        box-shadow .16s ease,
        transform .16s ease;
}

.treatment-card:hover {
    transform: translateY(-1px);
}

.treatment-card.selected {
    border-color: #191919;
    box-shadow: 0 10px 30px rgba(25,25,25,.06);
}

.treatment-card.urgent.selected {
    border-color: #ef7d32;
    background: #fffaf6;
}

.treatment-card > input {
    margin-top: 7px;
    accent-color: #ef7d32;
}

.treatment-icon {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #f0f0ec;
    font-weight: 950;
}

.treatment-card.urgent .treatment-icon {
    background: #fff0e5;
    color: #c65f1d;
}

.treatment-copy strong,
.treatment-copy small {
    display: block;
}

.treatment-copy small {
    margin-top: 5px;
    color: #747671;
    line-height: 1.45;
}

.urgency-disclaimer {
    display: none;
    margin-top: 12px;
    padding: 17px;
    border-left: 4px solid #ef7d32;
    border-radius: 13px;
    background: #fff3e9;
}

.urgency-disclaimer.visible {
    display: block;
}

.urgency-disclaimer label {
    display: grid;
    grid-template-columns: 20px 1fr;
    gap: 10px;
    align-items: flex-start;
    line-height: 1.48;
}

.urgency-disclaimer input {
    width: 17px;
    height: 17px;
    margin-top: 3px;
    accent-color: #ef7d32;
}

.urgency-disclaimer p {
    margin: 10px 0 0 30px;
    color: #8b6345;
    font-size: .8rem;
    line-height: 1.4;
}

@media (max-width: 650px) {
    .treatment-options {
        grid-template-columns: 1fr;
    }
}
