/* =====================================================
   HERO PANEL - DESKTOP FIRST
====================================================== */

.hero-panel{

    width:100%;

    max-width:700px;

    margin:18px auto;

    border-radius:10px;

    overflow:hidden;

    background:rgba(255,255,255,0.82);

    box-shadow:0 10px 25px rgba(0,0,0,0.12);

    position:relative;

    z-index:2;
}


/* =====================================================
   HEADER
====================================================== */

.hero-header{

    background:#bf0b26;

    padding:12px 22px;
}


/* TITLE */

.hero-title{

    margin:0;

    color:#fff;

    font-size:30px;

    font-weight:700;

    text-align:center;

    line-height:1.1;

    text-transform:uppercase;

    letter-spacing:0.3px;
}


/* =====================================================
   BODY
====================================================== */

.hero-body{

    padding:14px 24px 18px 24px;
}


/* =====================================================
   COPY
====================================================== */

.hero-copy{

    text-align:center;

    font-size:18px;

    color:#1e376d;

    font-weight:600;

    line-height:1.35;

    margin-bottom:14px;
}


/* =====================================================
   SELLING POINTS
====================================================== */

.hero-points{

    display:flex;

    justify-content:center;

    flex-wrap:wrap;

    gap:8px;

    margin-bottom:16px;
}


/* POINT */

.hero-points span{

    background:#f2f2f2;

    color:#222;

    padding:7px 12px;

    border-radius:30px;

    font-size:13px;

    font-weight:700;

    border:1px solid rgba(0,0,0,0.06);
}


/* =====================================================
   PHONE LIST
====================================================== */

.hero-phone-list{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:18px;

    margin-bottom:16px;
}


/* ROW */

.phone-row{

    display:flex;

    align-items:center;

    justify-content:flex-start;

    gap:10px;

    padding:7px 0;

    border-bottom:1px solid rgba(0,0,0,0.06);
}


/* LOCATION */

.phone-row strong{

    color:#bf0b26;

    font-size:17px;

    font-weight:700;

    width:150px;

    flex-shrink:0;
}

/* NUMBER */

.phone-row span{

    color:#1e376d;

    font-size:16px;

    font-weight:700;

    text-align:right;
}


/* =====================================================
   EMAIL BUTTON
====================================================== */

.hero-email-btn{

    display:block;

    width:fit-content;

    margin:0 auto;

    background:#005ca4;

    color:#fff;

    text-decoration:none;

    padding:11px 22px;

    border-radius:8px;

    font-size:15px;

    font-weight:700;

    text-transform:uppercase;

    letter-spacing:0.2px;
}


.hero-email-btn:hover{

    background:#004b87;

    color:#fff;
}


/* =====================================================
   MOBILE
====================================================== */

@media(max-width:768px){

    .hero-panel{

        width:94%;

        max-width:94%;

        margin:10px auto 18px auto;

        border-radius:8px;

        background:rgba(255,255,255,0.88);

        box-shadow:none;
    }


    /* HEADER */

    .hero-header{

        padding:10px 12px;
    }


    /* TITLE */

    .hero-title{

        font-size:16px;

        line-height:1.15;
    }


    /* BODY */

    .hero-body{

        padding:10px 12px 14px 12px;
    }


    /* REMOVE EXTRA COPY */

    .hero-copy{

        display:none;
    }


    /* REMOVE PILLS */

    .hero-points{

        display:none;
    }


    /* PHONE LIST */

    .hero-phone-list{

        display:flex;

        flex-direction:column;

        gap:0;

        margin-bottom:12px;
    }


    /* ROW */

    .phone-row{

        padding:8px 0;
    }


    /* LOCATION */

    .phone-row strong{

        font-size:15px;
    }


    /* NUMBER */

    .phone-row span{

        font-size:15px;
    }


    /* EMAIL BUTTON */

    .hero-email-btn{

        width:100%;

        text-align:center;

        font-size:13px;

        padding:12px;

        box-sizing:border-box;
    }
	
	
	/* MOBILE PHONE LAYOUT FIX */

.phone-row{

    justify-content:space-between !important;

    gap:8px;
}


.phone-row strong{

    width:auto !important;

    min-width:auto !important;

    font-size:14px;

    flex:none;
}


.phone-row span{

    font-size:14px;

    text-align:right;

    flex:none;
}
	
	
	
/* FORCE TRUE MOBILE WIDTH */

.hero-panel{

    width:95% !important;

    max-width:95% !important;

    margin:10px auto !important;

    left:0 !important;

    transform:none !important;
}


/* BODY */

.hero-body{

    padding:10px !important;
}


/* PHONE LIST */

.hero-phone-list{

    width:100%;

    display:flex;

    flex-direction:column;

    gap:0;
}


/* PHONE ROW */

.phone-row{

    width:100%;

    display:flex;

    justify-content:space-between !important;

    align-items:center;

    gap:6px;

    padding:8px 0;

    box-sizing:border-box;
}


/* LOCATION */

.phone-row strong{

    width:42% !important;

    min-width:42% !important;

    max-width:42% !important;

    font-size:14px;

    line-height:1.2;

    text-align:left;
}

.phone-row{

    padding:10px 2px !important;
}
	
	
/* NUMBER */

.phone-row span{

    width:58% !important;

    min-width:58% !important;

    max-width:58% !important;

    font-size:14px;

    text-align:right;

    line-height:1.2;

    overflow:hidden;
}
/* EMAIL BUTTON */

.hero-email-btn{

    width:100%;

    max-width:100%;

    box-sizing:border-box;

    font-size:12px;

    padding:11px 8px;
}	
	
	
}