/* ==========================================================================
   ECC Media Pro — theme styles
   Works with plain WordPress templates AND Elementor-built pages.
   Elementor widgets receive these class names via the Advanced > CSS Classes
   field, so every rule below is written to hit both markup patterns.
   ========================================================================== */

:root {
	--ecc-red: #d50e10;
	--ecc-red-dark: #a80b0c;
	--ecc-black: #0b0c0c;
	--ecc-ink: #141618;
	--ecc-grey: #f5f5f5;
	--ecc-grey-line: #e3e3e3;
	--ecc-body: #4a4f55;
	--ecc-shell: 1200px;
	--ecc-font: "Archivo", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	--ecc-radius: 4px;
}

/* --------------------------------------------------------- base ---------- */

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

body.ecc-site {
	margin: 0;
	font-family: var(--ecc-font);
	font-size: 16px;
	line-height: 1.65;
	color: var(--ecc-body);
	background: #fff;
	-webkit-font-smoothing: antialiased;
}

.ecc-site h1, .ecc-site h2, .ecc-site h3, .ecc-site h4, .ecc-site h5 {
	font-family: var(--ecc-font);
	color: var(--ecc-black);
	font-weight: 800;
	line-height: 1.08;
	letter-spacing: -0.015em;
	margin: 0 0 .5em;
}

.ecc-site a { color: var(--ecc-red); text-decoration: none; }
.ecc-site a:hover { color: var(--ecc-red-dark); }
.ecc-site img { max-width: 100%; height: auto; }

.ecc-shell {
	width: 100%;
	max-width: var(--ecc-shell);
	margin: 0 auto;
	padding: 0 24px;
}

.ecc-skip {
	position: absolute; left: -9999px; top: 0; z-index: 999;
	background: var(--ecc-red); color: #fff; padding: 12px 20px;
}
.ecc-skip:focus { left: 0; color: #fff; }

.ecc-accent, .ecc-site .ecc-accent { color: var(--ecc-red); }

/* ------------------------------------------------------- buttons ---------- */

.ecc-btn,
.ecc-site .ecc-btn,
.ecc-btn-el .elementor-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: .5em;
	font-family: var(--ecc-font);
	font-weight: 800;
	font-size: 13px;
	letter-spacing: .08em;
	text-transform: uppercase;
	line-height: 1;
	padding: 15px 26px;
	border: 2px solid transparent;
	border-radius: var(--ecc-radius);
	cursor: pointer;
	transition: background-color .18s ease, color .18s ease, border-color .18s ease, transform .18s ease;
}

.ecc-btn--primary,
.ecc-site a.ecc-btn--primary,
.ecc-btn-el .elementor-button {
	background: var(--ecc-red);
	color: #fff;
	border-color: var(--ecc-red);
}
.ecc-site a.ecc-btn--primary:hover,
.ecc-btn--primary:hover,
.ecc-btn-el .elementor-button:hover {
	background: var(--ecc-red-dark);
	border-color: var(--ecc-red-dark);
	color: #fff;
}

.ecc-btn--ghost, .ecc-site a.ecc-btn--ghost {
	background: transparent;
	color: #fff;
	border-color: rgba(255, 255, 255, .45);
}
.ecc-btn--ghost:hover { border-color: #fff; color: #fff; background: rgba(255, 255, 255, .08); }

.ecc-btn--lg, .ecc-btn-el.ecc-btn--lg .elementor-button { padding: 18px 34px; font-size: 14px; }

/* -------------------------------------------------------- header ---------- */

.ecc-header {
	position: sticky;
	top: 0;
	z-index: 500;
	background: #fff;
	border-bottom: 1px solid var(--ecc-grey-line);
}
body.admin-bar .ecc-header { top: 32px; }

.ecc-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	min-height: 82px;
}

.ecc-logo { display: inline-flex; align-items: center; }
.ecc-logo__img { display: block; max-height: 46px; width: auto; }
.ecc-logo--footer .ecc-logo__img { max-height: 42px; }

.ecc-nav { display: flex; align-items: center; gap: 28px; }

.ecc-nav__list {
	display: flex;
	align-items: center;
	gap: 26px;
	list-style: none;
	margin: 0;
	padding: 0;
}
.ecc-nav__list > li { position: relative; }
.ecc-nav__list a {
	display: block;
	color: var(--ecc-ink);
	font-size: 14px;
	font-weight: 600;
	letter-spacing: .01em;
	padding: 6px 0;
}
.ecc-nav__list a:hover { color: var(--ecc-red); }
.ecc-nav__list > li.is-current > a,
.ecc-nav__list > li.current-menu-item > a,
.ecc-nav__list > li.current_page_item > a { color: var(--ecc-red); }

/* dropdowns */
.ecc-nav__list .sub-menu {
	position: absolute;
	top: 100%;
	left: -14px;
	min-width: 220px;
	background: #fff;
	border: 1px solid var(--ecc-grey-line);
	box-shadow: 0 18px 40px rgba(0, 0, 0, .1);
	list-style: none;
	margin: 0;
	padding: 8px 0;
	opacity: 0;
	visibility: hidden;
	transform: translateY(6px);
	transition: all .18s ease;
}
.ecc-nav__list > li:hover > .sub-menu,
.ecc-nav__list > li:focus-within > .sub-menu { opacity: 1; visibility: visible; transform: none; }
.ecc-nav__list .sub-menu a { padding: 9px 18px; font-weight: 500; }

.ecc-burger {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 44px;
	height: 40px;
	padding: 0;
	background: transparent;
	border: 0;
	cursor: pointer;
}
.ecc-burger span { display: block; height: 2px; background: var(--ecc-ink); transition: transform .2s ease, opacity .2s ease; }
.ecc-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.ecc-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.ecc-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 1024px) {
	.ecc-burger { display: flex; }
	.ecc-nav {
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		display: none;
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		background: #fff;
		border-bottom: 3px solid var(--ecc-red);
		box-shadow: 0 20px 40px rgba(0, 0, 0, .12);
		padding: 12px 24px 24px;
	}
	.ecc-nav.is-open { display: flex; }
	.ecc-nav__list { flex-direction: column; align-items: stretch; gap: 0; }
	.ecc-nav__list > li { border-bottom: 1px solid var(--ecc-grey-line); }
	.ecc-nav__list a { padding: 14px 0; font-size: 15px; }
	.ecc-nav__list .sub-menu {
		position: static; opacity: 1; visibility: visible; transform: none;
		border: 0; box-shadow: none; padding: 0 0 8px 14px;
	}
	.ecc-nav__cta { margin-top: 18px; align-self: flex-start; }
}

/* ----------------------------------------------- generic sections --------- */

.ecc-main { display: block; }

/* Dark section (hero + statement bands). */
.ecc-sec-dark,
.ecc-sec-dark.elementor-section { background-color: var(--ecc-black); color: rgba(255, 255, 255, .78); }
.ecc-sec-dark h1, .ecc-sec-dark h2, .ecc-sec-dark h3, .ecc-sec-dark h4,
.ecc-sec-dark .elementor-heading-title { color: #fff; }
.ecc-sec-dark p { color: rgba(255, 255, 255, .78); }

.ecc-sec-grey, .ecc-sec-grey.elementor-section { background-color: var(--ecc-grey); }

/* Section padding helpers (Elementor sections often ship with none). */
.ecc-pad { padding-top: 72px; padding-bottom: 72px; }
.ecc-pad-sm { padding-top: 46px; padding-bottom: 46px; }

/* ---------------------------------------------------------- hero ---------- */

.ecc-hero { position: relative; overflow: hidden; }
.ecc-hero::after {
	content: "";
	position: absolute;
	left: 0; right: 0; bottom: 0;
	height: 4px;
	background: var(--ecc-red);
}

.ecc-hero__text:not(.elementor-column) { padding: 64px 40px 64px 0; }

.ecc-hero__title, .ecc-hero__title .elementor-heading-title {
	font-size: clamp(31px, 3.5vw, 50px);
	line-height: 1.02;
	text-transform: uppercase;
	letter-spacing: -0.02em;
	font-weight: 800;
	color: #fff;
	margin: 0;
}
.ecc-hero__title { margin-bottom: 22px; }

.ecc-hero__copy, .ecc-hero__copy p {
	font-size: 16.5px;
	line-height: 1.7;
	color: rgba(255, 255, 255, .78);
	max-width: 34em;
}

.ecc-hero__media img {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 380px;
	object-fit: cover;
}
.ecc-hero__media .elementor-widget-container,
.ecc-hero__media .elementor-image,
.ecc-hero__media figure { height: 100%; margin: 0; }

/* Page hero variant (inner pages, image right, slightly shorter). */
.ecc-hero--inner .ecc-hero__text:not(.elementor-column) { padding-top: 56px; padding-bottom: 56px; }

/* -------------------------------------------------------- eyebrow --------- */

.ecc-kicker, .ecc-kicker .elementor-heading-title {
	font-size: clamp(19px, 2.1vw, 26px);
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: .01em;
	color: var(--ecc-black);
	text-align: center;
	margin: 0;
}

.ecc-section-title, .ecc-section-title .elementor-heading-title {
	font-size: clamp(20px, 2.2vw, 27px);
	font-weight: 800;
	text-transform: uppercase;
	text-align: center;
	color: var(--ecc-black);
	margin: 0;
}
.ecc-section-title { position: relative; padding-bottom: 16px; margin-bottom: 34px; }
.ecc-section-title::after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: 0;
	width: 64px;
	height: 3px;
	background: var(--ecc-red);
	transform: translateX(-50%);
}

/* ------------------------------------------------- 3-up icon cards -------- */

.ecc-card, .ecc-card .elementor-widget-container { height: 100%; }

.ecc-card__inner { display: flex; gap: 18px; align-items: flex-start; }

.ecc-card .elementor-icon-box-wrapper { display: flex; gap: 18px; align-items: flex-start; text-align: left; }
.ecc-card .elementor-icon-box-icon { margin: 0; flex: 0 0 auto; }
.ecc-card .elementor-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 58px;
	height: 58px;
	border-radius: 50%;
	background: var(--ecc-red);
	color: #fff;
	font-size: 24px;
}
.ecc-card .elementor-icon svg { width: 26px; height: 26px; fill: #fff; }
.ecc-card .elementor-icon-box-title,
.ecc-card .elementor-icon-box-title a {
	font-size: 15px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: .04em;
	color: var(--ecc-black);
	margin: 0 0 6px;
}
.ecc-card .elementor-icon-box-description {
	font-size: 14.5px;
	line-height: 1.6;
	color: var(--ecc-body);
	margin: 0;
}

.ecc-learn, .ecc-learn .elementor-button {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: transparent;
	border: 0;
	padding: 0;
	color: var(--ecc-red);
	font-size: 12.5px;
	font-weight: 800;
	letter-spacing: .09em;
	text-transform: uppercase;
}
.ecc-learn .elementor-button:hover { background: transparent; color: var(--ecc-red-dark); }
/* Line the link up under the card copy, past the icon circle. */
.elementor-widget.ecc-learn { margin-left: 76px; }
@media (max-width: 767px) {
	.elementor-widget.ecc-learn { margin-bottom: 26px; }
}
.ecc-learn .elementor-button-icon { transition: transform .18s ease; }
.ecc-learn .elementor-button:hover .elementor-button-icon { transform: translateX(4px); }

/* ------------------------------------------ small service icon grid ------- */

.ecc-svc .elementor-icon-box-wrapper { text-align: center; }
.ecc-svc .elementor-icon {
	color: var(--ecc-red);
	font-size: 30px;
	line-height: 1;
}
.ecc-svc .elementor-icon svg { width: 32px; height: 32px; fill: var(--ecc-red); }
.ecc-svc .elementor-icon-box-icon { margin-bottom: 12px; }
.ecc-svc .elementor-icon-box-title,
.ecc-svc .elementor-icon-box-title a {
	font-size: 13.5px;
	font-weight: 700;
	line-height: 1.35;
	color: var(--ecc-ink);
	letter-spacing: 0;
	text-transform: none;
	margin: 0;
}
.ecc-svc .elementor-icon-box-description { display: none; }

/* Left aligned variant used on the Systems + Advertising grids. */
.ecc-svc--inline .elementor-icon-box-wrapper {
	display: flex;
	align-items: center;
	gap: 12px;
	text-align: left;
}
.ecc-svc--inline .elementor-icon-box-icon { margin: 0; flex: 0 0 auto; }
.ecc-svc--inline .elementor-icon { font-size: 22px; }
.ecc-svc--inline .elementor-icon svg { width: 22px; height: 22px; }
.ecc-svc--inline .elementor-icon-box-content { text-align: left; }

/* ---------------------------------------------- 4-up feature blocks ------- */

.ecc-feature .elementor-icon-box-wrapper { text-align: center; }
.ecc-feature .elementor-icon { color: var(--ecc-red); font-size: 34px; }
.ecc-feature .elementor-icon svg { width: 36px; height: 36px; fill: var(--ecc-red); }
.ecc-feature .elementor-icon-box-icon { margin-bottom: 14px; }
.ecc-feature .elementor-icon-box-title,
.ecc-feature .elementor-icon-box-title a {
	font-size: 14px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: .06em;
	color: var(--ecc-black);
	margin: 0 0 8px;
}
.ecc-feature .elementor-icon-box-description {
	font-size: 14px;
	line-height: 1.6;
	color: var(--ecc-body);
	max-width: 26em;
	margin: 0 auto;
}

/* ------------------------------------------------------ statement --------- */

/* Black band: bold statement on the left, supporting copy on the right,
   separated by a thin red rule (matches the mockup bands). */
.ecc-statement { background: var(--ecc-black); }
.ecc-statement__title, .ecc-statement__title .elementor-heading-title {
	font-size: clamp(19px, 2.1vw, 25px);
	font-weight: 800;
	text-transform: uppercase;
	line-height: 1.2;
	color: #fff;
	margin: 0;
}
.ecc-statement__copy, .ecc-statement__copy p {
	font-size: 14.5px;
	line-height: 1.65;
	color: rgba(255, 255, 255, .72);
	margin: 0;
}
.ecc-rule-left:not(.elementor-column),
.ecc-rule-left.elementor-column > .elementor-widget-wrap { border-left: 2px solid var(--ecc-red); padding-left: 34px; }

/* Grey callout box with a round icon. */
.ecc-callout, .ecc-callout.elementor-section { background: var(--ecc-grey); }
.ecc-callout .elementor-icon-box-wrapper { display: flex; gap: 22px; align-items: center; text-align: left; }
.ecc-callout .elementor-icon-box-icon { margin: 0; }
.ecc-callout .elementor-icon { color: var(--ecc-red); font-size: 40px; }
.ecc-callout .elementor-icon svg { width: 42px; height: 42px; fill: var(--ecc-red); }
.ecc-callout .elementor-icon-box-title,
.ecc-callout .elementor-icon-box-title a {
	font-size: clamp(15px, 1.6vw, 18px);
	font-weight: 800;
	text-transform: uppercase;
	color: var(--ecc-black);
	margin: 0 0 6px;
	letter-spacing: .01em;
}
.ecc-callout .elementor-icon-box-description { font-size: 14.5px; color: var(--ecc-body); margin: 0; }

/* Checklist used on the Systems page. */
.ecc-checklist .elementor-icon-list-items { display: grid; gap: 10px; }
.ecc-checklist .elementor-icon-list-item { color: rgba(255, 255, 255, .85); font-size: 14.5px; }
.ecc-checklist .elementor-icon-list-icon { color: var(--ecc-red); }
.ecc-checklist .elementor-icon-list-icon svg { fill: var(--ecc-red); width: 16px; height: 16px; }
.ecc-checklist .elementor-icon-list-text { color: rgba(255, 255, 255, .85); }

/* ------------------------------------------------------------ form -------- */

.ecc-form-wrap {
	background: #fff;
	border: 1px solid var(--ecc-grey-line);
	border-top: 4px solid var(--ecc-red);
	padding: 40px;
	max-width: 940px;
	margin: 0 auto;
	scroll-margin-top: 110px;
}
.ecc-form-wrap__intro { margin-bottom: 26px; }
.ecc-form-wrap__title {
	font-size: clamp(22px, 2.4vw, 30px);
	text-transform: uppercase;
	margin: 0 0 8px;
}
.ecc-form-wrap__subtitle { margin: 0; font-size: 15.5px; color: var(--ecc-body); }

.ecc-form__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 22px; }
.ecc-form__field { margin: 0 0 18px; }
.ecc-form__field label,
.ecc-form__services legend {
	display: block;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: var(--ecc-black);
	margin-bottom: 7px;
}
.ecc-form__field label span { color: var(--ecc-red); }

.ecc-form input[type="text"],
.ecc-form input[type="email"],
.ecc-form input[type="tel"],
.ecc-form textarea {
	width: 100%;
	font-family: inherit;
	font-size: 15px;
	color: var(--ecc-ink);
	background: #fff;
	border: 1px solid #cfd3d7;
	border-radius: var(--ecc-radius);
	padding: 12px 14px;
	transition: border-color .16s ease, box-shadow .16s ease;
}
.ecc-form input:focus,
.ecc-form textarea:focus {
	outline: none;
	border-color: var(--ecc-red);
	box-shadow: 0 0 0 3px rgba(213, 14, 16, .12);
}

.ecc-form__services { border: 0; padding: 0; margin: 0 0 18px; }
.ecc-form__checks { display: flex; flex-wrap: wrap; gap: 10px; }
.ecc-check {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	border: 1px solid #cfd3d7;
	border-radius: var(--ecc-radius);
	padding: 9px 14px;
	font-size: 14px;
	cursor: pointer;
	transition: border-color .16s ease, background-color .16s ease;
}
.ecc-check:hover { border-color: var(--ecc-red); }
.ecc-check input { accent-color: var(--ecc-red); margin: 0; }

.ecc-form__hp { position: absolute !important; left: -9999px !important; }
.ecc-form__submit { margin: 8px 0 0; }

.ecc-form__notice {
	padding: 14px 18px;
	border-radius: var(--ecc-radius);
	font-size: 15px;
	margin-bottom: 22px;
}
.ecc-form__notice--ok { background: #e9f7ec; border: 1px solid #b7e2c1; color: #1c6b32; }
.ecc-form__notice--error { background: #fdecec; border: 1px solid #f3bcbc; color: #a01b1b; }

/* ---------------------------------------------------------- footer -------- */

.ecc-footer { background: var(--ecc-black); color: rgba(255, 255, 255, .7); margin-top: 0; }
.ecc-footer__rule { height: 4px; background: var(--ecc-red); }
.ecc-footer__inner {
	display: grid;
	grid-template-columns: 1.6fr 1fr 1fr;
	gap: 40px;
	padding-top: 56px;
	padding-bottom: 40px;
}
.ecc-footer__title {
	color: #fff;
	font-size: 12.5px;
	letter-spacing: .1em;
	text-transform: uppercase;
	margin: 0 0 16px;
}
.ecc-footer__blurb { font-size: 14.5px; max-width: 32em; margin: 18px 0 0; color: rgba(255, 255, 255, .7); }
.ecc-footer__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.ecc-footer__list a { color: rgba(255, 255, 255, .78); font-size: 14.5px; }
.ecc-footer__list a:hover { color: var(--ecc-red); }
.ecc-footer__cta { color: var(--ecc-red) !important; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; font-size: 13px !important; }
.ecc-footer__legal {
	border-top: 1px solid rgba(255, 255, 255, .12);
	padding-top: 20px;
	padding-bottom: 26px;
	font-size: 13px;
	color: rgba(255, 255, 255, .5);
}
.ecc-footer .ecc-logo--footer .ecc-logo__img { filter: none; }

/* --------------------------------------------- plain page templates ------- */

.ecc-page { padding: 64px 0 80px; }
.ecc-page__title { font-size: clamp(28px, 3.4vw, 44px); text-transform: uppercase; }
.ecc-entry { max-width: 800px; }
.ecc-entry p { margin: 0 0 1.15em; }
.ecc-archive__item { border-bottom: 1px solid var(--ecc-grey-line); padding: 26px 0; }

/* ------------------------------------------------------ responsive -------- */

@media (max-width: 1024px) {
	.ecc-hero__text, .ecc-hero__text.elementor-column > .elementor-widget-wrap { padding: 52px 0 44px; }
	.ecc-hero__media img { min-height: 280px; }
	.ecc-rule-left, .ecc-rule-left.elementor-column > .elementor-widget-wrap {
		border-left: 0;
		border-top: 2px solid var(--ecc-red);
		padding-left: 0;
		padding-top: 22px;
		margin-top: 22px;
	}
	.ecc-footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 767px) {
	.ecc-pad { padding-top: 52px; padding-bottom: 52px; }
	.ecc-form-wrap { padding: 26px 20px; }
	.ecc-form__grid { grid-template-columns: 1fr; }
	.ecc-footer__inner { grid-template-columns: 1fr; gap: 32px; }
	.ecc-callout .elementor-icon-box-wrapper { flex-direction: column; align-items: flex-start; gap: 14px; }
	.ecc-card .elementor-icon-box-wrapper { gap: 14px; }
}

/* Keep Elementor's own container widths in step with the theme shell. */
.elementor-section.elementor-section-boxed > .elementor-container { max-width: var(--ecc-shell); }

/* ============================================================ Elementor fit
   The hero runs full-bleed, so its text column is padded to line up with the
   1200px shell while the image keeps bleeding off the right edge.            */

.ecc-hero__text.elementor-column > .elementor-widget-wrap {
	padding: 72px 52px 72px max(24px, calc((100vw - var(--ecc-shell)) / 2));
	justify-content: center;
}
.ecc-hero--inner .ecc-hero__text.elementor-column > .elementor-widget-wrap {
	padding-top: 58px;
	padding-bottom: 58px;
}
.ecc-hero__media.elementor-column > .elementor-widget-wrap { padding: 0; }
.ecc-hero__media.elementor-column .elementor-widget-image,
.ecc-hero__media.elementor-column .elementor-widget-image > .elementor-widget-container { height: 100%; }

@media (max-width: 767px) {
	.ecc-hero__text.elementor-column > .elementor-widget-wrap { padding: 48px 24px 44px; }
}

/* Grey callout column (Branding page). */
.ecc-callout.elementor-column > .elementor-widget-wrap {
	background: var(--ecc-grey);
	padding: 26px 34px;
}

/* Icon + statement lockup used inside the black bands. */
.ecc-statement-ib .elementor-icon-box-wrapper { display: flex; gap: 20px; align-items: flex-start; text-align: left; }
.ecc-statement-ib .elementor-icon-box-icon { margin: 0; flex: 0 0 auto; }
.ecc-statement-ib .elementor-icon { color: var(--ecc-red); font-size: 34px; }
.ecc-statement-ib .elementor-icon svg { width: 36px; height: 36px; fill: var(--ecc-red); }
.ecc-statement-ib .elementor-icon-box-title,
.ecc-statement-ib .elementor-icon-box-title a {
	font-size: clamp(17px, 1.8vw, 21px);
	font-weight: 800;
	text-transform: uppercase;
	line-height: 1.25;
	color: #fff;
	margin: 0 0 8px;
}
.ecc-statement-ib .elementor-icon-box-description {
	font-size: 14.5px;
	color: rgba(255, 255, 255, .72);
	margin: 0;
}
.ecc-statement-ib--wide .elementor-icon-box-description {
	color: var(--ecc-red);
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: .04em;
	font-size: 14px;
}

/* Closing CTA band. */
.ecc-cta-band { border-top: 1px solid rgba(255, 255, 255, .12); }
.ecc-cta-band .elementor-column > .elementor-widget-wrap { align-content: center; }
.ecc-cta-band .elementor-widget-button { text-align: right; }
@media (max-width: 767px) {
	.ecc-cta-band .elementor-widget-button { text-align: left; margin-top: 18px; }
}

/* Icon-box titles inherit Elementor's h3 default; keep spacing tight. */
.elementor-widget-icon-box .elementor-icon-box-title { line-height: 1.25; }
