/* state.css
   State landing pages and the states index. */

/* ---------- state pages ---------- */

.state-facts,
.state-cities,
.state-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 75px var(--gutter);
    box-sizing: border-box;
    background-color: white;
}

.state-cities {
    background-color: #f6f8fa;
}

.state-facts .facts {
    display: flex;
    align-items: stretch;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    width: 100%;
}

.state-facts .facts .fact {
    display: flex;
    flex: 1;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 8px;
    min-width: 240px;
    padding: 26px 24px;
    box-sizing: border-box;
    background-color: #f6f8fa;
    border: 1px solid rgba(1, 1, 1, 0.07);
    border-left: 4px solid #075d9b;
    border-radius: 8px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.state-facts .facts .fact.wide {
    flex: 1.6;
}

.state-facts .facts .fact:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 38px rgba(13, 43, 74, 0.12);
}

.state-facts .facts .fact i {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #075d9b;
    font-size: clamp(18px, 2vw, 22px);
}

.state-facts .facts .fact b {
    font-family: "Lora", serif;
    font-size: clamp(17px, 2vw, 22px);
    color: #0d2b4a;
    line-height: 1.35;
}

.state-facts .facts .fact p {
    font-family: "Montserrat", sans-serif;
    font-size: clamp(10px, 1.1vw, 12px);
    color: rgba(1, 1, 1, 0.55);
}

.verify {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 8px;
    max-width: 900px;
    margin-top: 32px;
    padding: 14px 16px;
    border-radius: 6px;
    background-color: rgba(214, 152, 76, 0.1);
    border: 1px solid rgba(214, 152, 76, 0.35);
    font-family: "Montserrat", sans-serif;
    font-size: clamp(10px, 1.1vw, 12px);
    color: rgba(1, 1, 1, 0.6);
    line-height: 1.75;
}

.verify i {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c8873c;
    font-size: 12px;
    margin-top: 3px;
}

.state-cities .cities {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
}

.state-cities .cities .city {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 12px 20px;
    border-radius: 30px;
    background-color: white;
    border: 1px solid rgba(1, 1, 1, 0.08);
    font-family: "Montserrat", sans-serif;
    font-size: clamp(11px, 1.2vw, 13px);
    color: #0d2b4a;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.state-cities .cities .city:hover {
    transform: translateY(-4px);
    border-color: rgba(8, 114, 189, 0.4);
    box-shadow: 0 12px 26px rgba(13, 43, 74, 0.1);
}

.state-cities .cities .city i {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #075d9b;
    font-size: 12px;
}

.state-grid .grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
    gap: 14px;
    width: 100%;
}

.state-grid .grid .tile {
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-decoration: none;
    padding: 18px 20px;
    border-radius: 8px;
    background-color: #f6f8fa;
    border: 1px solid rgba(1, 1, 1, 0.07);
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease, background-color 0.35s ease;
}

.state-grid .grid .tile:hover {
    transform: translateY(-5px);
    background-color: white;
    border-color: rgba(8, 114, 189, 0.4);
    box-shadow: 0 16px 32px rgba(13, 43, 74, 0.12);
}

.state-grid .grid .tile b {
    font-family: "Montserrat", sans-serif;
    font-size: clamp(12px, 1.3vw, 14px);
    color: #0d2b4a;
}

.state-grid .grid .tile span {
    font-family: "Montserrat", sans-serif;
    font-size: clamp(10px, 1.0vw, 11px);
    color: rgba(1, 1, 1, 0.5);
}


/* ---------- how cases in this state are handled ---------- */

.state-network {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px var(--gutter);
    box-sizing: border-box;
    background-color: white;
}

.state-network .steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    width: 100%;
}

.state-network .steps .step {
    display: flex;
    flex-direction: column;
    gap: 9px;
    padding: 30px 26px;
    box-sizing: border-box;
    background-color: #f6f8fa;
    border: 1px solid rgba(1, 1, 1, 0.06);
    border-radius: 10px;
    transition: transform 0.4s cubic-bezier(0.2, 0.7, 0.3, 1), box-shadow 0.4s ease;
}

.state-network .steps .step:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(13, 43, 74, 0.12);
}

.state-network .steps .step .n {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-image: linear-gradient(140deg, #0872bd, #075d9b);
    color: white;
    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    font-weight: 700;
}

.state-network .steps .step h4 {
    font-family: "Lora", serif;
    font-size: clamp(16px, 1.9vw, 19px);
    font-weight: 600;
    color: #0d2b4a;
    margin-top: 4px;
}

.state-network .steps .step p {
    font-family: "Montserrat", sans-serif;
    font-size: clamp(11px, 1.25vw, 13px);
    color: rgba(1, 1, 1, 0.6);
    line-height: 1.75;
}

/* licensure disclosure - required, so it is legible rather than hidden */
.state-network .disclosure {
    max-width: 900px;
    margin-top: 34px;
    padding: 16px 18px;
    border-radius: 8px;
    background-color: #f6f8fa;
    border: 1px solid rgba(1, 1, 1, 0.08);
    font-family: "Montserrat", sans-serif;
    font-size: clamp(11px, 1.15vw, 12.5px);
    color: rgba(1, 1, 1, 0.62);
    line-height: 1.75;
    text-align: center;
}


/* ---------- contact page ---------- */

.contact-hero {
    background-image: linear-gradient(125deg, #0a2540, #0d3a63);
}

.contact-hero .blur {
    display: none;
}

.contact-hero .left .content .details {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: 22px;
}

.contact-hero .left .content .details .row {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 13px;
    padding: 13px 0;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    transition: transform 0.3s ease;
}

.contact-hero .left .content .details a.row:hover {
    transform: translateX(4px);
}

.contact-hero .left .content .details .row:last-child {
    border-bottom: none;
}

.contact-hero .left .content .details .row i {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(8, 114, 189, 0.28);
    color: #8cc3ee;
    border-radius: 9px;
    width: 38px;
    height: 38px;
    min-width: 38px;
    font-size: 15px;
}

.contact-hero .left .content .details .row .text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.contact-hero .left .content .details .row .text b {
    font-family: "Montserrat", sans-serif;
    font-size: clamp(10px, 1.1vw, 11.5px);
    letter-spacing: 1.1px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
}

.contact-hero .left .content .details .row .text span {
    font-family: "Montserrat", sans-serif;
    font-size: clamp(13px, 1.4vw, 15px);
    color: white;
    line-height: 1.5;
}

.contact-hero .left .content .map-link {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 6px;
    align-self: flex-start;
    min-height: 44px;
    margin-top: 14px;
    text-decoration: none;
    color: #8cc3ee;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    font-size: clamp(11px, 1.2vw, 13px);
    transition: gap 0.3s ease;
}

.contact-hero .left .content .map-link:hover {
    gap: 13px;
}

.contact-hero .left .content .map-link i {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.contact-map {
    display: block;
    line-height: 0;
    background-color: #0a2540;
}

.contact-map iframe {
    display: block;
    width: 100%;
    height: 380px;
    border: 0;
    filter: grayscale(0.25);
}
