:root {
	/* Bolt reference palette */
	--primary-color: #1756A9;
	--secondary-color: #3BAA72;
	--tertiary-color: #102A56;
	--imesb-surface: #F6F8FB;
	--imesb-border: rgba(16, 42, 86, 0.12);
	--imesb-text: #172033;
	--imesb-muted: #5E6878;
}

body { position: relative; color: var(--imesb-text); }

a:hover {
    color: #3BAA72;
}

.page {
    margin-top: 0;
    padding-top: 0;
}

/* Sticky header: neutralize legacy fixed-header offsets */
.imesb-site .page { margin-top: 0; }
@media (min-width: 992px) {
	.imesb-site .page { margin-top: 0; }
}
@media (min-width: 1200px) {
	.imesb-site .page { margin-top: 0; }
}

#preloader .preloader.preloader-02 span {
    background: var(--secondary-color);
}

.header-section-05 {
    box-shadow: 1px 0 10px rgba(0, 0, 0, .6);
}

.header-section-05 .header-top-section {
    background: var(--secondary-color);
}

.header-section-05 .header-top-section .header-top-wrap .header-social .social li a:hover {
    color: var(--tertiary-color);
}

.header-menu .main-menu > li a {
    text-transform: none;
}

.header-toggle button span {
    background: var(--primary-color);
}

.offcanvas {
    background: var(--secondary-color);
}

.offcanvas-header .close-btn:hover {
    color: var(--secondary-color);
}

.offcanvas-menu .main-menu li .menu-expand {
    background-color: rgba(255,255,255,.2);
}

.header-section-05 .header-menu .main-menu > li:hover > a {
    color: var(--secondary-color);
}

.header-section-05 .header-menu .main-menu > li .sub-menu {
    border-color: var(--secondary-color);
}

.header-section-05 .header-menu .main-menu > li .sub-menu li:hover > a {
    color: var(--secondary-color);
}

.progress-wrap svg.progress-circle path {
    stroke: var(--secondary-color);
}
.progress-wrap::after {
    color: var(--secondary-color);
}

.widget-info .info-text .tel    ,
.widget-info .info-text .text   {
    margin-top: 4px;
}

.widget-info .info-icon i {
    color: var(--secondary-color);
    margin-right: 20px;
}

.widget-link .link li a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.copyright-social .social li a:hover {
    color: #3BAA72;
}

.footer-widget-wrap {
    padding-bottom: 50px;
}

.footer-disclaimer-wrap {
    padding-bottom: 50px;
}

/* Shared media listing styles */
:root {
    --media-accent: var(--secondary-color);
}

.media-feed {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

.media-card {
    background: #fff;
    border-radius: 16px;
    border: 1px solid rgba(17, 26, 36, 0.08);
    box-shadow: 0 18px 35px rgba(17, 26, 36, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
}

.media-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 45px rgba(17, 26, 36, 0.14);
}

.media-card__link {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.media-card__image {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #f3f6fb;
}

.media-card__image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.media-card:hover .media-card__image img {
    transform: scale(1.06);
}

.media-card__placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 153, 0, 0.3), rgba(255, 120, 0, 0.6));
    color: rgba(255, 255, 255, 0.6);
    font-size: 3rem;
}

.media-card__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(17, 26, 36, 0.5), rgba(17, 26, 36, 0.25));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.media-card:hover .media-card__overlay {
    opacity: 1;
}

.media-card__overlay i {
    color: #fff;
    font-size: 1.75rem;
    transform: translateX(-8px);
    transition: transform 0.3s ease;
}

.media-card:hover .media-card__overlay i {
    transform: translateX(0);
}

.media-card__content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 16px;
}

.media-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.8125rem;
    color: #667085;
}

.media-card__meta-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.media-card__meta-item i {
    color: var(--media-accent);
}

.media-card__meta-badge {
    padding: 4px 12px;
    border-radius: 999px;
    background: rgba(255, 166, 0, 0.14);
    color: var(--media-accent);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.media-card__title {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.4;
    color: #102A56;
    margin: 0;
    transition: color 0.3s ease;
}

.media-card:hover .media-card__title {
    color: var(--media-accent);
}

.media-card__excerpt {
    color: #475467;
    font-size: 0.9375rem;
    line-height: 1.7;
    margin: 0;
    flex: 1;
}

.media-card__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding-top: 18px;
    border-top: 1px solid rgba(17, 26, 36, 0.08);
    font-size: 0.85rem;
    color: #667085;
}

.media-card__stat {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.media-card__stat i {
    color: var(--media-accent);
}

.media-card__action {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--media-accent);
    transition: gap 0.3s ease;
}

.media-card:hover .media-card__action {
    gap: 12px;
}

.media-card__badge {
    position: absolute;
    bottom: 16px;
    left: 16px;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(17, 26, 36, 0.75);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.media-card__badge i {
    color: #fff;
}

@media (max-width: 991.98px) {
    .media-feed {
        gap: 24px;
    }
}

@media (max-width: 767.98px) {
    .media-feed {
        grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
        gap: 20px;
    }

    .media-card__content {
        padding: 20px;
        gap: 14px;
    }
}

@media (max-width: 575.98px) {
    .media-feed {
        grid-template-columns: 1fr;
    }
}

/* Shared media detail styles */
.media-hero {
    display: flex;
    flex-direction: column;
    gap: 22px;
    margin-bottom: 42px;
}

.media-hero__badge,
.media-hero__meta-badge {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: 999px;
    background: rgba(255, 166, 0, 0.16);
    color: var(--media-accent);
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.media-hero__title {
    margin: 0;
    font-size: clamp(2rem, 2.4vw + 1rem, 2.75rem);
    font-weight: 800;
    line-height: 1.2;
    color: #102A56;
}

.media-hero__description {
    font-size: 1rem;
    color: #475467;
    line-height: 1.7;
}

.media-hero__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(17, 26, 36, 0.08);
}

.media-hero__meta-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #475467;
}

.media-hero__meta-item i {
    color: var(--media-accent);
    font-size: 1rem;
}

.media-hero__cover {
    position: relative;
    margin-bottom: 36px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 18px 35px rgba(17, 26, 36, 0.08);
    background: #f3f6fb;
}

.media-hero__cover img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.media-content {
    font-size: 1rem;
    line-height: 1.78;
    color: #344054;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.media-content p {
    margin-bottom: 18px;
}

.media-content img {
    max-width: 100%;
    border-radius: 14px;
    display: block;
    margin: 26px auto;
}

.media-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 48px;
    padding-top: 28px;
    border-top: 1px solid rgba(17, 26, 36, 0.08);
}

.media-back {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 26px;
    border-radius: 999px;
    background: #f3f6fb;
    color: #102A56;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.media-back i {
    color: var(--media-accent);
    transition: transform 0.3s ease;
}

.media-back:hover {
    background: var(--media-accent);
    color: #fff;
    transform: translateY(-2px);
}

.media-back:hover i {
    color: #fff;
    transform: translateX(-3px);
}

.media-share {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
}

.media-share--stacked {
    flex-direction: column;
    align-items: stretch;
}

.media-share--stacked .media-share__links {
    justify-content: center;
}

.media-share__label {
    font-weight: 600;
    color: #475467;
    font-size: 0.95rem;
}

.media-share__links {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.media-share__link {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.media-share__link:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(17, 26, 36, 0.16);
}

.media-share__link:focus-visible {
    outline: 2px solid rgba(255, 166, 0, 0.65);
    outline-offset: 2px;
}

.media-share__link--facebook {
    background: #1877f2;
}

.media-share__link--twitter {
    background: #1d9bf0;
}

.media-share__link--whatsapp {
    background: #25d366;
}

.media-gallery-section {
    display: flex;
    flex-direction: column;
    gap: 22px;
    margin-top: 48px;
}

.media-gallery-section__title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.25rem;
    color: #102A56;
    font-weight: 700;
}

.media-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 18px;
}

.media-gallery-item {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    background: #f3f6fb;
    box-shadow: 0 18px 30px rgba(17, 26, 36, 0.08);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.media-gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 38px rgba(17, 26, 36, 0.14);
}

.media-gallery-item__figure {
    position: relative;
    padding-bottom: 66.67%;
}

.media-gallery-item__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.media-gallery-item:hover .media-gallery-item__image {
    transform: scale(1.05);
}

.media-gallery-item__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(17, 26, 36, 0.55), rgba(17, 26, 36, 0.35));
    color: #fff;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.media-gallery-item:hover .media-gallery-item__overlay {
    opacity: 1;
}

.media-gallery-item__overlay i {
    font-size: 1.75rem;
}

.media-gallery-item__caption {
    position: absolute;
    inset-inline: 0;
    bottom: 0;
    padding: 16px;
    background: linear-gradient(0deg, rgba(17, 26, 36, 0.75), rgba(17, 26, 36, 0));
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.95rem;
    line-height: 1.5;
    transform: translateY(105%);
    transition: transform 0.3s ease;
}

.media-gallery-item:hover .media-gallery-item__caption {
    transform: translateY(0);
}

.media-gallery-section__cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    align-self: flex-start;
    padding: 12px 24px;
    border-radius: 999px;
    background: #102A56;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.media-gallery-section__cta i {
    transition: transform 0.3s ease;
}

.media-gallery-section__cta:hover {
    transform: translateY(-2px);
    background: var(--media-accent);
    box-shadow: 0 18px 30px rgba(17, 26, 36, 0.18);
}

.media-gallery-section__cta:hover i {
    transform: translateX(4px);
}

.gallery-modal-content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
}

.gallery-image-container {
    max-width: 100%;
    text-align: center;
}

.gallery-modal-image {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
}

.gallery-modal-caption {
    margin-top: 15px;
    font-size: 16px;
    color: #666;
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s ease;
    z-index: 10;
}

.gallery-nav:hover {
    background: rgba(0, 0, 0, 0.8);
}

.gallery-prev {
    left: 20px;
}

.gallery-next {
    right: 20px;
}

.gallery-counter {
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.gallery-counter {
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

@media (max-width: 768px) {
    .gallery-nav {
        width: 40px;
        height: 40px;
    }
}

.sidebar-widget {
    --sidebar-accent: var(--media-accent, #3BAA72);
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid rgba(17, 26, 36, 0.08);
    box-shadow: 0 18px 35px rgba(17, 26, 36, 0.08);
    padding: 26px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 26px;
    position: relative;
    overflow: hidden;
}

.sidebar-widget::before {
    content: "";
    position: absolute;
    inset-inline: 0;
    top: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--sidebar-accent), rgba(255, 166, 0, 0.2));
    opacity: 0.9;
}

.sidebar-widget:last-child {
    margin-bottom: 0;
}

.sidebar-widget .widget-title {
    margin: 0;
    font-size: 1.125rem;
    font-weight: 700;
    color: #102A56;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(17, 26, 36, 0.08);
}

.sidebar-widget .widget-title i {
    color: var(--sidebar-accent);
}

.latest-news-list,
.latest-galleries-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.latest-news-list .sidebar-news-item,
.latest-galleries-list .latest-gallery-item {
    border-bottom: 1px solid rgba(17, 26, 36, 0.08);
    padding-bottom: 15px;
}

.latest-news-list .sidebar-news-item:last-child,
.latest-galleries-list .latest-gallery-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.latest-news-list .sidebar-news-item a,
.latest-galleries-list .latest-gallery-item a {
    text-decoration: none;
    color: inherit;
    display: flex;
    gap: 15px;
}

.latest-news-list .sidebar-news-image,
.latest-galleries-list .latest-gallery-image {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
}

.latest-news-list .sidebar-news-image img,
.latest-galleries-list .latest-gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.latest-news-list .sidebar-news-item:hover .sidebar-news-image img,
.latest-galleries-list .latest-gallery-item:hover .latest-gallery-image img {
    transform: scale(1.1);
}

.latest-news-list .sidebar-news-content,
.latest-galleries-list .latest-gallery-content {
    flex: 1;
}

.latest-news-list .sidebar-news-content h4,
.latest-galleries-list .latest-gallery-content h4 {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
    line-height: 1.4;
    display: -webkit-box;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s ease;
}

.latest-news-list .sidebar-news-item:hover h4,
.latest-galleries-list .latest-gallery-item:hover h4 {
    color: var(--media-accent, #3BAA72);
}

.latest-news-list .sidebar-news-date,
.latest-galleries-list .latest-gallery-meta {
    font-size: 12px;
    color: #999;
    display: flex;
    align-items: center;
    gap: 5px;
}

.latest-news-list .sidebar-news-date i,
.latest-galleries-list .latest-gallery-meta i {
    color: var(--media-accent, #3BAA72);
}

@media (max-width: 767.98px) {
    .sidebar-widget {
        border-radius: 18px;
        padding: 22px;
        gap: 18px;
    }
}

@media (max-width: 991.98px) {
    .media-hero {
        gap: 18px;
    }

    .media-hero__meta {
        gap: 14px;
    }

    .media-gallery-grid {
        gap: 16px;
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
}

@media (max-width: 767.98px) {
    .media-hero__title {
        font-size: clamp(1.75rem, 4vw + 1rem, 2.35rem);
    }

    .media-hero__meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .media-hero__cover {
        margin-bottom: 28px;
        border-radius: 16px;
    }

    .media-footer {
        flex-direction: column;
        align-items: stretch;
    }

    .media-share {
        justify-content: space-between;
    }

    .media-gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    }
}

@media (max-width: 575.98px) {
    .media-hero__badge,
    .media-hero__meta-badge {
        font-size: 0.75rem;
        padding: 5px 14px;
    }

    .media-share__links {
        width: 100%;
        justify-content: flex-start;
    }

    .media-share__link {
        width: 46px;
        height: 46px;
    }

    .media-gallery-grid {
        grid-template-columns: 1fr;
    }
}


/*  X-Small devices (portrait phones, less than 576px)*/
/*  No media query for `xs` since this is the default in Bootstrap*/

/*  Small devices (landscape phones, 576px and up)*/
@media (min-width: 576px) {  }

/*  Medium devices (tablets, 768px and up)*/
@media (min-width: 768px) {  }

/*  Large devices (desktops, 992px and up)*/
@media (min-width: 992px) {
    .imesb-site .page { margin-top: 0 !important; }
}
@media (min-width: 1200px) {
    .imesb-site .page { margin-top: 0 !important; }
}

/*  XX-Large devices (larger desktops, 1400px and up)*/
@media (min-width: 1400px) {  }


/* `xs` returns only a ruleset and no media query */

/* `sm` applies to x-small devices (portrait phones, less than 576px)*/
@media (max-width: 575.98px) {  }

/* `md` applies to small devices (landscape phones, less than 768px)*/
@media (max-width: 767.98px) {  }

/* `lg` applies to medium devices (tablets, less than 992px)*/
@media (max-width: 991.98px) {  }

/* `xl` applies to large devices (desktops, less than 1200px)*/
@media (max-width: 1199.98px) {  }

/* `xxl` applies to x-large devices (large desktops, less than 1400px)*/
@media (max-width: 1399.98px) {  }


/* ========== Chrome merge (modelo bolt + cores atuais) ========== */
.skip-link {
	position: absolute;
	left: 1rem;
	top: -100px;
	z-index: 10000;
	background: var(--secondary-color);
	color: #fff;
	padding: 0.6rem 1rem;
	border-radius: 0.4rem;
	font-weight: 600;
	text-decoration: none;
}
.skip-link:focus { top: 1rem; color: #fff; }

.btn-imesb {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.4rem;
	padding: 0.6rem 1.2rem;
	border-radius: 0.45rem;
	font-weight: 700;
	font-size: 0.88rem;
	line-height: 1.2;
	text-decoration: none;
	border: 2px solid transparent;
	transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, filter 0.2s ease;
}
.btn-imesb--accent {
	background: #3BAA72;
	color: #fff;
}
.btn-imesb--accent:hover {
	color: #fff;
	background: #2f8f5c;
	filter: none;
}
.btn-imesb--outline {
	background: transparent;
	border-color: var(--tertiary-color);
	color: var(--tertiary-color);
}
.btn-imesb--outline:hover {
	background: var(--tertiary-color);
	color: #fff;
}
.btn-imesb--ghost {
	background: rgba(255,255,255,0.12);
	color: #fff;
	border-color: rgba(255,255,255,0.35);
}
.btn-imesb--ghost:hover {
	background: #fff;
	color: var(--tertiary-color);
}

.imesb-header {
	position: sticky;
	top: 0;
	z-index: 1030;
	background: #fff;
	box-shadow: 0 1px 0 var(--imesb-border), 0 8px 24px rgba(17, 26, 36, 0.06);
}
.imesb-topbar {
	background: #102A56;
	color: rgba(255,255,255,0.92);
	font-size: 0.78rem;
}
.imesb-topbar__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 2.35rem;
	gap: 1rem;
}
.imesb-topbar__info {
	display: flex;
	align-items: center;
	gap: 1.25rem;
	flex-wrap: wrap;
}
.imesb-topbar__info i { margin-right: 0.35rem; opacity: 0.9; }
.imesb-topbar__actions {
	display: flex;
	align-items: center;
	gap: 0.35rem;
}
.imesb-a11y-btn {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	background: transparent;
	border: 0;
	color: rgba(255,255,255,0.95);
	font-size: 0.75rem;
	padding: 0.25rem 0.5rem;
	border-radius: 0.35rem;
	cursor: pointer;
}
.imesb-a11y-btn:hover { background: rgba(255,255,255,0.14); color: #fff; }
.imesb-topbar__cta {
	display: inline-flex;
	align-items: center;
	background: #3BAA72;
	color: #fff;
	font-weight: 700;
	font-size: 0.75rem;
	padding: 0.35rem 0.85rem;
	border-radius: 999px;
	text-decoration: none;
	margin-left: 0.35rem;
}
.imesb-topbar__cta:hover { color: #fff; background: #2f8f5c; filter: none; }
.imesb-topbar__info i { color: #3BAA72; }

.imesb-navbar { background: #fff; }
.imesb-navbar__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	min-height: 5.5rem;
}
.imesb-brand img {
	height: auto;
	width: auto;
	max-width: 200px;
}
@media only screen and (max-width: 1399px) {
	.imesb-brand img {
		max-width: 160px;
	}
}
@media only screen and (max-width: 1199px) {
	.imesb-brand img {
		width: 130px;
		max-width: 130px;
	}
}
.imesb-offcanvas .offcanvas-logo img,
.imesb-offcanvas .imesb-brand img {
	width: 130px;
	max-width: 130px;
	height: auto;
	max-height: none;
}
.imesb-navbar__meta {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	flex-shrink: 0;
}
.imesb-menu-toggle {
	width: 42px;
	height: 42px;
	border: 0;
	background: transparent;
	display: inline-flex;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	padding: 8px;
}
.imesb-menu-toggle span {
	display: block;
	height: 2px;
	width: 100%;
	background: var(--secondary-color);
	border-radius: 2px;
}

.imesb-nav__list {
	list-style: none;
	margin: 0;
	padding: 0;
	align-items: center;
	gap: 0.1rem;
}
.imesb-nav__item { position: relative; }
.imesb-nav__link {
	display: inline-flex;
	align-items: center;
	gap: 0.3rem;
	padding: 0.55rem 0.65rem;
	color: var(--tertiary-color) !important;
	font-weight: 600;
	font-size: 0.88rem;
	text-decoration: none;
	border-radius: 0.4rem;
	white-space: nowrap;
}
.imesb-nav__link:hover,
.imesb-nav__item:hover > .imesb-nav__link {
	color: var(--secondary-color) !important;
}
.imesb-nav__chevron {
	font-size: 0.6rem;
	opacity: 0.65;
}
.imesb-nav__dropdown {
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 240px;
	margin: 0;
	padding: 0.5rem 0;
	list-style: none;
	background: #fff;
	border: 1px solid var(--imesb-border);
	border-top: 3px solid var(--secondary-color);
	border-radius: 0 0 0.5rem 0.5rem;
	box-shadow: 0 16px 32px rgba(17, 26, 36, 0.12);
	opacity: 0;
	visibility: hidden;
	transform: translateY(6px);
	transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
	z-index: 50;
}
.imesb-nav__item:hover > .imesb-nav__dropdown,
.imesb-nav__item:focus-within > .imesb-nav__dropdown {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}
.imesb-nav__dropdown a {
	display: block;
	padding: 0.55rem 1rem;
	color: var(--imesb-text);
	text-decoration: none;
	font-size: 0.88rem;
	font-weight: 500;
}
.imesb-nav__dropdown a:hover {
	background: var(--imesb-surface);
	color: var(--secondary-color);
}

.imesb-offcanvas { background: var(--tertiary-color); }
.imesb-offcanvas .offcanvas-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	width: 100%;
}
.imesb-offcanvas .offcanvas-logo {
	flex: 1 1 auto;
	min-width: 0;
}
.imesb-offcanvas .close-btn {
	margin-left: auto;
	flex-shrink: 0;
	order: 2;
	width: 2.5rem;
	height: 2.5rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	line-height: 1;
}
.imesb-nav--mobile .imesb-nav__list {
	display: flex;
	flex-direction: column;
	align-items: stretch;
}
.imesb-nav--mobile .imesb-nav__item {
	position: relative;
}
.imesb-nav--mobile .imesb-nav__row {
	display: flex;
	align-items: stretch;
	border-bottom: 1px solid rgba(255,255,255,0.12);
}
.imesb-nav--mobile .imesb-nav__row .imesb-nav__link {
	border-bottom: 0;
	flex: 1 1 auto;
}
.imesb-nav--mobile .imesb-nav__link {
	color: #fff !important;
	width: 100%;
	justify-content: space-between;
	padding: 0.85rem 0;
	border-bottom: 1px solid rgba(255,255,255,0.12);
}
.imesb-nav--mobile .imesb-nav__item:not(.has-children) > .imesb-nav__link {
	display: flex;
}
.imesb-nav--mobile .imesb-nav__toggle {
	flex-shrink: 0;
	width: 2.75rem;
	min-height: 100%;
	margin: 0.35rem 0 0.35rem 0.35rem;
	border: 0;
	border-radius: 0.45rem;
	background: rgba(255,255,255,0.12);
	color: #fff;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	position: relative;
}
.imesb-nav--mobile .imesb-nav__toggle-icon,
.imesb-nav--mobile .imesb-nav__toggle-icon::after {
	display: block;
	background: #fff;
	border-radius: 1px;
}
.imesb-nav--mobile .imesb-nav__toggle-icon {
	width: 14px;
	height: 2px;
	position: relative;
}
.imesb-nav--mobile .imesb-nav__toggle-icon::after {
	content: '';
	position: absolute;
	left: 50%;
	top: 50%;
	width: 2px;
	height: 14px;
	transform: translate(-50%, -50%);
	transition: transform 0.2s ease, opacity 0.2s ease;
}
.imesb-nav--mobile .has-children.is-open > .imesb-nav__row .imesb-nav__toggle-icon::after {
	opacity: 0;
	transform: translate(-50%, -50%) scaleY(0);
}
.imesb-nav--mobile .imesb-nav__dropdown {
	position: static;
	opacity: 1;
	visibility: visible;
	transform: none;
	box-shadow: none;
	border: 0;
	border-top: 0;
	background: transparent;
	padding: 0.15rem 0 0.55rem 0.85rem;
	display: none;
	min-width: 0;
}
.imesb-nav--mobile .imesb-nav__dropdown[hidden] {
	display: none !important;
}
.imesb-nav--mobile .imesb-nav__dropdown a {
	color: rgba(255,255,255,0.88);
	padding: 0.55rem 0.35rem;
	border-radius: 0.4rem;
	display: block;
}
.imesb-nav__item--cta { margin-top: 1rem; }
.imesb-offcanvas__a11y {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-top: 1.5rem;
	padding-top: 1rem;
	border-top: 1px solid rgba(255,255,255,0.15);
}
.imesb-offcanvas .imesb-a11y-btn { color: #fff; }

.imesb-footer {
	background: var(--tertiary-color);
	color: rgba(255,255,255,0.85);
	padding: 4rem 0 1.5rem;
	margin-top: 0;
}
.imesb-footer a { color: rgba(255,255,255,0.85); text-decoration: none; }
.imesb-footer a:hover { color: #ffb347; }
.imesb-footer__grid {
	display: grid;
	grid-template-columns: 1.5fr repeat(3, 1fr);
	gap: 2rem;
	padding-bottom: 2.5rem;
	border-bottom: 1px solid rgba(255,255,255,0.12);
}
.imesb-footer__logo img { max-height: 52px; margin-bottom: 1rem; }
.imesb-footer__tagline,
.imesb-footer__address,
.imesb-footer__contact {
	font-size: 0.9rem;
	line-height: 1.55;
	margin-bottom: 0.85rem;
}
.imesb-footer__title {
	color: #fff;
	font-size: 0.95rem;
	font-weight: 700;
	margin-bottom: 1rem;
}
.imesb-footer__links { list-style: none; margin: 0; padding: 0; }
.imesb-footer__links li { margin-bottom: 0.45rem; }
.imesb-footer__links a { font-size: 0.9rem; }
.imesb-footer__disclaimer {
	padding: 1.75rem 0;
	text-align: center;
	font-size: 0.82rem;
	line-height: 1.55;
	opacity: 0.8;
	border-bottom: 1px solid rgba(255,255,255,0.12);
}
.imesb-footer__bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding-top: 1.25rem;
	flex-wrap: wrap;
	font-size: 0.85rem;
}
.imesb-footer__social {
	list-style: none;
	display: flex;
	gap: 0.75rem;
	margin: 0;
	padding: 0;
}
.imesb-footer__social a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: rgba(255,255,255,0.08);
}
.imesb-footer__social a:hover {
	background: var(--secondary-color);
	color: #fff;
}
@media (max-width: 991.98px) {
	.imesb-footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 575.98px) {
	.imesb-footer__grid { grid-template-columns: 1fr; }
}

/* Hub / section helpers */
.imesb-site .section-block { padding: 3.25rem 0; }
.imesb-site .section-block--muted { background: var(--imesb-surface); }
.imesb-site .section-heading { margin-bottom: 1.75rem; }
.imesb-site .section-heading__eyebrow {
	display: block;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--secondary-color);
	margin-bottom: 0.4rem;
}
.imesb-site .section-heading__title {
	font-size: clamp(1.4rem, 2.2vw, 1.85rem);
	font-weight: 800;
	color: var(--tertiary-color);
	margin: 0 0 0.45rem;
}
.imesb-site .section-heading__text {
	max-width: 40rem;
	color: var(--imesb-muted);
	margin: 0;
	line-height: 1.55;
}
.imesb-site .hub-card-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	gap: 1.15rem;
}
.imesb-site .hub-card {
	display: flex;
	flex-direction: column;
	height: 100%;
	padding: 1.35rem 1.4rem;
	background: #fff;
	border: 1px solid var(--imesb-border);
	border-radius: 0.75rem;
	text-decoration: none;
	color: inherit;
	box-shadow: 0 4px 14px rgba(17, 26, 36, 0.04);
	transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.imesb-site .hub-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 24px rgba(17, 26, 36, 0.1);
	border-color: rgba(59, 170, 114, 0.45);
	color: inherit;
}
.imesb-site .hub-card__icon {
	width: 2.5rem;
	height: 2.5rem;
	border-radius: 0.55rem;
	background: rgba(59, 170, 114, 0.14);
	color: var(--secondary-color);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 0.85rem;
	font-size: 1.05rem;
}
.imesb-site .hub-card__title {
	font-size: 1.05rem;
	font-weight: 700;
	color: var(--tertiary-color);
	margin: 0 0 0.45rem;
}
.imesb-site .hub-card__text {
	color: var(--imesb-muted);
	font-size: 0.9rem;
	line-height: 1.5;
	margin: 0 0 0.85rem;
	flex: 1;
}
.imesb-site .hub-card__cta {
	font-weight: 700;
	font-size: 0.86rem;
	color: #3BAA72;
}
.imesb-site .cta-band {
	background: var(--tertiary-color);
	color: #fff;
	padding: 3rem 0;
}
.imesb-site .cta-band__title {
	font-size: clamp(1.35rem, 2.3vw, 1.85rem);
	font-weight: 800;
	color: #fff;
	margin: 0 0 0.55rem;
}
.imesb-site .cta-band__text {
	color: rgba(255,255,255,0.85);
	margin: 0 0 1.15rem;
	max-width: 36rem;
}
.imesb-site .cta-band__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
}

html.high-contrast,
html.high-contrast body {
	background: #000 !important;
	color: #fff !important;
}
html.high-contrast .imesb-header,
html.high-contrast .imesb-navbar,
html.high-contrast .hub-card,
html.high-contrast .imesb-footer {
	background: #000 !important;
	color: #fff !important;
	border-color: #fff !important;
}
html.high-contrast a { color: #ffe066 !important; }
html.high-contrast .imesb-topbar { background: #000 !important; border-bottom: 1px solid #fff; }
html[data-font-size="large"] { font-size: 112.5%; }
html[data-font-size="xlarge"] { font-size: 125%; }

.imesb-site .header-section-05 { display: none; }

/* Page hero/banner overrides live in imesb-overrides.css (loaded last) */
