/*
 * FDSH Elementor Widgets — institutional page compositions.
 * Structural styles only. Elementor controls remain the source of truth for visual tuning.
 */

.fdsh-page-intro,
.fdsh-contact-form,
.fdsh-statement,
.fdsh-metrics,
.fdsh-steps,
.fdsh-editorial,
.fdsh-split {
	border-radius: 0;
}

/* Page Intro */
.fdsh-page-intro__split {
	display: grid;
	grid-template-columns: minmax(0, var(--fdsh-page-intro-content-width, 42%)) minmax(0, 1fr);
	gap: 56px;
	align-items: center;
}

.fdsh-page-intro__split--reverse {
	grid-template-columns: minmax(0, 1fr) minmax(0, var(--fdsh-page-intro-content-width, 42%));
}

.fdsh-page-intro__split--reverse .fdsh-page-intro__content {
	order: 2;
}

.fdsh-page-intro__split--reverse .fdsh-page-intro__media-column {
	order: 1;
}

.fdsh-page-intro--text-only .fdsh-page-intro__split {
	grid-template-columns: 1fr;
}

.fdsh-page-intro__content,
.fdsh-page-intro__media-column {
	min-width: 0;
}

.fdsh-page-intro__eyebrow {
	margin: 0 0 18px;
	color: var(--fdsh-color-olive, #B6A700);
	font-size: .82rem;
	font-weight: 600;
	letter-spacing: .09em;
	text-transform: uppercase;
}

.fdsh-page-intro__title {
	margin: 0 0 22px;
}

.fdsh-page-intro__body {
	margin: 0 0 24px;
}

.fdsh-page-intro__media {
	width: 100%;
	min-height: 340px;
	overflow: hidden;
	border-radius: 0;
}

.fdsh-page-intro__media img {
	display: block;
	width: 100%;
	height: 100%;
	min-height: inherit;
	object-fit: cover;
	border-radius: 0;
}

.fdsh-page-intro__features {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0;
	margin-top: 36px;
}

.fdsh-page-intro--features-full-bottom .fdsh-page-intro__features {
	margin-top: 38px;
}

.fdsh-page-intro__feature {
	min-width: 0;
	padding: 18px 22px;
	border-right: 1px solid var(--fdsh-color-border, #E4DED5);
	border-radius: 0;
}

.fdsh-page-intro__feature:first-child {
	padding-left: 0;
}

.fdsh-page-intro__feature:last-child {
	border-right: 0;
}

.fdsh-page-intro__feature-icon {
	margin-bottom: 12px;
	color: var(--fdsh-color-olive, #B6A700);
	font-size: 28px;
}

.fdsh-page-intro__feature-title {
	margin: 0 0 8px;
}

.fdsh-page-intro__feature-text {
	margin: 0;
}

.fdsh-page-intro .fdsh-button--outline {
	background: transparent;
	color: var(--fdsh-color-ink, #2B2927);
}

.fdsh-page-intro .fdsh-button--editorial-link {
	display: inline-flex;
	width: auto;
	margin-top: 12px;
	padding: 0;
	border: 0;
	background: transparent;
	color: var(--fdsh-color-olive, #B6A700);
	text-decoration: none;
}

.fdsh-page-intro .fdsh-button--editorial-link::after {
	content: "→";
	margin-left: 8px;
}

.fdsh-page-intro .fdsh-button--editorial-link:hover,
.fdsh-page-intro .fdsh-button--editorial-link:focus-visible {
	background: transparent;
	color: var(--fdsh-color-ink, #2B2927);
	transform: none;
}

/* Contact Form */
.fdsh-contact-form__title {
	margin: 0 0 14px;
}

.fdsh-contact-form__intro {
	margin: 0 0 26px;
}

.fdsh-contact-form__status {
	margin: 0 0 20px;
	padding: 14px 16px;
	border: 1px solid currentColor;
	border-radius: 0;
}

.fdsh-contact-form__status--sent {
	color: var(--fdsh-color-olive, #B6A700);
}

.fdsh-contact-form__status--error {
	color: #8A332A;
}

.fdsh-contact-form__form {
	position: relative;
	border-radius: 0;
}

.fdsh-contact-form__fields {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	column-gap: 18px;
	row-gap: 18px;
	margin-bottom: 20px;
}

.fdsh-contact-form__group {
	min-width: 0;
}

.fdsh-contact-form__group--full {
	grid-column: 1 / -1;
}

.fdsh-contact-form__label {
	display: block;
	margin: 0 0 8px;
}

.fdsh-contact-form__field,
.fdsh-contact-form__textarea {
	box-sizing: border-box;
	display: block;
	width: 100%;
	min-height: 52px;
	padding: 12px 14px;
	border: 1px solid var(--fdsh-color-border, #E4DED5);
	border-radius: 0;
	background: var(--fdsh-color-white, #FFFFFF);
	color: var(--fdsh-color-ink, #2B2927);
	font: inherit;
}

.fdsh-contact-form__textarea {
	min-height: 170px;
	resize: vertical;
}

.fdsh-contact-form__field:focus,
.fdsh-contact-form__textarea:focus {
	outline: 2px solid var(--fdsh-color-olive, #B6A700);
	outline-offset: 2px;
}

.fdsh-contact-form__honeypot {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.fdsh-contact-form__submit {
	border-radius: 0;
}

/* Statement extensions */
.fdsh-statement__inner--with-icon,
.fdsh-statement__inner--with-action {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	gap: 28px;
	align-items: center;
}

.fdsh-statement__icon {
	color: var(--fdsh-color-olive, #B6A700);
	font-size: 34px;
}

.fdsh-statement__content {
	min-width: 0;
}

.fdsh-statement .fdsh-button--editorial-link {
	padding: 0;
	border: 0;
	background: transparent;
	color: var(--fdsh-color-olive, #B6A700);
}

.fdsh-statement .fdsh-button--editorial-link::after {
	content: "→";
	margin-left: 8px;
}

/* Metrics extensions */
.fdsh-metrics--intro-left-band .fdsh-metrics__layout {
	display: grid;
	grid-template-columns: minmax(0, var(--fdsh-metrics-intro-width, 28%)) minmax(0, 1fr);
	gap: 44px;
	align-items: center;
}

.fdsh-metrics__intro-title {
	margin: 0 0 14px;
}

.fdsh-metrics__intro-eyebrow {
	margin: 0 0 10px;
	color: var(--fdsh-color-olive, #B6A700);
	font-size: .82rem;
	font-weight: 600;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.fdsh-metrics__value:empty {
	display: none;
}

/* Connected Steps */
.fdsh-steps--connected .fdsh-steps__grid {
	position: relative;
}

.fdsh-steps--connected .fdsh-steps__item {
	position: relative;
}

.fdsh-steps--connected .fdsh-steps__item:not(:last-child)::after {
	content: "";
	position: absolute;
	top: var(--fdsh-step-connector-y, 28px);
	left: calc(100% + var(--fdsh-step-connector-offset, 8px));
	width: var(--fdsh-step-connector-length, 32px);
	height: var(--fdsh-step-connector-width, 1px);
	background: var(--fdsh-step-connector-color, #D4B894);
}

.fdsh-steps__description {
	max-width: 820px;
	margin: 0 auto 38px;
	text-align: center;
}

/* Editorial card extensions */
.fdsh-editorial__eyebrow {
	margin: 0 0 9px;
	color: var(--fdsh-color-olive, #B6A700);
	font-size: .78rem;
	font-weight: 600;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.fdsh-editorial__subtitle {
	margin: 0 0 12px;
	color: var(--fdsh-color-olive, #B6A700);
}

/* Split checklist extension */
.fdsh-split__checklist {
	display: grid;
	gap: 10px;
	margin: 22px 0 0;
	padding: 0;
	list-style: none;
}

.fdsh-split__checklist-item {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr);
	gap: 10px;
	align-items: start;
}

.fdsh-split__checklist-icon {
	color: var(--fdsh-color-olive, #B6A700);
}

@media (max-width: 1024px) {
	.fdsh-page-intro__split,
	.fdsh-page-intro__split--reverse {
		grid-template-columns: minmax(0, var(--fdsh-page-intro-content-width, 46%)) minmax(0, 1fr);
	}

	.fdsh-metrics--intro-left-band .fdsh-metrics__layout {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 767px) {
	.fdsh-page-intro__split,
	.fdsh-page-intro__split--reverse {
		grid-template-columns: 1fr;
	}

	.fdsh-page-intro__split--reverse .fdsh-page-intro__content,
	.fdsh-page-intro__split--reverse .fdsh-page-intro__media-column {
		order: initial;
	}

	.fdsh-page-intro__content {
		order: 1;
	}

	.fdsh-page-intro__media-column {
		order: 2;
	}

	.fdsh-page-intro__features {
		grid-template-columns: 1fr;
	}

	.fdsh-page-intro__feature,
	.fdsh-page-intro__feature:first-child {
		padding: 18px 0;
		border-right: 0;
		border-bottom: 1px solid var(--fdsh-color-border, #E4DED5);
	}

	.fdsh-page-intro__feature:last-child {
		border-bottom: 0;
	}

	.fdsh-contact-form__fields {
		grid-template-columns: 1fr;
	}

	.fdsh-contact-form__group--half,
	.fdsh-contact-form__group--full {
		grid-column: 1;
	}

	.fdsh-statement__inner--with-icon,
	.fdsh-statement__inner--with-action {
		grid-template-columns: 1fr;
	}

	.fdsh-steps--connected .fdsh-steps__item:not(:last-child)::after {
		display: none;
	}
}

/* v0.13.0 — dedicated Our Inspiration hero. */
.fdsh-inspiration-hero {
	padding-block: 72px;
}

.fdsh-inspiration-hero__inner {
	display: flex;
	flex-direction: row;
	align-items: stretch;
	gap: 44px;
}

.fdsh-inspiration-hero__content {
	flex: 0 1 var(--fdsh-inspiration-content-width, 43%);
	min-width: 0;
}

.fdsh-inspiration-hero__media {
	flex: 1 1 0;
	min-width: 0;
	min-height: 420px;
	overflow: hidden;
}

.fdsh-inspiration-hero__image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.fdsh-inspiration-hero__eyebrow {
	margin: 0;
	color: #B07A2A;
	font-size: .78rem;
	font-weight: 700;
	letter-spacing: .1em;
	text-transform: uppercase;
}

.fdsh-inspiration-hero__eyebrow-divider {
	display: block;
	width: 36px;
	height: 1px;
	margin: 14px 0 24px;
	background: #B07A2A;
}

.fdsh-inspiration-hero__title {
	margin: 0 0 22px;
}

.fdsh-inspiration-hero__description,
.fdsh-inspiration-hero__description p {
	margin-top: 0;
}

.fdsh-inspiration-hero__description > :last-child,
.fdsh-inspiration-hero__point-text > :last-child {
	margin-bottom: 0;
}

.fdsh-inspiration-hero__points {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	margin-top: 34px;
}

.fdsh-inspiration-hero__point {
	min-width: 0;
	padding-inline: 20px;
	border: 0 solid transparent;
}

.fdsh-inspiration-hero__point:first-child {
	padding-inline-start: 0;
}

.fdsh-inspiration-hero__point:last-child {
	padding-inline-end: 0;
}

.fdsh-inspiration-hero--with-point-separators .fdsh-inspiration-hero__point:not(:last-child) {
	border-inline-end-style: solid;
	border-inline-end-width: var(--fdsh-inspiration-point-separator-width, 1px);
	border-inline-end-color: var(--fdsh-inspiration-point-separator-color, #E2DDD5);
}

.fdsh-inspiration-hero__point-visual {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin: 0 0 14px;
	color: #B07A2A;
	font-size: 36px;
}

.fdsh-inspiration-hero__point-title {
	margin: 0 0 10px;
	font-size: .78rem;
	font-weight: 700;
	letter-spacing: .06em;
	text-transform: uppercase;
}

.fdsh-inspiration-hero__point-text,
.fdsh-inspiration-hero__point-text p {
	margin-top: 0;
	font-size: .9rem;
}

.fdsh-inspiration-hero__inner--no-media .fdsh-inspiration-hero__content {
	flex-basis: 100%;
	width: 100%;
}

@media (max-width: 1024px) {
	.fdsh-inspiration-hero__inner {
		row-gap: 36px;
	}
	.fdsh-inspiration-hero__content {
		flex-basis: var(--fdsh-inspiration-content-width, 46%);
	}
	.fdsh-inspiration-hero__media {
		min-height: 360px;
	}
}

@media (max-width: 767px) {
	.fdsh-inspiration-hero {
		padding-block: 52px;
	}
	.fdsh-inspiration-hero__inner {
		flex-direction: column;
	}
	.fdsh-inspiration-hero__content,
	.fdsh-inspiration-hero__media {
		flex-basis: auto;
		width: 100%;
	}
	.fdsh-inspiration-hero__media {
		min-height: 300px;
	}
	.fdsh-inspiration-hero__points {
		grid-template-columns: 1fr;
	}
	.fdsh-inspiration-hero__point,
	.fdsh-inspiration-hero__point:first-child,
	.fdsh-inspiration-hero__point:last-child {
		padding: 18px 0;
		border-inline-end: 0;
	}
	.fdsh-inspiration-hero--with-point-separators .fdsh-inspiration-hero__point:not(:last-child) {
		border-inline-end: 0;
		border-bottom-style: solid;
		border-bottom-width: var(--fdsh-inspiration-point-separator-width, 1px);
		border-bottom-color: var(--fdsh-inspiration-point-separator-color, #E2DDD5);
	}
}

/* v0.13.0 — Statement architecture: every visual area is independently configurable. */
.fdsh-statement__inner,
.fdsh-statement__inner--with-icon,
.fdsh-statement__inner--with-action,
.fdsh-statement--split .fdsh-statement__inner,
.fdsh-statement--centered .fdsh-statement__inner--with-icon {
	position: relative;
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 28px;
	isolation: isolate;
}

.fdsh-statement__body {
	position: relative;
	z-index: 2;
	display: flex;
	flex: 1 1 auto;
	flex-direction: row;
	align-items: center;
	gap: 28px;
	min-width: 0;
}

.fdsh-statement__content {
	flex: 1 1 auto;
	min-width: 0;
	border: 0 solid transparent;
	padding: 0;
}

.fdsh-statement__action {
	flex: 0 0 auto;
}

.fdsh-statement__icon {
	position: relative;
	z-index: 2;
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.fdsh-statement--with-divider .fdsh-statement__content {
	border-style: solid;
	border-width: 0;
}

.fdsh-statement--with-divider.fdsh-statement--divider-left .fdsh-statement__content {
	border-left-width: 1px;
	padding-left: 32px;
}

.fdsh-statement--with-divider.fdsh-statement--divider-right .fdsh-statement__content {
	border-right-width: 1px;
	padding-right: 32px;
}

.fdsh-statement--quote .fdsh-statement__content {
	border-left-width: 0;
	padding-left: 0;
}

.fdsh-statement--quote.fdsh-statement--with-divider.fdsh-statement--divider-left .fdsh-statement__content {
	border-left-width: 1px;
	padding-left: 32px;
}

.fdsh-statement--quote.fdsh-statement--with-divider.fdsh-statement--divider-right .fdsh-statement__content {
	border-right-width: 1px;
	padding-right: 32px;
}

.fdsh-statement--quote .fdsh-statement__title::before {
	content: none;
}

.fdsh-statement--auto-quote .fdsh-statement__title::before,
.fdsh-statement--quote.fdsh-statement--auto-quote .fdsh-statement__title::before {
	content: "“";
	color: var(--fdsh-color-olive, #B6A700);
	margin-inline-end: .2em;
}

.fdsh-statement__decor-icon {
	position: absolute;
	right: 0;
	bottom: -46px;
	z-index: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	pointer-events: none;
}

.fdsh-statement--centered .fdsh-statement__inner,
.fdsh-statement--centered .fdsh-statement__body {
	justify-content: center;
}

.fdsh-statement--centered .fdsh-statement__content {
	text-align: center;
}

@media (max-width: 767px) {
	.fdsh-statement__inner,
	.fdsh-statement__inner--with-icon,
	.fdsh-statement__inner--with-action,
	.fdsh-statement--split .fdsh-statement__inner,
	.fdsh-statement--centered .fdsh-statement__inner--with-icon {
		flex-direction: column;
		align-items: stretch;
	}

	.fdsh-statement__body {
		flex-direction: column;
		align-items: stretch;
	}

	.fdsh-statement--with-divider.fdsh-statement--divider-left .fdsh-statement__content,
	.fdsh-statement--quote.fdsh-statement--with-divider.fdsh-statement--divider-left .fdsh-statement__content {
		padding-left: 20px;
	}

	.fdsh-statement--with-divider.fdsh-statement--divider-right .fdsh-statement__content,
	.fdsh-statement--quote.fdsh-statement--with-divider.fdsh-statement--divider-right .fdsh-statement__content {
		padding-right: 20px;
	}
}


/* ============================================================
   v0.14.5 — Client corrections 2026-09-21
   - Optional closing quotation mark for Statement.
   - Split layout that lets body copy flow beneath a right-side image.
   - Conservative whitespace harmonization on institutional pages only.
   Header/footer are intentionally excluded.
   ============================================================ */
.fdsh-statement--auto-close-quote .fdsh-statement__title::after {
	content: "”";
	color: var(--fdsh-color-olive, #B6A700);
	margin-inline-start: .2em;
}

.fdsh-split--media-wrap-right .fdsh-split__inner {
	display: block;
}

.fdsh-split--media-wrap-right .fdsh-split__content {
	display: flow-root;
	min-width: 0;
}

.fdsh-split--media-wrap-right .fdsh-split__media {
	float: right;
	width: 46%;
	margin: 0 0 28px 50px;
}

@media (max-width: 1024px) {
	.fdsh-split--media-wrap-right .fdsh-split__media {
		float: none;
		width: 100%;
		margin: 0 0 28px 0;
	}
}

/* Only sections whose exported spacing was visibly/excessively large are tightened.
   This avoids flattening the intentional rhythm of every section. */
body.page-id-187 .elementor-element-20266fa9 .fdsh-split,
body.page-id-193 .elementor-element-1c270955 .fdsh-split,
body.page-id-185 .elementor-element-70ef17dd .fdsh-split,
body.page-id-189 .elementor-element-56878e33 .fdsh-split,
body.page-id-191 .elementor-element-56b0b158 .fdsh-split,
body.page-id-177 .elementor-element-2b322b92 .fdsh-split {
	padding-top: 64px !important;
	padding-bottom: 64px !important;
}

body.page-id-185 .elementor-element-3d45d92e .fdsh-cards,
body.page-id-189 .elementor-element-40a2660 .fdsh-cards,
body.page-id-177 .elementor-element-6da73525 .fdsh-cards {
	padding-top: 68px !important;
	padding-bottom: 72px !important;
}

body.page-id-177 .elementor-element-7e5981b0 .fdsh-cards {
	padding-top: 64px !important;
	padding-bottom: 64px !important;
}

body.page-id-177 .elementor-element-349ee3a2 .fdsh-values {
	padding-top: 68px !important;
	padding-bottom: 72px !important;
}

body.page-id-21 .elementor-element-d004755 .fdsh-split,
body.page-id-173 .elementor-element-6fe79581 .fdsh-split,
body.page-id-173 .elementor-element-5f86de20 .fdsh-split,
body.page-id-21 .elementor-element-5e81088f .fdsh-editorial,
body.page-id-21 .elementor-element-1f8e59a2 .fdsh-partners {
	padding-top: 64px !important;
	padding-bottom: 64px !important;
}

body.page-id-21 .elementor-element-922c4a5 .fdsh-project-links,
body.page-id-183 .elementor-element-6e4d17fb .fdsh-project-links {
	padding-bottom: 64px !important;
}

body.page-id-187 .elementor-element-16db9c1a .fdsh-cards {
	padding-top: 64px !important;
}
