/*
Theme Name: Butler Insurance Network Block
Theme URI: https://thebutler.cc/
Author: Drew Gerhard
Description: Lightweight block-friendly WordPress theme for Butler Insurance Network.
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: butler-insurance-network
*/

/* =========================================================
   ROOT VARIABLES
   ========================================================= */

:root {
    --bin-navy: #08294c;
    --bin-navy-dark: #031a32;
    --bin-blue: #174f83;
    --bin-orange: #ff7626;
    --bin-orange-dark: #df5913;
    --bin-light-blue: #eaf5fb;
    --bin-soft-blue: #cde9f5;
    --bin-white: #ffffff;
    --bin-light: #f7fafc;
    --bin-gray: #5f6f7f;
    --bin-dark: #172433;
    --bin-border: #d8e5ee;
    --bin-shadow: 0 18px 48px rgba(3, 26, 50, 0.13);
    --bin-radius: 22px;
    --bin-content: 1180px;
    --bin-home-section: 1200px;
}


/* =========================================================
   BASE / RESET
   Mobile-first defaults
   ========================================================= */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--bin-dark);
    background: var(--bin-white);
    font-family: Inter, Arial, Helvetica, sans-serif;
    font-size: 17px;
    line-height: 1.65;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: var(--bin-blue);
    text-decoration-thickness: 2px;
    text-underline-offset: 3px;
}

a:hover,
a:focus {
    color: var(--bin-orange-dark);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
    color: var(--bin-navy);
    font-family: Georgia, "Times New Roman", serif;
    line-height: 1.1;
}

h1 {
    font-size: clamp(2.5rem, 12vw, 5rem);
}

h2 {
    font-size: clamp(2rem, 9vw, 3.45rem);
}

h3 {
    font-size: clamp(1.35rem, 6vw, 1.85rem);
}

p {
    margin-top: 0;
}

button,
input,
textarea,
select {
    font: inherit;
}

.wp-site-blocks {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow: hidden;
}

main {
    flex: 1;
}

.aligncenter {
    display: block;
    margin-right: auto;
    margin-left: auto;
}

.alignleft,
.alignright {
    float: none;
    margin: 0 0 24px;
}

.content-shell,
.wp-block-group__inner-container {
    width: min(var(--bin-content), 92%);
    margin-right: auto;
    margin-left: auto;
}

/* Inner-page spacing. The front page remains full width. */

body.page:not(.home) main {
    width: min(var(--bin-content), 92%);
    margin: 40px auto 80px;
}

/*fixes gallery image size on last row */
.wp-block-gallery.has-nested-images figure.wp-block-image {
  flex-grow: 0;
}

/* =========================================================
   HEADER
   Mobile-first
   ========================================================= */

.site-header {
    position: relative;
    z-index: 50;
    background: var(--bin-white);
    box-shadow: 0 10px 30px rgba(3, 26, 50, 0.08);
}

.bin-topbar {
    color: var(--bin-white);
    background: var(--bin-navy-dark);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.bin-topbar-inner {
    display: flex;
    justify-content: center;
    gap: 20px;
    width: min(var(--bin-content), 92%);
    margin: 0 auto;
    padding: 9px 0;
    text-align: center;
}

.bin-topbar-promise {
    display: none;
    color: var(--bin-soft-blue);
}

.site-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    width: min(var(--bin-content), 92%);
    margin: 0 auto;
    padding: 14px 0;
}

.site-branding {
    display: flex;
    align-items: center;
    gap: 16px;
    min-width: 0;
}

.site-branding .custom-logo {
    display: block;
    width: auto;
    max-height: 68px;
}

.site-branding-text {
    display: none;
}

.bin-monogram {
    display: grid;
    place-items: center;
    width: 64px;
    height: 64px;
    color: var(--bin-white);
    background: linear-gradient(145deg, var(--bin-navy), var(--bin-blue));
    border-radius: 18px;
    box-shadow: var(--bin-shadow);
    font-size: 22px;
    font-weight: 950;
    text-decoration: none;
}

.site-title {
    margin: 0;
    font: 900 20px/1 Georgia, "Times New Roman", serif;
}

.site-title a {
    color: var(--bin-navy);
    text-decoration: none;
}

.site-description {
    display: none;
    margin: 7px 0 0;
    color: var(--bin-orange-dark);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.header-phone {
    display: none;
    color: var(--bin-navy);
    line-height: 1.15;
    text-align: right;
    text-decoration: none;
}

.header-phone-label {
    display: block;
    color: var(--bin-gray);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.header-phone strong {
    font-size: 17px;
}

.bell-button,
.bin-bell-button,
.bin-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 50px;
    padding: 13px 22px;
    border: 0;
    border-radius: 999px;
    color: var(--bin-white);
    background: linear-gradient(
        135deg,
        var(--bin-orange),
        var(--bin-orange-dark)
    );
    box-shadow: 0 12px 24px rgba(223, 89, 19, 0.24);
    font-weight: 900;
    text-decoration: none;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}

.bell-button:hover,
.bin-bell-button:hover,
.bin-button:hover {
    color: var(--bin-white);
    box-shadow: 0 16px 32px rgba(223, 89, 19, 0.32);
    transform: translateY(-2px);
}

.header-actions .bell-button {
    width: 50px;
    padding: 0;
}

.header-actions .bell-button span:last-child {
    display: none;
}

.bell-icon {
    display: inline-flex;
    width: 27px;
    height: 27px;
}

.bell-icon svg {
    width: 100%;
    height: 100%;
}


/* =========================================================
   NAVIGATION
   Mobile menu is the default
   ========================================================= */

.menuback {
    position: relative;
    z-index: 60;
    background: var(--bin-navy);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

#opens {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 14px 20px;
    border: 0;
    color: var(--bin-white);
    background: var(--bin-navy);
    cursor: pointer;
}

.menutoggle {
    font-weight: 950;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.menu-bars {
    display: grid;
    gap: 4px;
}

.menu-bars i {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--bin-orange);
}

#showit.mobimenu {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    overflow-y: auto;
    padding: 80px 0 40px;
    background: var(--bin-navy-dark);
}

body.bin-menu-open {
    overflow: hidden;
}

.primary-navigation {
    position: relative;
    width: min(620px, 88%);
    margin: 0 auto;
}

.navm,
.navm ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.navm {
    display: block;
}

.navm > li {
    position: relative;
}

.navm > li > a {
    display: flex;
    align-items: center;
    min-height: 0;
    padding: 18px 52px 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--bin-white);
    font-size: 21px;
    font-weight: 900;
    letter-spacing: 0.055em;
    text-transform: uppercase;
    text-decoration: none;
    white-space: normal;
    transition:
        background 0.2s ease,
        color 0.2s ease;
}

.navm > li > a:hover,
.navm > li:hover > a,
.navm > .current-menu-item > a,
.navm > .current-menu-ancestor > a {
    color: var(--bin-white);
}

.navm .sub-menu {
    display: none;
    position: static;
    width: auto;
    margin: 8px 0 14px;
    padding: 10px;
    background: var(--bin-white);
    border: 1px solid var(--bin-border);
    border-radius: 14px;
    box-shadow: none;
}

.navm .sub-menu a {
    display: block;
    padding: 11px 12px;
    border-radius: 10px;
    color: var(--bin-navy);
    font-size: 15px;
    font-weight: 800;
    text-decoration: none;
}

.navm .sub-menu a:hover {
    color: var(--bin-orange-dark);
    background: var(--bin-light-blue);
}

/* Hide toggle buttons on menu items with no submenu. */

.navm li:not(.menu-item-has-children) > .mobi-menu-toggle {
    display: none !important;
}

.navm .menu-item-has-children > .mobi-menu-toggle {
    display: grid;
    place-items: center;
    position: absolute;
    top: 9px;
    right: 0;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    color: var(--bin-white);
    background: rgba(255, 255, 255, 0.08);
    font-size: 27px;
    cursor: pointer;
}

.mobi-menu-toggle.is-open {
    transform: rotate(180deg);
}

.menu-close {
    display: block;
    width: 54px;
    height: 54px;
    margin: 34px auto 0;
    border: 2px solid rgba(255, 255, 255, 0.35);
    border-radius: 50%;
    color: var(--bin-white);
    background: transparent;
    font-size: 35px;
    cursor: pointer;
}


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

.header-wave {
    height: 8px;
    background:
        repeating-linear-gradient(
            90deg,
            var(--bin-orange) 0 80px,
            var(--bin-soft-blue) 80px 135px,
            var(--bin-white) 135px 150px
        );
    opacity: 1;
}


/* =========================================================
   PAGE BANNER
   ========================================================= */

.page-banner {
    position: relative;
    overflow: hidden;
    padding: 58px 0 64px;
    color: var(--bin-white);
    background:
        radial-gradient(
            circle at 85% 30%,
            rgba(205, 233, 245, 0.34),
            transparent 24%
        ),
        linear-gradient(
            135deg,
            var(--bin-navy-dark),
            var(--bin-navy)
        );
}

.page-banner::after {
    content: "";
    position: absolute;
    top: -190px;
    right: -80px;
    width: 380px;
    height: 380px;
    border: 54px solid rgba(255, 118, 38, 0.18);
    border-radius: 50%;
}

.page-banner-inner {
    position: relative;
    z-index: 1;
    width: min(var(--bin-content), 92%);
    margin: 0 auto;
}

.page-banner h1 {
    margin: 0;
    color: var(--bin-white);
    font-size: clamp(2.4rem, 11vw, 4.4rem);
}

.page-kicker,
.footer-eyebrow {
    margin: 0 0 10px;
    color: var(--bin-orange);
    font-size: 13px;
    font-weight: 950;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

#breadcrumbs {
    width: min(var(--bin-content), 92%);
    margin: 18px auto;
    color: var(--bin-gray);
    font-size: 14px;
}


/* =========================================================
   BLOCK EDITOR UTILITY CLASSES
   ========================================================= */

.bin-section {
    padding-top: clamp(60px, 8vw, 105px);
    padding-bottom: clamp(60px, 8vw, 105px);
}

.bin-section-light {
    background: var(--bin-light-blue);
}

.bin-section-navy {
    color: var(--bin-white);
    background: var(--bin-navy);
}

.bin-section-navy h1,
.bin-section-navy h2,
.bin-section-navy h3 {
    color: var(--bin-white);
}

.bin-script-accent {
    color: var(--bin-orange-dark);
    font-family: "Segoe Print", "Bradley Hand", cursive;
    font-weight: 800;
    transform: rotate(-2deg);
}

.bin-card-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
}

.bin-card {
    height: 100%;
    padding: 30px;
    background: var(--bin-white);
    border: 1px solid var(--bin-border);
    border-radius: var(--bin-radius);
    box-shadow: 0 12px 28px rgba(3, 26, 50, 0.08);
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        border-color 0.2s ease;
}

.bin-card:hover {
    border-color: var(--bin-soft-blue);
    box-shadow: var(--bin-shadow);
    transform: translateY(-5px);
}

.bin-card h3 {
    margin-bottom: 12px;
}

.bin-button-outline {
    color: var(--bin-navy);
    background: transparent;
    border: 2px solid var(--bin-navy);
    box-shadow: none;
}

.bin-button-outline:hover {
    color: var(--bin-white);
    background: var(--bin-navy);
    box-shadow: none;
}

.bin-overlap-card {
    position: relative;
    z-index: 4;
    margin-top: -35px;
    padding: clamp(28px, 5vw, 55px);
    background: var(--bin-white);
    border-radius: var(--bin-radius);
    box-shadow: var(--bin-shadow);
}

.bin-character-left img,
.bin-character-right img {
    filter: drop-shadow(0 22px 26px rgba(3, 26, 50, 0.18));
}

.schema-faq-section {
    margin-bottom: 14px;
    padding: 20px 24px;
    background: var(--bin-white);
    border: 1px solid var(--bin-border);
    border-radius: 16px;
    cursor: pointer;
}

.schema-faq-question {
    color: var(--bin-navy);
    font-weight: 900;
}

.schema-faq-answer {
    padding-top: 12px;
}


/* =========================================================
   FRONT PAGE HERO
   ========================================================= */

.wp-block-columns.bin-hero {
    display: block;
    position: relative;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
    background: var(--bin-navy-dark);
}

.wp-block-columns.bin-hero > .wp-block-column {
    width: 100%;
    margin: 0;
    padding: 0;
}

.wp-block-columns.bin-hero
> .wp-block-column
> .wp-block-image {
    width: 100%;
    margin: 0;
    padding: 0;
    line-height: 0;
}

.wp-block-columns.bin-hero
> .wp-block-column
> .wp-block-image img {
    display: block;
    width: 100%;
    height: auto;
    margin: 0;
}

.wp-block-columns.bin-hero
> .wp-block-column
> .wp-block-columns {
    display: block;
    position: relative;
    width: 100%;
    margin: 0;
    padding: 0;
    gap: 0;
    background: var(--bin-navy-dark);
}

.wp-block-columns.bin-hero
> .wp-block-column
> .wp-block-columns
> .wp-block-column:first-child {
    width: 100%;
    margin: 0;
    padding: 24px 20px 28px;
    color: var(--bin-white);
    background: var(--bin-navy-dark);
}

.wp-block-columns.bin-hero
> .wp-block-column
> .wp-block-columns
> .wp-block-column:last-child {
    display: none;
}

.wp-block-columns.bin-hero
> .wp-block-column
> .wp-block-columns
> .wp-block-column:first-child
> p {
    margin-top: 0;
}

.wp-block-columns.bin-hero
> .wp-block-column
> .wp-block-columns
> .wp-block-column:first-child
> p:first-child {
    margin-bottom: 10px;
    color: var(--bin-white);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.85rem, 8vw, 2.6rem);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -0.025em;
}

.wp-block-columns.bin-hero
> .wp-block-column
> .wp-block-columns
> .wp-block-column:first-child
> p:nth-child(2) {
    max-width: 650px;
    margin-bottom: 18px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.45;
}

.wp-block-columns.bin-hero
> .wp-block-column
> .wp-block-columns
> .wp-block-column:first-child
> p:nth-child(3) {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 48px;
    margin: 0 0 10px;
    padding: 11px 20px;
    border: 2px solid var(--bin-orange);
    border-radius: 999px;
    color: var(--bin-white);
    background: var(--bin-orange);
    box-shadow: 0 8px 20px rgba(3, 26, 50, 0.18);
    font-size: 0.95rem;
    font-weight: 800;
    line-height: 1.2;
    text-align: center;
}

.wp-block-columns.bin-hero
> .wp-block-column
> .wp-block-columns
> .wp-block-column:first-child
> p:nth-child(3)::before {
    content: "ðŸ””";
    margin-right: 8px;
}

.wp-block-columns.bin-hero
> .wp-block-column
> .wp-block-columns
> .wp-block-column:first-child
> p:nth-child(4) {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 48px;
    margin: 0;
    padding: 11px 20px;
    border: 2px solid rgba(255, 255, 255, 0.72);
    border-radius: 999px;
    color: var(--bin-white);
    background: transparent;
    font-size: 0.95rem;
    font-weight: 800;
    line-height: 1.2;
    text-align: center;
}


/* =========================================================
   GUIDANCE SECTION
   ========================================================= */

.guidance {
    align-items: center !important;
    flex-direction: column;
    gap: clamp(30px, 6vw, 90px);
    width: calc(100% - 40px);
    max-width: var(--bin-home-section);
    margin: 0 auto;
    padding: 55px 0 0;
}

.guidance-content,
.guidance > .wp-block-column:first-child {
    flex-basis: 100% !important;
    width: 100%;
}

.guidance-image,
.guidance > .wp-block-column:last-child {
    flex-basis: 100% !important;
    align-self: stretch;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    width: 100%;
}

.guidance h2 {
    margin: 0 0 24px;
    font-size: 36px;
    line-height: 1.05;
}

.guidance p {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    font-size: 17px;
    line-height: 1.65;
}

.guidance p:last-child {
    margin-top: 28px;
    font-size: clamp(18px, 1.6vw, 22px);
}

.guidance-image img,
.guidance > .wp-block-column:last-child img {
    display: block;
    width: 100%;
    max-width: 360px;
    height: auto;
    margin: auto auto 0;
}


/* =========================================================
   AT YOUR SERVICE SECTION
   Matches the Guidance section content width
   ========================================================= */

.at-your-service {
    width: 100%;
    max-width: none;
    margin-right: 0;
    margin-left: 0;
}

.at-your-service > .wp-block-column {
    flex-basis: 100% !important;
    width: 100%;
}

.at-your-service > .wp-block-column > .wp-block-columns {
    width: calc(100% - 40px);
    max-width: var(--bin-home-section);
    margin-right: auto !important;
    margin-left: auto !important;
}


/* =========================================================
   WHO IS CHRIS SECTION
   ========================================================= */

.whoischris {
    position: relative;
    overflow: hidden;
    margin: 0;
    padding: 55px 20px;
    background:
        radial-gradient(
            circle at 90% 20%,
            rgba(215, 170, 55, 0.18),
            transparent 32%
        ),
        linear-gradient(135deg, #082a4a 0%, #0b355d 100%);
    color: #ffffff;
}

.whoischris::before {
    content: "";
    position: absolute;
    top: -140px;
    right: -140px;
    width: 360px;
    height: 360px;
    border: 2px solid rgba(215, 170, 55, 0.28);
    border-radius: 50%;
}

.whoischris > .wp-block-column {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.whoischris > .wp-block-column > .wp-block-columns {
    align-items: center !important;
    flex-direction: column;
    gap: 45px;
    margin: 0;
}

.whoischris
> .wp-block-column
> .wp-block-columns
> .wp-block-column:first-child {
    flex-basis: 100% !important;
    width: 100%;
}

.whoischris h1 {
    margin: 0 0 15px;
    color: #d7aa37;
    font-size: 42px;
    line-height: 1;
    letter-spacing: -0.035em;
}

.whoischris h2 {
    max-width: 760px;
    margin: 0 0 28px;
    color: #ffffff;
    font-size: 27px;
    line-height: 1.18;
}

.whoischris p {
    max-width: 760px;
    margin: 0 0 20px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 17px;
    line-height: 1.65;
}

.whoischris p:nth-last-child(2) {
    color: #ffffff;
    font-weight: 700;
    font-style: italic;
}

.whoischris p:last-child {
    margin-top: 34px;
    margin-bottom: 0;
}

.whoischris p:last-child strong,
.whoischris p:last-child a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 52px;
    padding: 13px 28px;
    border: 2px solid #d7aa37;
    border-radius: 999px;
    background: #d7aa37;
    color: #082a4a;
    font-size: 16px;
    font-weight: 800;
    line-height: 1.2;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition:
        background-color 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}

.whoischris p:last-child strong:hover,
.whoischris p:last-child a:hover {
    background: transparent;
    color: #ffffff;
    transform: translateY(-2px);
}

.whoischris
> .wp-block-column
> .wp-block-columns
> .wp-block-column:last-child {
    flex-basis: 100% !important;
    display: flex;
    align-self: stretch;
    align-items: flex-end;
    justify-content: center;
    width: 100%;
}

.whoischris
> .wp-block-column
> .wp-block-columns
> .wp-block-column:last-child
img {
    display: block;
    width: 100%;
    max-width: 420px;
    height: auto;
    margin: auto auto 0;
    border-radius: 22px;
    box-shadow: 0 24px 55px rgba(0, 0, 0, 0.28);
}


/* =========================================================
   INSURANCE SOLUTIONS
   ========================================================= */

.insurance-solutions {
/*    background:
        linear-gradient(
            135deg,
            #f5f7fa 0%,
            #ffffff 50%,
            #f5f7fa 100%
        ); */
	background-color:#f2f2f2;
    padding: 55px 20px;
	margin-bottom:0;
}

.insurance-solutions > .wp-block-column {
    display: block;
    width: 100%;
    max-width: var(--bin-home-section);
    margin: 0 auto;
}

.insurance-solutions > .wp-block-column > :first-child {
    margin: 0 0 32px;
    color: #0b355d;
    font-size: 38px;
    line-height: 1.05;
}

.insurance-solutions h3,
.insurance-solutions h3 + p,
.insurance-solutions h3 + p + p,
.insurance-solutions h3 + p + ul,
.insurance-solutions h3 + p + ul + p,
.insurance-solutions h2:not(:first-child),
.insurance-solutions h2:not(:first-child) + p,
.insurance-solutions h2:not(:first-child) + p + p {
    position: relative;
    z-index: 1;
    margin-top: 0;
    margin-bottom: 0;
    background: #ffffff;
}

.insurance-solutions h3,
.insurance-solutions h2:not(:first-child) {
    margin-top: 28px !important;
    padding: 30px 22px 16px;
    border-top: 5px solid #d3a52c;
    border-radius: 18px 18px 0 0;
    color: #0b355d;
    font-size: 24px;
    line-height: 1.2;
}

.insurance-solutions h3 + p,
.insurance-solutions h2:not(:first-child) + p {
    padding: 0 22px 22px;
    color: #3f4b56;
    font-size: 17px;
    line-height: 1.7;
}

.insurance-solutions ul {
    margin: 0;
    padding: 0 22px 22px 44px;
    background: #ffffff;
    color: #3f4b56;
    font-size: 16px;
    line-height: 1.7;
}

.insurance-solutions li {
    padding-left: 5px;
}

.insurance-solutions li::marker {
    color: #d3a52c;
}

.insurance-solutions h3 + p + p,
.insurance-solutions h3 + p + ul + p,
.insurance-solutions h2:not(:first-child) + p + p {
    align-self: stretch;
    padding: 0 22px 36px;
    border-radius: 0 0 18px 18px;
    text-align: center;
}

.insurance-solutions h3 + p + p strong,
.insurance-solutions h3 + p + ul + p strong,
.insurance-solutions h2:not(:first-child) + p + p strong {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 11px 22px;
    border: 2px solid #d3a52c;
    border-radius: 999px;
    color: #0b355d;
    font-size: 15px;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.045em;
    transition:
        background-color 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}

.insurance-solutions strong a {
    color: inherit;
    text-decoration: none;
}

.insurance-solutions p:last-child strong:hover {
    background: #d3a52c;
    color: #0b355d;
    transform: translateY(-2px);
}

.insurance-solutions h3,
.insurance-solutions h2:not(:first-child) {
    box-shadow: 0 -12px 28px rgba(11, 53, 93, 0.07);
}

.insurance-solutions h3 + p + p,
.insurance-solutions h3 + p + ul + p,
.insurance-solutions h2:not(:first-child) + p + p {
    box-shadow: 0 18px 28px rgba(11, 53, 93, 0.09);
}


/* =========================================================
   POSTS
   Category archives and single posts
   ========================================================= */

.post-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    padding-top: 36px;
    padding-bottom: 60px;
}

/* Keep archive headings and pagination across the full grid. */
.category .post-grid > .page-header,
.archive .post-grid > .page-header,
.category .post-grid > .archive-header,
.archive .post-grid > .archive-header,
.category .post-grid > .navigation,
.archive .post-grid > .navigation,
.category .post-grid > .pagination,
.archive .post-grid > .pagination {
    grid-column: 1 / -1;
}

/* Wider category/archive layout with smaller outside margins. */
body.category .site-main,
body.archive .site-main {
    width: min(1400px, calc(100% - 32px));
    max-width: none;
    margin-right: auto;
    margin-left: auto;
}

body.category .page-header,
body.archive .page-header,
body.category .archive-header,
body.archive .archive-header {
    margin-bottom: 0;
}

/* Style the category title by class, regardless of its HTML element. */
body.category .page-title,
body.archive .page-title,
body.category .archive-title,
body.archive .archive-title {
    margin: 0;
    font-size: clamp(1.85rem, 6vw, 2.75rem);
    line-height: 1.1;
}

.bin-post-card {
    overflow: hidden;
    background: var(--bin-white);
    border: 1px solid var(--bin-border);
    border-radius: var(--bin-radius);
    box-shadow: 0 10px 24px rgba(3, 26, 50, 0.08);
}

.bin-post-card .post-thumbnail img {
    display: block;
    width: 100%;
}

.post-card-copy {
    padding: 26px;
}

.bin-post-card .entry-title {
    margin-bottom: 12px;
    font-size: clamp(1.45rem, 5vw, 2rem);
    line-height: 1.15;
}

.entry-title a {
    color: var(--bin-navy);
    text-decoration: none;
}

.entry-meta {
    color: var(--bin-gray);
    font-size: 14px;
}

/* Single posts use the normal site content width, not the old 880px cap. */
.single-content {
    width: min(var(--bin-content), calc(100% - 32px));
    max-width: none;
    margin-right: auto;
    margin-left: auto;
    padding-top: 36px;
    padding-bottom: 64px;
}

.single-content > article,
.single-content .entry-content,
.single-content .entry-footer {
    width: 100%;
    max-width: none;
    margin-right: 0;
    margin-left: 0;
}

.single-content .entry-header {
    margin-bottom: 28px;
}

.single-content .entry-title {
    margin: 0 0 12px;
    font-size: clamp(2rem, 7vw, 3.25rem);
    line-height: 1.08;
}

.single-content .entry-content > * {
    margin-block-start: 0;
    margin-block-end: 1.25rem;
}

.single-content .entry-content h2 {
    margin-top: 2.25rem;
    font-size: clamp(1.65rem, 5vw, 2.25rem);
    line-height: 1.15;
}

.single-content .entry-content h3 {
    margin-top: 1.75rem;
    font-size: clamp(1.35rem, 4vw, 1.75rem);
    line-height: 1.2;
}


/* =========================================================
   FOOTER
   Mobile-first
   ========================================================= */

.footer-service-callout {
    position: relative;
    color: var(--bin-white);
    background: var(--bin-orange);
}

.footer-service-callout::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            135deg,
            rgba(3, 26, 50, 0.1),
            transparent 55%
        );
}

.footer-service-inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    gap: 30px;
    position: relative;
    z-index: 1;
    width: min(var(--bin-content), 92%);
    margin: 0 auto;
    padding: 42px 0;
}

.footer-service-inner h2 {
    margin-bottom: 6px;
    color: var(--bin-white);
    font-size: clamp(2rem, 9vw, 3rem);
}

.footer-service-inner p {
    margin-bottom: 0;
}

.footer-service-inner .footer-eyebrow {
    color: var(--bin-navy-dark);
}

.bell-button-light {
    color: var(--bin-navy);
    background: var(--bin-white);
    box-shadow: 0 14px 30px rgba(3, 26, 50, 0.2);
}

.bell-button-light:hover {
    color: var(--bin-navy);
}


.site-footer {
    position: relative;
    overflow: hidden;
    color: rgba(255, 255, 255, 0.82);
    background: var(--bin-navy-dark);
}

.footer-network {
    position: absolute;
    inset: 0;
    opacity: 0.12;
    pointer-events: none;
}

.footer-network span {
    position: absolute;
    width: 150px;
    height: 150px;
    border: 2px solid var(--bin-soft-blue);
    border-radius: 50%;
}

.footer-network span:nth-child(1) {
    top: 15%;
    left: 4%;
}

.footer-network span:nth-child(2) {
    top: 52%;
    left: 18%;
    width: 80px;
    height: 80px;
}

.footer-network span:nth-child(3) {
    top: 9%;
    right: 17%;
    width: 220px;
    height: 220px;
}

.footer-network span:nth-child(4) {
    right: 4%;
    bottom: -40px;
    width: 130px;
    height: 130px;
}

.site-footer-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 42px;
    position: relative;
    z-index: 1;
    width: min(var(--bin-content), 92%);
    margin: 0 auto;
    padding: 58px 0;
}

.site-footer .custom-logo {
    width: auto;
    max-height: 92px;
    filter: brightness(0) invert(1);
}

.footer-bin-mark {
    display: inline-grid;
    place-items: center;
    width: 76px;
    height: 76px;
    border-radius: 20px;
    color: var(--bin-white);
    background: var(--bin-blue);
    font-weight: 950;
}

.footer-brand-name {
    margin: 18px 0 8px;
    color: var(--bin-white);
    font: 900 24px/1.1 Georgia, "Times New Roman", serif;
}

.footer-tagline {
    color: var(--bin-orange);
    font-weight: 900;
}

.footer-brand-copy {
    max-width: 520px;
}

.footer-nav-title {
    margin-bottom: 18px;
    color: var(--bin-white);
    font-weight: 950;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.footer-navigation ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-navigation li {
    margin-bottom: 9px;
}

.site-footer a {
    color: var(--bin-white);
    text-decoration: none;
}

.site-footer a:hover {
    color: var(--bin-orange);
}

.footer-contact p {
    margin-bottom: 10px;
}

.footer-legal {
    display: flex;
    flex-direction: column;
    gap: 25px;
    position: relative;
    z-index: 1;
    width: min(var(--bin-content), 92%);
    margin: 0 auto;
    padding: 22px 0 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    font-size: 13px;
}

.footer-legal div {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-legal p {
    margin: 0;
}
.footer-contact-item,
.footer-facebook {
    margin-bottom: 12px;
}

.footer-address {
    margin: 0 0 14px;
    font-style: normal;
    line-height: 1.55;
}

.footer-facebook a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.footer-facebook-icon {
    flex: 0 0 24px;
    width: 24px;
    height: 24px;
    color: var(--bin-orange);
}

.footer-facebook a:hover .footer-facebook-icon,
.footer-facebook a:focus .footer-facebook-icon {
    color: var(--bin-white);
}

/* =========================================================
   404 PAGE
   ========================================================= */

.bin-404-page {
    display: grid;
    place-items: center;
    min-height: 640px;
    padding: 70px 20px;
    background: var(--bin-light-blue);
}

.bin-404-content {
    max-width: 720px;
    padding: 34px 22px;
    text-align: center;
    background: var(--bin-white);
    border-radius: var(--bin-radius);
    box-shadow: var(--bin-shadow);
}

.bin-404-bell {
    font-size: 72px;
}

.bin-404-number {
    margin: 0;
    color: var(--bin-orange);
    font-size: 90px;
    font-weight: 950;
    line-height: 1;
}

.bin-404-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
}

.contact-scheduler {
	width: 100%;
	max-width: 1100px;
	margin: 40px auto;
	padding: 35px;
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.contact-scheduler-heading {
	max-width: 720px;
	margin: 0 auto 25px;
	text-align: center;
}

.contact-scheduler-heading h2 {
	margin: 0 0 12px;
	font-size: clamp(28px, 4vw, 42px);
	line-height: 1.15;
}

.contact-scheduler-heading p {
	margin: 0;
	font-size: 18px;
	line-height: 1.6;
}

.calendly-inline-widget {
	width: 100%;
	min-width: 320px;
	height: 1050px !important;
	overflow: hidden !important;
}

.calendly-inline-widget iframe {
	width: 100% !important;
	height: 100% !important;
	border: 0 !important;
	overflow: hidden !important;
}


.map {
	width: 100%;
	max-width: 100%;
	aspect-ratio: 4 / 5;
	border: 0;
	display: block;
}


.quote-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	padding: 15px 20px;
	background: #1f5f8b;
	color: #fff;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.2;
	text-align: center;
	text-decoration: none;
	border: 2px solid #1f5f8b;
	border-radius: 6px;
	box-shadow: 0 5px 14px rgba(0, 0, 0, 0.16);
	transition:
		background-color 0.2s ease,
		border-color 0.2s ease,
		color 0.2s ease,
		transform 0.2s ease,
		box-shadow 0.2s ease;
}
.quote-button a{
	color: #fff;
}
.quote-button:hover,
.quote-button:focus {
	background: #173f5d;
	border-color: #173f5d;
	color: #fff;
	text-decoration: none;
	transform: translateY(-2px);
	box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
}

.quote-button:focus-visible {
	outline: 3px solid rgba(31, 95, 139, 0.35);
	outline-offset: 3px;
}

.quote-button:active {
	transform: translateY(0);
	box-shadow: 0 3px 8px rgba(0, 0, 0, 0.16);
}

/* Customer Reviews Section */
.customerssay {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 3rem 1.25rem;
  text-align: center;
  
}

.customerssay > .wp-block-heading {
  margin: 0 0 2rem;
  color: #102f4f;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.1;
}

/* Reviews container */
.customerssay > .wp-block-columns {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin: 0;
}

/* Individual review cards */
.customerssay > .wp-block-columns > .wp-block-column {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 2rem 1.5rem;
  background: #fff;
  border: 1px solid rgba(16, 47, 79, 0.12);
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(16, 47, 79, 0.1);
  text-align: left;
}

/* Decorative quotation mark */
.customerssay > .wp-block-columns > .wp-block-column::before {
  content: "“";
  position: absolute;
  top: 0.75rem;
  right: 1.25rem;
  color: rgba(242, 140, 40, 0.15);
  font-family: Georgia, serif;
  font-size: 5rem;
  font-weight: 700;
  line-height: 1;
}

/* Remove Gutenberg paragraph spacing */
.customerssay > .wp-block-columns > .wp-block-column p {
  margin-top: 0;
}

/* Stars */
.customerssay > .wp-block-columns > .wp-block-column p:first-child {
  position: relative;
  z-index: 1;
  margin-bottom: 1rem;
  color: #f28c28;
  font-size: 1.25rem;
  line-height: 1;
  letter-spacing: 0.12em;
}

/* Review text */
.customerssay > .wp-block-columns > .wp-block-column p:nth-child(2) {
  position: relative;
  z-index: 1;
  margin-bottom: 1.5rem;
  color: #33475b;
  font-size: 1rem;
  line-height: 1.7;
}

/* Reviewer information */
.customerssay > .wp-block-columns > .wp-block-column p:last-child {
  margin-top: auto;
  margin-bottom: 0;
  padding-top: 1.25rem;
  color: #66788a;
  font-size: 0.88rem;
  line-height: 1.45;
  border-top: 1px solid rgba(16, 47, 79, 0.1);
}

.customerssay > .wp-block-columns > .wp-block-column p:last-child strong {
  display: inline-block;
  margin-bottom: 0.2rem;
  color: #102f4f;
  font-size: 1rem;
}

/* Facebook button */
.customerssay > .wp-block-paragraph {
  margin: 2rem 0 0;
  text-align: center;
}

.customerssay > .wp-block-paragraph a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.8rem 1.5rem;
  color: #fff;
  background: #102f4f;
  border: 2px solid #102f4f;
  border-radius: 999px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

.customerssay > .wp-block-paragraph a:hover,
.customerssay > .wp-block-paragraph a:focus-visible {
  color: #fff;
  background: #f28c28;
  border-color: #f28c28;
  transform: translateY(-2px);
}

/* =========================================================
   RESPONSIVE RULES
   Mobile base, tablet, and desktop only
   ========================================================= */


/* =========================================================
   TABLET: 701px AND UP
   ========================================================= */

@media (min-width: 701px) {

    body.category .site-main,
    body.archive .site-main {
        width: min(1400px, calc(100% - 48px));
    }

    .post-grid {
        padding-top: 44px;
        padding-bottom: 72px;
    }

    .single-content {
        width: min(var(--bin-content), calc(100% - 48px));
        padding-top: 48px;
        padding-bottom: 72px;
    }

    .calendly-inline-widget {
        height: 850px !important;
    }

    .map {
        aspect-ratio: 16 / 9;
    }

    .quote-button {
        width: auto;
        padding: 14px 26px;
        font-size: 17px;
    }

    .whoischris {
        padding: 65px 24px;
    }

    .whoischris h1 {
        font-size: clamp(42px, 5vw, 68px);
    }

    .whoischris h2 {
        font-size: clamp(25px, 3vw, 38px);
    }

    .whoischris p {
        font-size: clamp(17px, 1.4vw, 20px);
        line-height: 1.75;
    }

    .whoischris p:last-child strong,
    .whoischris p:last-child a {
        width: auto;
    }

    .insurance-solutions {
        padding: clamp(60px, 8vw, 110px) 30px;
    }

    .insurance-solutions > .wp-block-column > :first-child {
        margin-bottom: 15px;
        font-size: clamp(38px, 5vw, 62px);
    }

    .insurance-solutions h3,
    .insurance-solutions h2:not(:first-child) {
        padding: 36px 30px 18px;
        font-size: clamp(23px, 2vw, 29px);
    }

    .insurance-solutions h3 + p,
    .insurance-solutions h2:not(:first-child) + p {
        padding: 0 30px 22px;
    }

    .insurance-solutions ul {
        padding: 0 34px 22px 55px;
    }

    .insurance-solutions h3 + p + p,
    .insurance-solutions h3 + p + ul + p,
    .insurance-solutions h2:not(:first-child) + p + p {
        padding: 0 30px 36px;
    }

    .guidance {
        width: calc(100% - 48px);
        padding: 55px 0 0;
    }

    .at-your-service > .wp-block-column > .wp-block-columns {
        width: calc(100% - 48px);
    }

    .guidance h2 {
        font-size: clamp(34px, 4vw, 54px);
    }

    .guidance p {
        font-size: clamp(17px, 1.4vw, 20px);
        line-height: 1.7;
    }

    body {
        font-size: 18px;
    }

    .alignleft {
        float: left;
        margin: 0 24px 18px 0;
    }

    .alignright {
        float: right;
        margin: 0 0 18px 24px;
    }

    .site-branding-text {
        display: block;
    }

    .site-description {
        display: block;
    }

    .bin-card-grid,
    .post-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .bin-overlap-card {
        margin-top: -70px;
    }

    .site-footer-inner {
        grid-template-columns: 1.2fr 1fr;
        gap: 54px;
        padding-top: 68px;
    }

    .footer-contact {
        grid-column: 1 / -1;
    }

    .footer-legal {
        flex-direction: row;
        justify-content: space-between;
    }

    .bin-404-content {
        padding: 50px;
    }

    .bin-hero {
        position: relative;
        padding-bottom: 40px;
        background: transparent;
    }

    .bin-hero > .wp-block-columns {
        z-index: 3;
        margin-top: -220px;
        padding: 0 max(4vw, calc((100vw - var(--bin-content)) / 2));
        background: transparent;
        pointer-events: none;
    }

    .bin-hero > .wp-block-columns > .wp-block-column {
        pointer-events: auto;
    }

    .bin-hero > .wp-block-columns > .wp-block-column:first-child {
        margin: 0;
        padding: clamp(22px, 2.5vw, 34px);
        border: 1px solid rgba(255, 255, 255, 0.18);
        border-radius: 16px;
        color: var(--bin-white);
        background: rgba(3, 26, 50, 0.72);
        box-shadow: 0 14px 34px rgba(3, 26, 50, 0.24);
        backdrop-filter: blur(6px);
        -webkit-backdrop-filter: blur(6px);
    }

    .bin-hero > .wp-block-columns > .wp-block-column:last-child {
        display: block;
    }

    .bin-hero > .wp-block-columns h1,
    .bin-hero > .wp-block-columns h2 {
        font-size: clamp(2.8rem, 6vw, 4.5rem);
    }

    .bin-hero > .wp-block-columns p {
        font-size: clamp(1.05rem, 2vw, 1.25rem);
    }

    .bin-hero .wp-block-buttons {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .bin-hero .wp-block-button,
    .bin-hero .wp-block-button__link {
        width: auto;
    }


    /* Customer Reviews */
    .customerssay {
      padding: 4rem 2rem;
    }

    .customerssay > .wp-block-columns {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}


/* =========================================================
   DESKTOP: 981px AND UP
   ========================================================= */

@media (min-width: 981px) {

    body.category .site-main,
    body.archive .site-main {
        width: min(1400px, calc(100% - 64px));
    }

    .single-content {
        width: min(var(--bin-content), calc(100% - 64px));
    }

    .single-content .entry-title {
        font-size: 3.25rem;
    }

    .whoischris {
        padding: clamp(65px, 8vw, 110px) 30px;
    }

    .whoischris > .wp-block-column > .wp-block-columns {
        flex-direction: row;
        gap: clamp(40px, 7vw, 95px);
    }

    .whoischris
    > .wp-block-column
    > .wp-block-columns
    > .wp-block-column:first-child {
        flex-basis: 60% !important;
        width: auto;
    }

    .whoischris
    > .wp-block-column

    > .wp-block-columns
    > .wp-block-column:last-child {
        flex-basis: 40% !important;
        width: auto;
    }

    .whoischris
    > .wp-block-column
    > .wp-block-columns
    > .wp-block-column:last-child
    img {
        max-width: 430px;
    }

    .insurance-solutions > .wp-block-column {
        display: grid;
        grid-template-columns: repeat(6, minmax(0, 1fr));
        grid-template-rows: auto auto 1fr auto auto auto 1fr auto;
        gap: 28px 28px;
    }

    .insurance-solutions > .wp-block-column > :first-child {
        grid-column: 1 / -1;
        grid-row: 1;
        margin-bottom: 45px;
    }

    .insurance-solutions h3,
    .insurance-solutions h2:not(:first-child) {
        margin-top: 0 !important;
    }

    .guidance {
        flex-direction: row;
        width: calc(100% - 60px);
        padding: clamp(60px, 8vw, 110px) 0;
    }

    .at-your-service > .wp-block-column > .wp-block-columns {
        width: calc(100% - 60px);
    }

    .guidance-content,
    .guidance > .wp-block-column:first-child {
        flex-basis: 58% !important;
        width: auto;
    }

    .guidance-image,
    .guidance > .wp-block-column:last-child {
        flex-basis: 42% !important;
        width: auto;
    }

    .guidance-image img,
    .guidance > .wp-block-column:last-child img {
        max-width: 430px;
    }


/* =========================================================
   DESKTOP CARD PLACEMENT
   ========================================================= */

.insurance-solutions > .wp-block-column > :nth-child(2) {
    grid-column: 1 / 3;
    grid-row: 2;
}

.insurance-solutions > .wp-block-column > :nth-child(3) {
    grid-column: 1 / 3;
    grid-row: 3;
}

.insurance-solutions > .wp-block-column > :nth-child(4) {
    grid-column: 1 / 3;
    grid-row: 4;
}

.insurance-solutions > .wp-block-column > :nth-child(5) {
    grid-column: 3 / 5;
    grid-row: 2;
}

.insurance-solutions > .wp-block-column > :nth-child(6) {
    grid-column: 3 / 5;
    grid-row: 3;
}

.insurance-solutions > .wp-block-column > :nth-child(7) {
    grid-column: 3 / 5;
    grid-row: 4;
}

.insurance-solutions > .wp-block-column > :nth-child(8) {
    grid-column: 5 / 7;
    grid-row: 2;
}

.insurance-solutions > .wp-block-column > :nth-child(9) {
    grid-column: 5 / 7;
    grid-row: 3;
}

.insurance-solutions > .wp-block-column > :nth-child(10) {
    grid-column: 5 / 7;
    grid-row: 4;
}

.insurance-solutions > .wp-block-column > :nth-child(11) {
    grid-column: 2 / 4;
    grid-row: 5;
    margin-top: 28px;
}

.insurance-solutions > .wp-block-column > :nth-child(12) {
    grid-column: 2 / 4;
    grid-row: 6;
}

.insurance-solutions > .wp-block-column > :nth-child(13) {
    grid-column: 2 / 4;
    grid-row: 7;
}

.insurance-solutions > .wp-block-column > :nth-child(14) {
    grid-column: 2 / 4;
    grid-row: 8;
}

.insurance-solutions > .wp-block-column > :nth-child(15) {
    grid-column: 4 / 6;
    grid-row: 5;
    margin-top: 28px;
}

.insurance-solutions > .wp-block-column > :nth-child(16) {
    grid-column: 4 / 6;
    grid-row: 6 / 8;
}

.insurance-solutions > .wp-block-column > :nth-child(17) {
    grid-column: 4 / 6;
    grid-row: 8;
}


    /* =====================================================
       THIRD-TIER DESKTOP MENU
       Supplemental Insurance types fly out to the right
       ===================================================== */

	.primary-navigation .navm li {
		position: relative;
	}

	/*
	 * Third-tier submenu:
	 * Main menu > Insurance Solutions > Supplemental Insurance > Types
	 */
	.primary-navigation .navm .sub-menu
	.menu-item-has-children > .sub-menu {
		position: absolute;
		top: 0;
		left: 100%;
		min-width: 240px;
		margin: 0;
		padding: 0;
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
		transform: translateX(8px);
		transition:
			opacity 0.2s ease,
			transform 0.2s ease,
			visibility 0.2s ease;

		z-index: 99999;
	}

	/*
	 * Display third tier when Supplemental Insurance
	 * is hovered or focused with the keyboard
	 */
	.primary-navigation .navm .sub-menu
	.menu-item-has-children:hover > .sub-menu,
	.primary-navigation .navm .sub-menu
	.menu-item-has-children:focus-within > .sub-menu {
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
		transform: translateX(0);
	}

	/*
	 * Keep flyout menu links on one line
	 */
	.primary-navigation .navm .sub-menu .sub-menu a {
		display: block;
		white-space: nowrap;
	}

	/*
	 * Make room for the side arrow
	 */
	.primary-navigation .navm .sub-menu
	.menu-item-has-children > a {
		position: relative;
		padding-right: 38px;
	}

	/*
	 * Right-facing arrow for items with a flyout
	 */
	.primary-navigation .navm .sub-menu
	.menu-item-has-children > a::after {
		content: "\203A";
		position: absolute;
		top: 50%;
		right: 14px;
		transform: translateY(-50%);
		font-size: 22px;
		line-height: 1;
	}


    .wp-block-columns.bin-hero {
        position: relative;
        overflow: hidden;
        background: transparent;
    }

    .wp-block-columns.bin-hero
    > .wp-block-column
    > .wp-block-columns {
        display: flex;
        position: absolute;
        top: 5%;
        left: 10%;
        z-index: 3;
        width: 60%;
        margin: 0;
        padding: 0;
        background: transparent;
    }

    .wp-block-columns.bin-hero
    > .wp-block-column
    > .wp-block-columns
    > .wp-block-column:first-child {
        width: auto;
        margin: 0;
        padding: clamp(22px, 2.5vw, 34px);
        border: 1px solid rgba(255, 255, 255, 0.18);
        border-radius: 16px;
        color: var(--bin-white);
        background: rgba(3, 26, 50, 0.72);
        box-shadow: 0 14px 34px rgba(3, 26, 50, 0.24);
        backdrop-filter: blur(6px);
        -webkit-backdrop-filter: blur(6px);
    }

    .wp-block-columns.bin-hero
    > .wp-block-column
    > .wp-block-columns
    > .wp-block-column:last-child {
        display: block;
    }

    .wp-block-columns.bin-hero
    > .wp-block-column
    > .wp-block-columns
    > .wp-block-column:first-child
    > p:first-child {
        margin-bottom: 10px;
        font-size: clamp(1.8rem, 3vw, 3rem);
        line-height: 1.06;
    }

    .wp-block-columns.bin-hero
    > .wp-block-column
    > .wp-block-columns
    > .wp-block-column:first-child
    > p:nth-child(2) {
        margin-bottom: 16px;
        font-size: clamp(0.92rem, 1.2vw, 1.08rem);
        line-height: 1.4;
    }

    .wp-block-columns.bin-hero
    > .wp-block-column
    > .wp-block-columns
    > .wp-block-column:first-child
    > p:nth-child(3),
    .wp-block-columns.bin-hero
    > .wp-block-column
    > .wp-block-columns
    > .wp-block-column:first-child
    > p:nth-child(4) {
        width: auto;
        min-height: 44px;
        padding: 9px 18px;
        font-size: 0.9rem;
    }

    .wp-block-columns.bin-hero
    > .wp-block-column
    > .wp-block-columns
    > .wp-block-column:first-child
    > p:nth-child(3) {
        margin-right: 8px;
        margin-bottom: 8px;
    }

    .wp-block-columns.bin-hero
    > .wp-block-column
    > .wp-block-columns
    > .wp-block-column:first-child
    > p:nth-child(4) {
        margin-bottom: 8px;
    }

    .mobi-menu-toggle,
    .menu-close {
        display: none !important;
    }

    .bin-topbar-inner {
        justify-content: space-between;
        text-align: left;
    }

    .bin-topbar-promise {
        display: block;
    }

    .site-header-inner {
        gap: 28px;
        padding: 20px 0 16px;
    }

    .site-branding .custom-logo {
        max-height: 86px;
    }

    .bin-monogram {
        width: 74px;
        height: 74px;
        border-radius: 20px;
        font-size: 24px;
    }

    .site-title {
        font-size: clamp(19px, 2.2vw, 29px);
    }

    .header-actions .bell-button {
        width: auto;
        padding: 13px 22px;
    }

    .header-actions .bell-button span:last-child {
        display: inline;
    }

    #opens {
        display: none;
    }

    #showit.mobimenu {
        display: block;
        position: static;
        overflow: visible;
        padding: 0;
        background: transparent;
    }

    .primary-navigation {
        width: min(var(--bin-content), 92%);
    }

    .navm {
        display: flex;
        align-items: stretch;
        justify-content: center;
    }

    .navm > li > a {
        min-height: 58px;
        padding: 0 13px;
        border-bottom: 0;
        font-size: 12px;
        white-space: nowrap;
    }

    .navm > .menu-item-has-children > a {
        position: relative;
        padding-right: 31px;
    }

    .navm > .menu-item-has-children > a::after {
        content: "";
        position: absolute;
        top: 50%;
        right: 12px;
        width: 7px;
        height: 7px;
        border-right: 2px solid var(--bin-orange);
        border-bottom: 2px solid var(--bin-orange);
        transform: translateY(-65%) rotate(45deg);
    }

    .navm > li > a:hover,
    .navm > li:hover > a,
    .navm > .current-menu-item > a,
    .navm > .current-menu-ancestor > a {
        background: var(--bin-blue);
    }

    .navm .sub-menu {
        display: none !important;
        position: absolute;
        top: 100%;
        left: 0;
        width: 270px;
        margin: 0;
        padding: 10px;
        border-radius: 0 0 16px 16px;
        box-shadow: var(--bin-shadow);
    }

    .navm li:hover > .sub-menu,
    .navm li:focus-within > .sub-menu {
        display: block !important;
    }

    .navm .menu-item-has-children > .mobi-menu-toggle,
    .menu-close {
        display: none;
    }

    .header-wave {
        height: 12px;
    }

    .footer-service-inner {
        flex-direction: row;
        align-items: center;
    }


    .wp-block-columns.bin-hero
    > .wp-block-column
    > .wp-block-columns {
        top: 7%;
        left: 10%;
        width: 60%;
    }

    .header-phone {
        display: block;
    }

    .navm > li > a {
        padding-right: 20px;
        padding-left: 20px;
        font-size: 14px;
    }

    .navm > .menu-item-has-children > a {
        padding-right: 39px;
    }

    .navm > .menu-item-has-children > a::after {
        right: 17px;
    }

    .bin-card-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .post-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .site-footer-inner {
        grid-template-columns: 1.35fr 0.7fr 0.85fr;
        gap: 70px;
        padding: 78px 0 58px;
    }

    .footer-contact {
        grid-column: auto;
    }

    .bin-hero > .wp-block-columns {
        margin-top: -260px;
    }

    .bin-hero > .wp-block-columns > .wp-block-column:first-child {
        padding: 46px;
    }


    /* Customer Reviews */
    .customerssay {
        padding: 5rem 2.5rem;
      }

      .customerssay > .wp-block-columns {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 1.5rem;
      }

      .customerssay > .wp-block-columns > .wp-block-column {
        padding: 2.25rem 1.75rem;
      }
    	.wp-block-columns:has(> .customerssay) {
        width: 100%;
        max-width: none;
        margin-left: auto;
        margin-right: auto;
        justify-content: center;
      }

      .wp-block-columns:has(> .customerssay) > .customerssay {
        flex-basis: 100% !important;
        width: 100%;
        max-width: 1400px;
        margin-left: auto !important;
        margin-right: auto !important;
      }
}
/* =========================================================
   FRONT PAGE RECENT ARTICLES
   Class: recent-articles on the outer column
   ========================================================= */

.recent-articles {
	flex-basis: 100% !important;
	width: 100%;
	margin: 0;
	padding: 60px 0;
	background:var(--wp--preset--color--bin-navy-dark);
}

.recent-articles .wp-block-latest-posts {
	display: grid;
	grid-template-columns: 1fr;
	gap: 24px;
	width: calc(100% - 40px);
	max-width: var(--bin-home-section);
	margin: 0 auto;
	padding: 0;
	list-style: none;
}

.recent-articles .wp-block-latest-posts > li {
	display: flex;
	flex-direction: column;
	overflow: hidden;
	min-width: 0;
	margin: 0;
	padding: 0 24px 26px;
	background: var(--bin-white);
	border: 1px solid var(--bin-border);
	border-radius: 18px;
	box-shadow: 0 10px 26px rgba(3, 26, 50, 0.09);
	transition:
		transform 0.2s ease,
		box-shadow 0.2s ease;
}

.recent-articles .wp-block-latest-posts > li:hover {
	box-shadow: var(--bin-shadow);
	transform: translateY(-4px);
}

.recent-articles .wp-block-latest-posts__featured-image {
	width: calc(100% + 48px);
	margin: 0 -24px 22px;
}

.recent-articles .wp-block-latest-posts__featured-image img {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 16 / 9;
	object-fit: cover;
}

.recent-articles .wp-block-latest-posts__post-title {
	display: block;
	margin: 0 0 10px;
	color: var(--bin-navy);
	font-family: Georgia, "Times New Roman", serif;
	font-size: 1.4rem;
	font-weight: 900;
	line-height: 1.2;
	text-decoration: none;
}

.recent-articles .wp-block-latest-posts__post-title:hover,
.recent-articles .wp-block-latest-posts__post-title:focus {
	color: var(--bin-orange-dark);
}

.recent-articles .wp-block-latest-posts__post-date {
	display: block;
	margin: 0 0 14px;
	color: var(--bin-orange-dark);
	font-size: 0.78rem;
	font-weight: 900;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.recent-articles .wp-block-latest-posts__post-excerpt {
	flex: 1;
	margin: 0;
	color: var(--bin-gray);
	font-size: 1rem;
	line-height: 1.6;
}

@media (min-width: 701px) {
	.recent-articles {
		padding: 70px 0;
	}

	.recent-articles .wp-block-latest-posts {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		width: calc(100% - 48px);
	}
}

@media (min-width: 981px) {
	.recent-articles {
		padding: 80px 0;
	}

	.recent-articles .wp-block-latest-posts {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		width: calc(100% - 80px);
	}

	.recent-articles .wp-block-latest-posts__post-title {
		font-size: 1.5rem;
	}
}