/* ───────────────────────────────────────────────────────────
   Need Help Info Box
   ─────────────────────────────────────────────────────────── */

.need-help-box {
    display: flex;
    padding: 16px 19px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 8px;
    align-self: stretch;
    border-radius: 8px;
    border: 1px solid var(--gray-2-card-outlines, #E6E6E6);
    background: var(--gray-1-circles, #F5F5F5);
}

.need-help-box__title {
    color: var(--Black, #181818);
    font-family: "Poppins", sans-serif;
    font-size: 15px;
    font-style: normal;
    font-weight: 600;
    line-height: 22px;
    margin: 0;
}

.need-help-box__body {
    color: #212529;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    margin: 0;
}

.need-help-box__phone {
    color: var(--blue-3-buttons, #0C39A1);
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    text-decoration: none;
}

.need-help-box__phone:hover {
    text-decoration: underline;
}

.need-help-box__separator {
    width: 100%;
    border: none;
    border-top: 1px solid #B5B5B5;
    margin: 0;
}

.need-help-box__footer {
    color: var(--gray-5-descriptions, #525252);
    font-family: "Poppins", sans-serif;
    font-size: 10px;
    font-style: normal;
    font-weight: 500;
    line-height: 14px;
    letter-spacing: -0.1px;
    margin: 0;
}

/* ───────────────────────────────────────────────────────────
   State Notice (Search page only)
   ─────────────────────────────────────────────────────────── */

.state-notice {
    display: flex;
    padding: 16px 19px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    align-self: stretch;
    border-radius: 8px;
    border: 1px solid var(--gray-2-card-outlines, #E6E6E6);
    background: var(--White, #FFF);
    color: #212529;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
}
