/* ==========================================================================
   Breakaway Prep — page-content component styles
   Surgically ported from the old DreamHost Bones theme (library/css/style.css)
   for the Kinsta + Kadence migration. S288 (2026-05-14).

   SCOPE: page-content components only. Theme chrome (header, nav, mobile menu,
   footer) and the Bones normalize/reset are intentionally NOT ported — Kadence
   provides its own. Image url() paths rewritten to the child theme's images/.
   ========================================================================== */

/* --------------------------------------------------------------------------
   Kadence chrome reset
   BP content carries its own hero blocks (.home-hero, .hero, .post-hero)
   with built-in vertical padding, so Kadence's auto page-title section and
   its content-area / entry-content-wrap chrome conflict (invisible h1 from
   BP's h1{color:#fff} rule, 80px gap, faint white card above the hero).
   -------------------------------------------------------------------------- */
/* Kadence renders the page/post title in one of two ways depending on the
   theme's per-template layout setting:
     (a) as a separate hero band ABOVE the content: .entry-hero.page-hero-section
         (used on regular pages by default in this install)
     (b) inline at the top of .entry-content-wrap: .entry-header.post-title
         (used on single posts) or .entry-header.service-title (services CPT)

   For BP-styled pages whose post_content already includes its own hero block
   (.home-hero / .hero / .post-hero / .pattern-hero / .breakout), the Kadence
   title is duplicative — hide it. Otherwise restyle it to look like a BP hero
   (navy bg, white centered termina h1) so the page has a proper top band. */

/* Hide Kadence's title block ONLY when the FIRST element of .entry-content
   is already a BP hero. Service pages have .breakout deeper (val-props,
   testimonial, cwi, form-block) but their first child is just an <h3> — so
   we don't want to hide the title block there. */
body:has(.entry-content > .home-hero:first-child,
        .entry-content > .hero:first-child,
        .entry-content > .post-hero:first-child,
        .entry-content > .pattern-hero:first-child,
        .entry-content > .breakout:first-child) .entry-hero.page-hero-section,
body:has(.entry-content > .home-hero:first-child,
        .entry-content > .hero:first-child,
        .entry-content > .post-hero:first-child,
        .entry-content > .pattern-hero:first-child,
        .entry-content > .breakout:first-child) .entry-header.post-title,
body:has(.entry-content > .home-hero:first-child,
        .entry-content > .hero:first-child,
        .entry-content > .post-hero:first-child,
        .entry-content > .pattern-hero:first-child,
        .entry-content > .breakout:first-child) .entry-header.service-title { display: none; }

/* Hero-band variant (Kadence layout "above"). Kadence's .entry-hero-container-inner
   has its own background that would show through as a horizontal stripe, so we
   apply the navy to both the section AND the inner container.
   `.post-archive-hero-section` covers the blog index (page_for_posts) so it
   matches the rest of the site instead of falling back to Kadence's pale grey. */
.entry-hero.page-hero-section,
.entry-hero.post-hero-section,
.entry-hero.post-archive-hero-section,
.entry-hero.page-hero-section .entry-hero-container-inner,
.entry-hero.post-hero-section .entry-hero-container-inner,
.entry-hero.post-archive-hero-section .entry-hero-container-inner {
    background-color: #113C63;
}
.entry-hero.page-hero-section,
.entry-hero.post-hero-section,
.entry-hero.post-archive-hero-section { padding: 56px 0; position: relative; }
.entry-hero.page-hero-section .entry-header,
.entry-hero.post-hero-section .entry-header,
.entry-hero.post-archive-hero-section .entry-header { min-height: 0; }
.entry-hero.page-hero-section .entry-title,
.entry-hero.post-hero-section .entry-title,
.entry-hero.post-archive-hero-section .page-title {
    color: #ffffff;
    font-family: "termina", sans-serif;
    text-align: center;
    margin: 0;
}

/* Blog archive — decorative coral/purple stripes flanking the navy hero, to
   match the .hero.orange block used inside About Us / other static pages.
   Pseudo-elements keep this CSS-only (no PHP/template changes). */
.entry-hero.post-archive-hero-section::before,
.entry-hero.post-archive-hero-section::after {
    content: "";
    position: absolute;
    top: 0; bottom: 0;
    width: 5%;
    background-size: cover;
    background-repeat: no-repeat;
    pointer-events: none;
}
.entry-hero.post-archive-hero-section::before {
    left: 0;
    background-image: url(images/patterns/book-purple-orange-left.webp);
    background-position: right 50%;
}
.entry-hero.post-archive-hero-section::after {
    right: 0;
    background-image: url(images/patterns/book-purple-orange-right.webp);
    background-position: left 50%;
}

/* Blog — hide post meta (date + empty author) on the archive index AND on
   single posts. Category taxonomy stays visible (separate .entry-taxonomies). */
body.blog .loop-entry .entry-meta,
body.blog .loop-entry .entry-meta-divider-dot,
.single-post .entry-header.post-title .entry-meta { display: none; }

/* Inline-title variant (Kadence layout "inline" — single posts + services). */
.entry-header.post-title,
.entry-header.service-title {
    background-color: #113C63;
    color: #ffffff;
    padding: 56px 24px;
    margin: 0 -2rem 32px -2rem;  /* counteract .entry-content-wrap{padding:2rem} */
    text-align: center;
}
.entry-header.post-title .entry-title,
.entry-header.service-title .entry-title {
    color: #ffffff;
    font-family: "termina", sans-serif;
    text-align: center;
    margin: 0;
}
.entry-header.post-title .entry-taxonomies,
.entry-header.post-title .entry-meta {
    color: #B9F2FF;
    margin-top: 0;
    margin-bottom: 12px;
}
.entry-header.post-title .entry-taxonomies .term-links a,
.entry-header.post-title .entry-meta a {
    color: #B9F2FF;
    text-decoration: none;
}
.entry-header.post-title .entry-meta { margin-top: 16px; margin-bottom: 0; }

@media only screen and (min-width: 768px) {
    .entry-hero.page-hero-section,
    .entry-hero.post-hero-section,
    .entry-hero.post-archive-hero-section { padding: 75px 0; }
    .entry-header.post-title,
    .entry-header.service-title { padding: 75px 24px; }
    .entry-hero.post-archive-hero-section::before,
    .entry-hero.post-archive-hero-section::after { width: 10%; background-size: auto 200%; }
}

.content-area { margin-top: 0; margin-bottom: 0; }
.entry-content-wrap { padding: 0; }
.entry.single-entry,
.entry.loop-entry { box-shadow: none; }

/* Kadence's blog index template uses h2.entry-title for each post card. BP's
   .bp-post-item h3 styling expects post-card titles to be ~24px, but Kadence
   inherits the default h2 styling so they render ~50px. Scope down. */
.loop-entry .entry-title,
.loop-entry h2.entry-title {
    font-family: "termina", sans-serif;
    font-weight: 700;
    font-size: 22px;
    line-height: 28px;
    color: #113C63;
    margin: 0 0 12px 0;
}
.loop-entry .entry-title a { color: inherit; text-decoration: none; }
.loop-entry .entry-title a:hover { color: #0374B1; }

/* Single-post body container — give it a max-width so paragraphs aren't 1200px
   wide on desktop (Kadence content width inherits from .content-width-normal). */
.single-post .entry-content > p,
.single-post .entry-content > ul,
.single-post .entry-content > ol,
.single-post .entry-content > blockquote,
.single-post .entry-content > h2,
.single-post .entry-content > h3,
.single-post .entry-content > h4 {
    max-width: 794px;
    margin-left: auto;
    margin-right: auto;
}
.single-post .entry-content { padding: 40px 0; }

/* Site title text sits next to the logo image — the logo already
   includes the wordmark, so visually hide the redundant text while
   keeping it in the DOM for SEO + screen readers. */
.site-branding .site-title-wrap {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    clip-path: inset(50%);
    white-space: nowrap;
    border: 0;
    padding: 0;
    margin: -1px;
}

/* Kadence footer styled with BP brand colors (light teal + navy text). */
.site-footer {
    background-color: #B9F2FF;
    color: #113C63;
}
.site-footer .site-footer-wrap { padding: 32px 0; }
.site-footer .footer-widget-area.site-info {
    color: #113C63;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
}
.site-footer .footer-widget-area.site-info a {
    color: #113C63;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    -webkit-transition: border-bottom-color 0.2s ease-in-out;
    transition: border-bottom-color 0.2s ease-in-out;
}
.site-footer .footer-widget-area.site-info a:hover,
.site-footer .footer-widget-area.site-info a:focus { border-bottom-color: #113C63; }
.bp-footer-nav {
    list-style: none;
    padding: 0;
    margin: 0 0 16px 0;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 24px;
}
.bp-footer-nav li { margin: 0; }
.bp-footer-credit {
    margin: 0;
    font-size: 13px;
    line-height: 18px;
    color: #113C63;
    opacity: 0.85;
}

/* --------------------------------------------------------------------------
   Base + layout utilities
   -------------------------------------------------------------------------- */
body {
    font-family: "Public Sans", sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: #000;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Full-bleed wrapper: breaks content out to full viewport width.
   overflow-x guard added (not in original) to stop the negative margins
   from triggering horizontal scroll inside Kadence's content container. */
html, body { overflow-x: hidden; }
.breakout {
    position: relative;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.wrap {
    width: 90%;
    max-width: 1202px;
    margin: 0 auto;
}

.two-buttons {
    display: -webkit-flex;
    display: flex;
}
.two-buttons a {
    display: block;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    width: 138px;
    text-align: center;
    font-weight: 600;
    font-size: 14px;
    line-height: 16px;
    text-decoration: none;
}

.nolink > a { pointer-events: none; }

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 30px;
    height: 0;
    overflow: hidden;
}
.video-container iframe,
.video-container object,
.video-container embed {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}

/* Bones 12-column grid (page-content layout, used by interior pages) */
@media (min-width: 768px) {
    .grid {
        display: -ms-grid;
        display: grid;
        grid-template-columns: repeat(12, 1fr);
        grid-column-gap: 20px;
    }
    .grid .main-col { grid-column: span 9; }
    .grid .sidebar  { grid-column: span 3; }
    .grid .grid-col { grid-column: auto; }
    .grid .grid-col-1  { grid-column: span 1; }
    .grid .grid-col-2  { grid-column: span 2; }
    .grid .grid-col-3  { grid-column: span 3; }
    .grid .grid-col-4  { grid-column: span 4; }
    .grid .grid-col-5  { grid-column: span 5; }
    .grid .grid-col-6  { grid-column: span 6; }
    .grid .grid-col-7  { grid-column: span 7; }
    .grid .grid-col-8  { grid-column: span 8; }
    .grid .grid-col-9  { grid-column: span 9; }
    .grid .grid-col-10 { grid-column: span 10; }
    .grid .grid-col-11 { grid-column: span 11; }
    .grid .grid-col-12 { grid-column: span 12; }
    .grid .grid-col-full { grid-column: span 12; }
    .grid.reverse { grid-auto-flow: dense; }
    .grid.reverse .main-col { grid-column: 4 / span 9; }
    .grid.reverse .sidebar  { grid-column: 1 / span 3; }
}

/* --------------------------------------------------------------------------
   Typography
   -------------------------------------------------------------------------- */
/* Link colors scoped to content (original applied them globally; scoping
   keeps Kadence header/footer link colors intact). */
.entry-content a,
.entry-content a:visited { color: #113C63; }
a:link, a:visited:link { -webkit-tap-highlight-color: rgba(0,0,0,0.3); }

h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5 {
    text-rendering: optimizelegibility;
    font-weight: 500;
}
h1 a, .h1 a, h2 a, .h2 a, h3 a, .h3 a, h4 a, .h4 a, h5 a, .h5 a {
    text-decoration: none;
}
h1, .h1 {
    color: #fff;
    font-family: "termina", sans-serif;
    font-size: 28px;
    line-height: 34px;
    margin: 0;
    text-align: center;
}
h2, .h2 {
    font-family: "termina", sans-serif;
    font-weight: 700;
    color: #113C63;
    font-size: 24px;
    line-height: 30px;
    margin: 0 0 16px 0;
}
h3, .h3 {
    font-family: "termina", sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 26px;
    margin-bottom: 16px;
    color: #0374B1;
}
h4, .h4 {
    font-size: 17px;
    line-height: 22px;
    font-weight: 700;
    color: #464FA1;
    margin-bottom: 18px;
}
h5, .h5 {
    font-size: 0.846em;
    line-height: 2.09em;
    text-transform: uppercase;
    letter-spacing: 2px;
}

@media only screen and (min-width: 768px) {
    h1, .h1 { font-size: 60px; line-height: 65px; }
    h2, .h2 { font-size: 40px; line-height: 50px; margin-bottom: 30px; }
    h3, .h3 { font-size: 24px; line-height: 32px; margin-bottom: 25px; }
}

/* --------------------------------------------------------------------------
   Entry content (post/page body prose)
   -------------------------------------------------------------------------- */
.hentry { max-width: 794px; margin: 0 auto; }
.single-title, .page-title, .entry-title { margin: 0; }
.byline { color: #ccc; font-style: italic; margin: 0; }

.entry-content p { font-size: 15px; margin: 0 0 1.5em; }
.entry-content a {
    font-weight: 700;
    text-decoration: none;
    border-bottom: 2px solid #F99B1C;
}
.entry-content a:hover { border-bottom-color: #DD2B0D; }
.entry-content ul, .entry-content ol, .entry-content table, .entry-content dl { font-size: 15px; }
.entry-content table { width: 100%; border: 1px solid #F5F5F5; margin-bottom: 1.5em; }
.entry-content table caption {
    margin: 0 0 7px;
    font-size: 0.75em;
    color: #ccc;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.entry-content tr { border-bottom: 1px solid #F5F5F5; }
.entry-content tr:nth-child(even) { background-color: #f8f9fa; }
.entry-content td { padding: 7px; border-right: 1px solid #F5F5F5; }
.entry-content td:last-child { border-right: 0; }
.entry-content th {
    background-color: #f8f9fa;
    border-bottom: 1px solid #F5F5F5;
    border-right: 1px solid #F5F5F5;
}
.entry-content th:last-child { border-right: 0; }
.entry-content blockquote {
    margin: 40px 0;
    padding: 20px 0;
    text-align: center;
    border-top: 2px solid #0374B1;
    border-bottom: 2px solid #0374B1;
}
.entry-content blockquote p {
    color: #DD2B0D;
    font-family: "EB Garamond", serif;
    font-style: italic;
    font-size: 24px;
    line-height: 30px;
    letter-spacing: -0.24px;
}
.entry-content blockquote p:last-of-type { margin-bottom: 20px; }
.entry-content blockquote cite {
    text-transform: uppercase;
    font-family: "termina", sans-serif;
    font-weight: 700;
    color: #00597C;
    font-style: normal;
}
.entry-content blockquote cite:before { content: "—"; margin-right: 6px; }
.entry-content dd { margin-left: 0; font-size: 0.9em; color: #787878; margin-bottom: 1.5em; }
.entry-content img { margin: 0 0 1.5em 0; max-width: 100%; height: auto; }
.entry-content .size-auto,
.entry-content .size-full,
.entry-content .size-large,
.entry-content .size-medium,
.entry-content .size-thumbnail { max-width: 100%; height: auto; }
.entry-content pre {
    background: #000;
    color: #f8f9fa;
    font-size: 0.9em;
    padding: 1.5em;
    margin: 0 0 1.5em;
    border-radius: 3px;
}

@media only screen and (min-width: 768px) {
    .entry-content blockquote { padding: 32px 0; margin: 60px 0; }
    .entry-content p:last-of-type { margin-bottom: 34px; }
}
@media only screen and (min-width: 481px) {
    .entry-content .alignleft, .entry-content img.alignleft { margin-right: 1.5em; display: inline; float: left; }
    .entry-content .alignright, .entry-content img.alignright { margin-left: 1.5em; display: inline; float: right; }
    .entry-content .aligncenter, .entry-content img.aligncenter { margin-right: auto; margin-left: auto; display: block; clear: both; }
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
a.btn, a.btn:visited, input.btn {
    display: inline-block;
    text-transform: uppercase;
    padding: 13px 16px 10px 16px;
    border: 4px solid #F99B1C;
    -webkit-transition: background-color 0.3s ease-in-out;
    transition: background-color 0.3s ease-in-out;
    color: #113C63;
    font-family: "termina", sans-serif;
    font-weight: 700;
    text-decoration: none;
    font-size: 13px;
    letter-spacing: -0.26px;
}
a.btn:focus, a.btn:hover,
a.btn:visited:focus, a.btn:visited:hover,
input.btn:focus, input.btn:hover {
    background-color: #F99B1C;
    color: #113C63;
}

/* --------------------------------------------------------------------------
   Form elements (CF7 forms in ported content)
   -------------------------------------------------------------------------- */
input[type="text"], input[type="password"], input[type="datetime"],
input[type="datetime-local"], input[type="date"], input[type="month"],
input[type="time"], input[type="week"], input[type="number"],
input[type="email"], input[type="url"], input[type="search"],
input[type="tel"], input[type="color"], select, textarea, .field {
    display: block;
    height: 40px;
    line-height: 22px;
    padding: 0 12px;
    margin-bottom: 14px;
    font-size: 15px;
    color: #000;
    vertical-align: middle;
    box-shadow: none;
    border: 0;
    width: 100%;
    background-color: #fff;
}
input[type="text"]:focus, input[type="text"]:active,
input[type="email"]:focus, input[type="email"]:active,
input[type="tel"]:focus, input[type="tel"]:active,
input[type="url"]:focus, input[type="url"]:active,
input[type="search"]:focus, input[type="search"]:active,
select:focus, select:active, textarea:focus, textarea:active,
.field:focus, .field:active {
    outline: 4px solid #B9F2FF;
}
input.wpcf7-not-valid, select.wpcf7-not-valid, textarea.wpcf7-not-valid,
.field.wpcf7-not-valid {
    outline: 4px solid #DD2B0D;
}
textarea {
    max-width: 100%;
    min-height: 120px;
    line-height: 1.5em;
    padding: 12px;
}
select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url(images/drop-blue.svg);
    background-repeat: no-repeat;
    background-position: 100% center;
    border-radius: 0;
}
select:focus { outline: 4px solid #B9F2FF; }
select.wpcf7-not-valid { background-image: url(images/drop-orange.svg); }
select::-ms-expand { display: none; }
::-webkit-input-placeholder { opacity: 1; color: #000; }
::-moz-placeholder { opacity: 1; color: #000; }
:-ms-input-placeholder { opacity: 1; color: #000; }
:-moz-placeholder { opacity: 1; color: #000; }
.formel { margin-bottom: 20px; }

input[type="radio"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #fff;
    border: 1px solid #fff;
    position: relative;
}
input[type="radio"]:after {
    content: "";
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: transparent;
    position: absolute;
    top: 2px;
    left: 2px;
}
input[type="radio"]:checked:after { background-color: #0374B1; }
input[type="radio"]:focus { border-color: #B9F2FF; }

/* --------------------------------------------------------------------------
   Hero — full-width section header with side "book" pattern panels
   -------------------------------------------------------------------------- */
.hero {
    padding: 56px 0;
    position: relative;
}
.hero .book-left, .hero .book-right {
    position: absolute;
    top: 0;
    bottom: 0;
    height: 100%;
    width: 5%;
    background-size: cover;
    background-repeat: no-repeat;
}
.hero .book-left { left: 0; background-position: right 50%; }
.hero .book-right { right: 0; background-position: left 50%; }

.hero.orange { background-color: #113C63; }
.hero.orange .book-left  { background-image: url(images/patterns/book-purple-orange-left.webp); }
.hero.orange .book-right { background-image: url(images/patterns/book-purple-orange-right.webp); }
.hero.yellow { background-color: #113C63; }
.hero.yellow .book-left  { background-image: url(images/patterns/book-orange-yellow-left.webp); }
.hero.yellow .book-right { background-image: url(images/patterns/book-orange-yellow-right.webp); }
.hero.purple { background-color: #113C63; }
.hero.purple .book-left  { background-image: url(images/patterns/book-purple-blue-left.webp); }
.hero.purple .book-right { background-image: url(images/patterns/book-purple-blue-right.webp); }
.hero.blue { background-color: #464FA1; }
.hero.blue .book-left  { background-image: url(images/patterns/book-blues-left.webp); }
.hero.blue .book-right { background-image: url(images/patterns/book-blues-right.webp); }
.hero.service {
    background-color: #F99B1C;
    padding-bottom: 80px;
}
.hero.service .book-left  { background-image: url(images/patterns/wavy-blue-purple-left.webp); }
.hero.service .book-right { background-image: url(images/patterns/wavy-blue-purple-right.webp); }
.hero.service.bb .book-left  { background-image: url(images/patterns/wavy-blues-left.webp); }
.hero.service.bb .book-right { background-image: url(images/patterns/wavy-blues-right.webp); }
.hero.service.oy .book-left  { background-image: url(images/patterns/wavy-orange-yellow-left.webp); }
.hero.service.oy .book-right { background-image: url(images/patterns/wavy-orange-yellow-right.webp); }
.hero.service.po .book-left  { background-image: url(images/patterns/wavy-purple-orange-left.webp); }
.hero.service.po .book-right { background-image: url(images/patterns/wavy-purple-orange-right.webp); }
.hero.service h1 { color: #113C63; }

@media only screen and (min-width: 768px) {
    .hero { padding: 75px 0; }
    .hero .book-left, .hero .book-right { background-size: auto 200%; width: 10%; }
    .hero .wrap { width: 80%; }
    .hero.service { padding-bottom: 124px; }
    .hero.service .book-left, .hero.service .book-right { background-size: auto 100%; }
}

/* --------------------------------------------------------------------------
   Home hero
   -------------------------------------------------------------------------- */
.home-hero {
    position: relative;
    padding: 40px 0;
    background-color: #113C63;
}
.home-hero .hh-tab {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: 5%;
    background-position: left center;
    background-size: cover;
    background-image: url(images/patterns/book-orange-yellow-right.webp);
}
.home-hero .wrap { max-width: 1042px; }
.home-hero h1 { text-align: left; }
.home-hero .hh-subhead {
    margin-top: 20px;
    font-size: 18px;
    line-height: 24px;
    color: #fff;
    font-weight: 500;
}
@media only screen and (min-width: 768px) {
    .home-hero { padding: 90px 0; }
    .home-hero .hh-tab { width: 26.8%; }
    .home-hero .wrap { padding-right: 28%; }
    .home-hero .hh-subhead { margin-top: 32px; }
}
@media only screen and (min-width: 1600px) {
    .home-hero .wrap { padding-right: 15%; }
}
@media only screen and (min-width: 2480px) {
    .home-hero .wrap { padding-right: 0; }
}

/* --------------------------------------------------------------------------
   Intro
   -------------------------------------------------------------------------- */
.intro { padding: 40px 0; }
.intro .intro-content { margin: 0 auto; max-width: 600px; text-align: center; }
@media only screen and (min-width: 768px) {
    .intro { padding: 64px 0; }
}

/* --------------------------------------------------------------------------
   Value props
   -------------------------------------------------------------------------- */
.val-props { background-color: #F5F5F5; padding: 40px 0; }
.val-props.white { background-color: #fff; }
.val-prop-item { margin: 0 auto 40px auto; text-align: center; }
.val-prop-item:last-child { margin-bottom: 0; }
.val-prop-item h3 { margin-bottom: 12px; }
.val-prop-item .vpi-icon { text-align: center; }
.val-prop-item .vpi-icon img { display: block; margin: 0 auto; max-width: 68px; height: auto; }
.val-prop-item .vpi-description { font-size: 15px; line-height: 1.5; }
@media only screen and (min-width: 768px) {
    .val-props { padding: 54px 0; }
    .val-props .wrap { display: -webkit-flex; display: flex; justify-content: space-between; }
    .val-prop-item { width: 25%; margin: 0; }
    .val-prop-item .vpi-icon img { height: 85px; width: auto; max-width: 100%; }
}

/* --------------------------------------------------------------------------
   Pattern hero
   -------------------------------------------------------------------------- */
.pattern-hero {
    display: -webkit-flex;
    display: flex;
    background-color: #00597C;
}
.pattern-hero .ph-tab {
    width: 64px;
    background-size: 44px auto;
    background-repeat: repeat-y;
    background-image: url(images/patterns/blue-icon-mobile-stack.webp);
}
.pattern-hero .ph-tab.ph-tab-left { background-position: center 10%; }
.pattern-hero .ph-tab.ph-tab-right { background-position: center 90%; }
.pattern-hero .content { flex: 1; padding: 40px 10px; }
@media only screen and (min-width: 768px) {
    .pattern-hero { overflow: hidden; }
    .pattern-hero .ph-tab {
        width: 28%;
        background-size: 100% auto;
        background-image: url(images/patterns/blue-icon-pattern.webp);
    }
    .pattern-hero .ph-tab.ph-tab-left {
        background-position: left center;
        -webkit-transform: translateX(-11%);
        transform: translateX(-11%);
    }
    .pattern-hero .ph-tab.ph-tab-right {
        background-position: right center;
        -webkit-transform: translateX(11%);
        transform: translateX(11%);
    }
    .pattern-hero .content { padding: 75px 0; }
}

/* --------------------------------------------------------------------------
   Form block
   -------------------------------------------------------------------------- */
.form-block {
    background-position: 50% 50%;
    background-repeat: repeat;
    background-size: 27px 27px;
    padding: 32px 0;
}
.form-block .wrap { padding: 24px; }
.form-block h2 {
    text-align: center;
    font-size: 22px;
    line-height: 28px;
    margin: 0 0 20px 0;
}
.form-block .cb-subheading {
    color: #fff;
    text-align: center;
    font-size: 15px;
    line-height: 22px;
    margin-bottom: 20px;
}
.form-block input.btn {
    background-color: transparent;
    color: #fff;
    width: 170px;
    white-space: normal;
    -webkit-transition: border-color 0.3s ease-in-out, background-color 0.3s ease-in-out, color 0.3s ease-in-out;
    transition: border-color 0.3s ease-in-out, background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}
.form-block input.btn:hover, .form-block input.btn:focus {
    border-color: transparent;
    background-color: #F99B1C;
    color: #113C63;
}
.form-block select option { background-color: #B9F2FF; }
.form-block .wpcf7-radio .wpcf7-list-item { display: block; margin: 0 0 6px 0; color: #fff; }
.form-block .wpcf7-radio .wpcf7-list-item label { display: -webkit-flex; display: flex; }
.form-block .wpcf7-radio .wpcf7-list-item label input { margin-right: 8px; }
.form-block.blue {
    background-color: #113C63;
    background-image: url(images/patterns/grid-square-dark-teal.png);
}
.form-block.blue h2 { color: #B9F2FF; }
.form-block.blue .wrap { background-color: #113C63; }
.form-block.orange {
    background-color: #DD2B0D;
    background-image: url(images/patterns/grid-square-yellow.png);
}
.form-block.orange h2 { color: #fff; }
.form-block.orange .wrap { background-color: #db3b20; }
.form-block.orange select { background-image: url(images/drop-orange.svg); }
.form-block.orange .wpcf7-not-valid-tip { color: #ffbbbb; }
.form-block.breakout.blue .wpcf7-not-valid-tip { color: #ffffff; }
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output { color: #fff; }
@media only screen and (min-width: 768px) {
    .form-block { padding: 37px 0; }
    .form-block .wrap { padding: 34px 57px; }
    .form-block h2 { font-size: 24px; margin-bottom: 40px; }
    .form-block .cb-subheading { margin-top: -22px; margin-bottom: 40px; }
    .form-block .form-cols { display: -webkit-flex; display: flex; justify-content: space-between; }
    .form-block .form-cols .form-col-one { flex: 1; max-width: 650px; }
    .form-block .form-cols .form-col-two { width: 285px; margin-left: 24px; }
}

/* --------------------------------------------------------------------------
   Locations block
   -------------------------------------------------------------------------- */
.lb-locations { padding: 24px 0; }
.lb-locations h2 { text-align: center; margin: 0 0 24px 0; }
.lb-locations .loc-state-item { text-align: center; margin-bottom: 40px; }
.lb-locations .loc-state-item h3 { margin: 0 0 16px 0; }
.lb-locations .loc-state-item .location h4 {
    color: #113C63;
    text-transform: uppercase;
    font-weight: 700;
    margin: 0;
    font-size: 17px;
}
.lb-locations .loc-state-item .location .loc-details { font-size: 15px; line-height: 22px; }
.lb-locations .loc-state-item:last-child { margin-bottom: 0; }
@media only screen and (min-width: 768px) {
    .lb-locations { padding: 70px 0; }
    .lb-locations h2 { margin: 0 0 70px 0; }
    .lb-locations .loc-state-item .locations {
        display: -webkit-flex;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
    .lb-locations .loc-state-item .locations .location { width: 48%; margin: 0 1% 40px 1%; }
}

/* --------------------------------------------------------------------------
   Contact block
   -------------------------------------------------------------------------- */
.contact-block { background-color: #B9F2FF; }
.contact-block .halfwrap { width: 90%; max-width: 1202px; margin: 0 auto; }
.contact-block .cb-one { color: #113C63; }
.contact-block .cb-one a { color: #113C63; text-decoration: none; border-bottom: none; }
.contact-block .cb-one a:hover, .contact-block .cb-one a:focus { border-bottom: 2px solid #113C63; }
.contact-block .cb-one .halfwrap { padding: 40px 0; }
.contact-block .cb-one h2 { margin-top: 0; }
.contact-block .cb-one h3 { color: #00597C; }
.contact-block .cb-one .contact-block-links {
    border-bottom: 1px solid #00597C;
    max-width: 488px;
    padding-bottom: 24px;
    margin-bottom: 40px;
}
.contact-block .cb-one .contact-block-links .cbl {
    font-size: 15px;
    line-height: 22px;
    padding-left: 22px;
    margin-bottom: 16px;
    background-repeat: no-repeat;
    background-position: left center;
}
.contact-block .cb-one .contact-block-links .cbl.cbl-phone { background-image: url(images/icons/phone-dark-teal.svg); }
.contact-block .cb-one .contact-block-links .cbl.cbl-email { background-image: url(images/icons/email-dark-teal.svg); }
.contact-block .cb-one .contact-block-links .cbl.cbl-address { background-image: url(images/icons/pin-dark-teal.svg); }
.contact-block .cb-one .contact-block-social { display: -webkit-flex; display: flex; align-items: center; }
.contact-block .cb-one .contact-block-social .social-links { display: -webkit-flex; display: flex; margin-left: 24px; }
.contact-block .cb-one .contact-block-social .social-links a { margin-right: 15px; border-bottom: 2px solid transparent; }
.contact-block .cb-one .contact-block-social .social-links a svg path {
    -webkit-transition: fill 0.3s ease-in-out;
    transition: fill 0.3s ease-in-out;
}
.contact-block .cb-one .contact-block-social .social-links a:hover,
.contact-block .cb-one .contact-block-social .social-links a:focus { border-bottom-color: #113C63; }
.contact-block .cb-one .contact-block-social .social-links a:hover svg path,
.contact-block .cb-one .contact-block-social .social-links a:focus svg path { fill: #00597C; }
.contact-block .cb-one .contact-block-social .social-links img { margin-bottom: 0; }
.contact-block .cb-two {
    background-image: url(images/patterns/grid-square-dark-blue.png);
    background-repeat: repeat;
    background-position: center center;
    background-size: 27px 27px;
}
.contact-block .cb-two .halfwrap { padding: 40px 0; }
.contact-block input[type="text"]:focus,
.contact-block input[type="email"]:focus,
.contact-block input[type="tel"]:focus,
.contact-block textarea:focus { outline: 4px solid #00597C; }
.contact-block .split-formel { display: -webkit-flex; display: flex; justify-content: space-between; }
.contact-block .split-formel .formel { width: 48%; }
.contact-block .split-formel .formel input { margin-bottom: 0; }
.contact-block input[type="submit"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: #113C63;
    color: #fff;
    border: none;
    font-family: "termina", sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.26px;
    padding: 13px 16px;
    -webkit-transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out;
    transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out;
}
.contact-block input[type="submit"]:hover,
.contact-block input[type="submit"]:focus { background-color: #F99B1C; color: #113C63; }
@media only screen and (min-width: 768px) {
    .contact-block { display: -webkit-flex; display: flex; }
    .contact-block .halfwrap { max-width: 601px; }
    .contact-block .cb-one { width: 50%; }
    .contact-block .cb-one .halfwrap { margin: 0 0 0 auto; padding: 70px 75px 70px 0; }
    .contact-block .cb-two { width: 50%; }
    .contact-block .cb-two .halfwrap { padding: 70px 0 70px 75px; margin: 0 auto 0 0; }
}

/* --------------------------------------------------------------------------
   Service intro + CWI (content-with-image) block
   -------------------------------------------------------------------------- */
.service-intro {
    background-color: #F5F5F5;
    text-align: center;
    padding-bottom: 30px;
    margin-bottom: 30px;
}
.service-intro .service-icon {
    background-color: #fff;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    display: -webkit-flex;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto -20px auto;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}
.service-intro .service-icon img { display: block; margin: 0; width: 50%; height: auto; }
.service-intro .wrap { max-width: 590px; }
@media only screen and (min-width: 768px) {
    .service-intro { padding-bottom: 64px; margin-bottom: 64px; }
    .service-intro .service-icon { width: 188px; height: 188px; margin-bottom: -60px; }
}

.cwi { background-color: #F5F5F5; position: relative; padding: 32px 0; }
.cwi .colortab {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    height: 170px;
    background-image: url(images/patterns/book-purple-blue-left.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: right bottom;
}
.cwi .wrap { position: relative; }
.cwi .cwi-image {
    height: 0;
    padding-bottom: 64.3%;
    background-size: cover;
    background-position: center center;
    margin-bottom: 24px;
}
.cwi .cwi-description { font-size: 15px; margin-bottom: 24px; }
@media only screen and (min-width: 768px) {
    .cwi { padding: 49px 0; }
    .cwi .colortab { right: auto; bottom: 0; height: auto; width: 26.8%; }
    .cwi .wrap { display: -webkit-flex; display: flex; justify-content: space-between; }
    .cwi .cwi-image-wrap { width: 45%; display: -webkit-flex; display: flex; align-items: center; }
    .cwi .cwi-image { padding-bottom: 64.5%; flex: 1; margin: 0; }
    .cwi .cwi-content { width: 48%; display: -webkit-flex; display: flex; align-items: center; }
}

/* --------------------------------------------------------------------------
   Post hero + blog/resource post items
   -------------------------------------------------------------------------- */
.post-hero { background-color: #113C63; }
.post-hero .ph-image { background-size: cover; background-position: center top; background-repeat: no-repeat; }
.post-hero .ph-image .shape { height: 0; padding-bottom: 56%; }
.post-hero .ph-copy { padding: 32px 0; }
.post-hero .ph-copy .inner { width: 90%; margin: 0 auto; text-align: left; }
.post-hero .ph-copy h1 { text-align: left; font-size: 24px; line-height: 30px; }
.post-hero .ph-copy .category {
    color: #B9F2FF;
    font-size: 14px;
    line-height: 16px;
    font-family: "termina", sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.post-hero .ph-copy a.btn {
    display: inline-block;
    margin-top: 30px;
    color: #fff;
    border: 4px solid #B9F2FF;
}
.post-hero .ph-copy a.btn:hover { color: #113C63; background-color: #B9F2FF; }
.single-post .post-hero { margin-bottom: 24px; }
@media only screen and (min-width: 1025px) {
    .post-hero {
        display: -webkit-flex;
        display: flex;
        justify-content: space-between;
        padding: 80px 0;
    }
    .post-hero .ph-image { width: 50%; order: 2; }
    .post-hero .ph-copy { flex: 1; display: -webkit-flex; display: flex; align-items: center; padding: 70px 0; }
    .post-hero .ph-copy h1 { font-size: 40px; line-height: 50px; }
    .post-hero.with-image { padding: 0; }
    .post-hero.with-image .ph-copy { display: -webkit-flex; display: flex; justify-content: flex-end; }
    .post-hero.with-image .ph-copy .inner { max-width: 601px; margin: 0; padding-right: 9.5%; }
}
@media only screen and (min-width: 768px) {
    .single-post .post-hero { margin-bottom: 64px; }
}

.bp-post-item { background-color: #efefef; }
.bp-post-item img { display: block; width: 100%; height: auto; }
.bp-post-item .inner { padding: 24px; }
.bp-post-item .cat {
    font-family: "termina", sans-serif;
    font-weight: 700;
    color: #113C63;
    text-transform: uppercase;
    font-size: 14px;
    line-height: 16px;
    letter-spacing: 0.84px;
}
.bp-post-item h3 { color: #113C63; }
.bp-post-item a.readmore {
    font-style: italic;
    color: #113C63;
    font-family: "EB Garamond", serif;
    font-size: 18px;
    line-height: 1;
    text-decoration: none;
    border-bottom: 2px solid #0374B1;
}
.bp-post-item a.readmore:hover { color: #0374B1; }
.secondary-featured { background-color: #B9F2FF; padding: 32px 0; }
.secondary-featured .bp-post-item { margin: 0 0 32px 0; background-color: #ffffff; }
.secondary-featured .bp-post-item:last-child { margin: 0; }
@media only screen and (min-width: 768px) {
    .secondary-featured { padding: 60px 0; }
    .secondary-featured .wrap { display: -webkit-flex; display: flex; justify-content: space-between; }
    .secondary-featured .bp-post-item { margin: 0; width: calc(50% - 31px); }
}

/* --------------------------------------------------------------------------
   Resource filters + What's New posts
   -------------------------------------------------------------------------- */
#resource-filters {
    background-color: #113C63;
    color: #fff;
    padding: 28px 28px 18px 28px;
}
#resource-filters #resource-filters-links {
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
#resource-filters a {
    color: #fff;
    display: inline-block;
    text-decoration: none;
    text-transform: uppercase;
    padding: 2px 0 6px 0;
    margin-bottom: 10px;
    font-weight: 700;
}
#resource-filters a.active, #resource-filters a:hover {
    padding-bottom: 2px;
    border-bottom: 4px solid #F99B1C;
}
#resource-filters span.cat-sep {
    margin: 0 14px 14px 14px;
    width: 1px;
    background-color: #fff;
    display: inline-block;
}
@media (min-width: 570px) {
    #resource-filters { padding: 12px 28px 0 28px; }
    #resource-filters a { margin-bottom: 0; padding-bottom: 10px; }
    #resource-filters span.cat-sep { margin: 2px 14px 12px 14px; }
}
@media (max-width: 767.5px) {
    #resource-filters .rfl { width: 44%; text-align: center; }
    #resource-filters span.cat-sep:nth-of-type(2n) { display: none; }
}
#whatsnew-posts { padding: 32px 0 0 0; }
#whatsnew-posts .bp-post-item { margin: 0 0 32px 0; width: 100%; }
@media only screen and (min-width: 768px) {
    #whatsnew-posts { padding: 66px 0; }
    #whatsnew-posts .bp-post-item { margin-bottom: 42px; width: calc(50% - 42px); }
}
@media only screen and (min-width: 1245px) {
    #whatsnew-posts .bp-post-item { width: calc(33% - 28px); }
}

/* --------------------------------------------------------------------------
   Testimonial
   -------------------------------------------------------------------------- */
.testimonial { padding: 30px 0; text-align: center; }
.testimonial .wrap { max-width: 795px; }
.testimonial .tb-quote {
    color: #DD2B0D;
    font-family: "EB Garamond", serif;
    font-style: italic;
    font-size: 34px;
    letter-spacing: -0.4px;
    line-height: 1.5;
}
.testimonial .tb-attribution {
    text-transform: uppercase;
    font-family: "termina", sans-serif;
    font-weight: 700;
    color: #00597C;
    font-style: normal;
    font-size: 14px;
    line-height: 16px;
    letter-spacing: 0.84px;
    margin-top: 20px;
}
.testimonial.grey { background-color: #F5F5F5; }
.testimonial.white { background-color: #fff; }
.service-template-default .testimonial.grey { background: #ffffff; }
@media only screen and (min-width: 768px) {
    .testimonial { padding: 64px 0; }
    .testimonial .tb-quote { font-size: 40px; }
}

/* --------------------------------------------------------------------------
   Services carousel
   -------------------------------------------------------------------------- */
.services-carousel { background-color: #00597C; padding: 40px 0; }
.services-carousel h3.block-heading {
    color: #B9F2FF;
    margin-top: 0;
    text-align: center;
    text-transform: uppercase;
}
.services-carousel .fullwrap { width: 90%; margin: 0 auto; }
.services-carousel .owl-stage-outer { z-index: 2; }
.services-carousel .owl-nav {
    display: -webkit-flex;
    display: flex;
    justify-content: center;
    z-index: 0;
    margin-top: 20px;
}
.services-carousel .owl-nav svg path {
    -webkit-transition: fill 0.3s ease-in-out;
    transition: fill 0.3s ease-in-out;
}
.services-carousel .owl-nav .owl-prev:hover svg path,
.services-carousel .owl-nav .owl-next:hover svg path { fill: #F99B1C; }
.services-carousel .owl-nav .owl-prev { margin-right: 43px; }
.services-carousel .owl-nav .owl-next { margin-left: 43px; }
.services-carousel .owl-stage { display: -webkit-flex; display: flex; }
.sc-item {
    background-color: #fff;
    border-bottom: 15px solid #0374B1;
    height: 100%;
    padding: 24px;
}
.sc-item .sci-icon {
    width: 160px;
    height: 133px;
    margin: 0 auto 36px auto;
    display: -webkit-flex;
    display: flex;
    justify-content: center;
    align-items: center;
}
.sc-item .sci-icon img {
    margin: 0;
    display: block;
    max-width: 100%;
    width: auto;
    max-height: 100%;
    height: auto;
}
.sc-item h3 { margin: 0 0 12px 0; text-align: center; }
.sc-item .sci-excerpt { font-size: 15px; line-height: 22px; margin: 0 0 20px 0; }
.sc-item .linkwrap { text-align: center; }
.sc-item a.btn { margin: 0 auto; }
@media only screen and (min-width: 768px) {
    .services-carousel { padding: 58px 0; }
    .services-carousel .services-wrap { padding: 0 54px; position: relative; }
    .services-carousel .services-wrap .owl-nav {
        margin-top: 0;
        position: absolute;
        top: 50%;
        left: -54px;
        right: -54px;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
        justify-content: space-between;
    }
    .sc-item .sci-excerpt { text-align: center; }
}

/* --------------------------------------------------------------------------
   Key differentiators
   -------------------------------------------------------------------------- */
.key-diff { background-color: #F5F5F5; padding: 40px 0; }
.key-diff h3 { margin: 0 0 40px 0; text-align: center; }
.key-diff .val-prop-item .vpi-icon { margin-bottom: 20px; }
@media only screen and (min-width: 768px) {
    .key-diff { padding: 54px 0 4px 0; }
    .key-diff h3 { margin-bottom: 50px; }
    .key-diff .diffs { display: -webkit-flex; display: flex; flex-wrap: wrap; }
    .key-diff .val-prop-item { width: 25%; margin: 0 4% 60px 4%; }
}

/* --------------------------------------------------------------------------
   Teachers block
   -------------------------------------------------------------------------- */
.teachers-block { background-color: #113C63; color: #fff; padding: 40px 0; }
.teachers-block h2 { color: #fff; max-width: 794px; margin: 0 auto 16px auto; text-align: center; }
.teachers-block .tb-intro { max-width: 794px; margin: 0 auto 32px auto; }
.teacher-item {
    padding: 20px;
    display: -webkit-flex;
    display: flex;
    background-color: #fff;
    color: #000;
    margin: 0 0 32px 0;
}
.teacher-item:last-child { margin-bottom: 0; }
.teacher-item .ti-image { width: 29.5%; margin: 0 16px 0 0; max-width: 200px; }
.teacher-item .ti-image .imgwrap { border-radius: 50%; overflow: hidden; }
.teacher-item .ti-image img { margin: 0; display: block; width: 100%; height: auto; }
.teacher-item .ti-copy { flex: 1; }
.teacher-item .ti-copy h3 {
    margin: 0 0 10px 0;
    font-size: 17px;
    line-height: 22px;
    font-family: "Public Sans", sans-serif;
    font-weight: 700;
}
.teacher-item .ti-copy .title { margin: 0 0 15px 0; font-size: 15px; line-height: 22px; }
.teacher-item .ti-copy .services { margin: 0 0 15px 0; font-size: 15px; line-height: 22px; }
.teacher-item .ti-copy a.linkedin { text-decoration: none; border: none; }
.teacher-item .ti-copy a.linkedin svg path {
    -webkit-transition: fill 0.3s ease-in-out;
    transition: fill 0.3s ease-in-out;
}
.teacher-item .ti-copy a.linkedin:hover svg path,
.teacher-item .ti-copy a.linkedin:focus svg path { fill: #00597C; }
.teacher-item.blue { border-bottom: 10px solid #00597C; }
.teacher-item.blue .imgwrap { background-color: #00597C; }
.teacher-item.yellow { border-bottom: 10px solid #F99B1C; }
.teacher-item.yellow .imgwrap { background-color: #F99B1C; }
.teacher-item.orange { border-bottom: 10px solid #DD2B0D; }
.teacher-item.orange .imgwrap { background-color: #DD2B0D; }
.teacher-item.eggplant { border-bottom: 10px solid #7A2A90; }
.teacher-item.eggplant .imgwrap { background-color: #7A2A90; }
.teacher-item.purple { border-bottom: 10px solid #464FA1; }
.teacher-item.purple .imgwrap { background-color: #464FA1; }
/* Heading color: contrast-corrected value from the original theme's later override */
.teacher-item.blue h3, .teacher-item.yellow h3, .teacher-item.orange h3,
.teacher-item.eggplant h3, .teacher-item.purple h3 { color: #00597C; }
@media only screen and (min-width: 768px) {
    .teachers-block { padding: 64px 0 34px 0; }
    .teachers-block .teachers { display: -webkit-flex; display: flex; flex-wrap: wrap; }
    .teacher-item { width: calc(50% - 24px); margin: 0 12px 30px 12px; padding: 32px; }
    .teacher-item:last-child { margin-bottom: 30px; }
}
@media only screen and (min-width: 1025px) {
    .teachers-block h2 { margin-bottom: 30px; }
    .teachers-block .tb-intro { margin-bottom: 60px; }
    .teacher-item { width: calc(33% - 24px); margin: 0 12px 30px 12px; padding: 32px; }
    .teacher-item .ti-image { width: 37.5%; margin-right: 25px; }
}

/* --------------------------------------------------------------------------
   Leadership block
   -------------------------------------------------------------------------- */
.leadership-block { padding: 40px 0; }
.leadership-block h2 { max-width: 794px; margin: 0 auto 16px auto; text-align: center; }
.leadership-block .lb-intro { max-width: 794px; margin: 0 auto 32px auto; }
.leader-item { color: #fff; margin: 0 0 32px 0; }
.leader-item .leader-item-inner { background-color: #00597C; }
.leader-item .li-image img { display: block; margin: 0; width: 100%; height: auto; }
.leader-item .li-content { padding: 20px; }
.leader-item .li-content .namewrap {
    display: -webkit-flex;
    display: flex;
    justify-content: space-between;
    margin-bottom: 6px;
}
.leader-item .li-content .namewrap h3 {
    margin: 0;
    color: #fff;
    font-family: "Public Sans", sans-serif;
    font-size: 17px;
    line-height: 22px;
    font-weight: 700;
}
.leader-item .li-content .namewrap a { border: none; line-height: 1; }
.leader-item .li-content .namewrap a svg path {
    -webkit-transition: fill 0.3s ease-in-out;
    transition: fill 0.3s ease-in-out;
}
.leader-item .li-content .namewrap a:hover svg path,
.leader-item .li-content .namewrap a:focus svg path { fill: #F99B1C; }
.leader-item .li-content .title { margin: 0; font-size: 15px; line-height: 22px; }
.leader-item .li-content .bio-wrap .bio { display: none; padding-top: 30px; }
.leader-item .li-content .bio-wrap .bio p:last-child { margin-bottom: 0; }
.leader-item .li-content .bio-wrap .bio-link {
    margin-top: 30px;
    color: #a2eeff;
    border-bottom: 2px solid #B9F2FF;
    display: inline-block;
    font-family: "EB Garamond", serif;
    font-style: italic;
    font-size: 18px;
    line-height: 18px;
    -webkit-transition: color 0.3s ease-in-out, border-bottom-color 0.3s ease-in-out;
    transition: color 0.3s ease-in-out, border-bottom-color 0.3s ease-in-out;
}
.leader-item .li-content .bio-wrap .bio-link:hover,
.leader-item .li-content .bio-wrap .bio-link:focus { color: #F99B1C; border-bottom-color: #F99B1C; }
.leader-item .li-content .bio-wrap .bio-link .bio-link-less { display: none; cursor: pointer; }
.leader-item .li-content .bio-wrap .bio-link .bio-link-more { display: block; cursor: pointer; }
.leader-item .li-content .bio-wrap .bio-link.expanded .bio-link-less { display: block; }
.leader-item .li-content .bio-wrap .bio-link.expanded .bio-link-more { display: none; }
@media only screen and (min-width: 768px) {
    .leadership-block { padding: 64px 0 34px 0; }
    .leadership-block .leaders {
        display: -webkit-flex;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        margin-top: 50px;
    }
    .leader-item { width: calc(50% - 24px); margin: 0 12px 30px 12px; }
}
@media only screen and (min-width: 1025px) {
    .leader-item { width: calc(25% - 24px); }
}

/* --------------------------------------------------------------------------
   Accessibility / focus
   -------------------------------------------------------------------------- */
.form-cols input[type="checkbox"]:focus,
input[type="checkbox"]:focus {
    outline: 2px solid #007BFF;
    outline-offset: 2px;
}
.wpcf7-list-item input[type="checkbox"] { min-width: 24px; min-height: 24px; }


/* BP CTA menu buttons in header — S289 restore replay */
.menu-item.bp-cta > a {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    line-height: 1.2;
    transition: opacity 0.2s ease;
}
.menu-item.bp-cta > a:hover {
    opacity: 0.85;
    text-decoration: none;
}
.menu-item.bp-cta-light > a {
    background-color: #B9F2FF;
    color: #113C63 !important;
}
.menu-item.bp-cta-dark > a {
    background-color: #113C63;
    color: #FFFFFF !important;
}

