/* English language overrides. Fonts will be added later. */
html[lang="en"] body { }

/* CrossMM theme color override
   Original template main pink: #c0f / rgb(204,0,255)
   New main color: #F89C3B / rgb(248,156,59)
*/
:root {
	--clr-main: #F89C3B;
	--clr-main-rgb: 248,156,59;
}

/* Hide newsletter subscribe blocks everywhere (hero + footer + Next static fallback). */
.subscribe-form,
.form-area:has(.subscribe-form) {
	display: none !important;
}

/* Reorganized four-page menu: hide template dropdown arrows/submenus if any old markup remains. */
.menu-items .sub-menu,
.menu-items .plus-icon {
	display: none !important;
}

/* Menu cleanup: keep only Home / About / Service / Contact in the main menu. */
.header-main-bar .menu-item-has-children,
.header-main-bar .menu-items > li:nth-child(n+5) {
	display: none !important;
}

/* Keep each Core Capabilities title and description stacked vertically. */
.about-us-list > li {
    align-items: flex-start;
}
.about-us-list > li .service-detail {
    display: block !important;
    flex: 1 1 auto;
    min-width: 0;
}
.about-us-list > li .service-detail .item-url,
.about-us-list > li .service-detail .item-description {
    display: block !important;
    width: 100%;
}
