/* ============================================================
   FDSH Elementor Theme Builder — Header / Footer
   Square-corner institutional UI. RTL-safe via logical properties.
   ============================================================ */

.fdsh-elementor-header,
.fdsh-elementor-footer {
	width: 100%;
}

.fdsh-elementor-header ul,
.fdsh-elementor-footer ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.fdsh-elementor-header a,
.fdsh-elementor-footer a {
	text-decoration: none;
}

/* Header — top row */
.fdsh-elementor-header__topbar {
	background: var(--fdsh-color-off-white, #F8F6F2);
	border-bottom: 1px solid var(--fdsh-color-border, #E4DED5);
}

.fdsh-elementor-header__topbar-inner,
.fdsh-elementor-header__main-inner {
	width: 100%;
	margin-inline: auto;
}

.fdsh-elementor-header__topbar-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	min-height: 38px;
	padding-inline: 24px;
}

.fdsh-elementor-header__languages-menu,
.fdsh-elementor-header__top-menu-list {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
}

.fdsh-elementor-header__languages,
.fdsh-elementor-header__top-menu {
	min-width: 0;
}

.fdsh-elementor-header__languages,
.fdsh-elementor-header__languages a,
.fdsh-elementor-header__top-menu a {
	font-size: .78rem;
	color: var(--fdsh-color-ink, #2B2927);
}

.fdsh-elementor-header__languages-menu > li + li::before {
	content: "|";
	margin-inline-end: 8px;
	color: var(--fdsh-color-grey, #939393);
}

/* Header — main row */
.fdsh-elementor-header__main {
	position: relative;
	background: #fff;
	border-bottom: 1px solid var(--fdsh-color-border, #E4DED5);
}

.fdsh-elementor-header__main-inner {
	display: flex;
	align-items: center;
	gap: 24px;
	min-height: 104px;
	padding-inline: 24px;
}

.fdsh-elementor-header__brand {
	flex: 0 0 auto;
	min-width: 0;
}

.fdsh-elementor-header__brand-link,
.fdsh-elementor-header__brand-text {
	display: inline-flex;
	align-items: center;
}

.fdsh-elementor-header__brand img {
	display: block;
	width: 88px;
	height: auto;
	max-width: none;
	object-fit: contain;
}

.fdsh-elementor-header__brand-text {
	color: var(--fdsh-color-ink, #2B2927);
	font-weight: 600;
}

.fdsh-elementor-header__nav-actions {
	display: flex;
	align-items: center;
	flex: 1 1 auto;
	min-width: 0;
	gap: 24px;
}

.fdsh-elementor-header__nav-zone {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	flex: 1 1 auto;
	min-width: 0;
}

.fdsh-elementor-header__primary {
	min-width: 0;
	margin-inline-start: 0;
}

.fdsh-elementor-header__primary-list {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	flex-wrap: nowrap;
	gap: 20px;
}

.fdsh-elementor-header__primary-list > li {
	position: relative;
	flex: 0 0 auto;
}

.fdsh-elementor-header__primary a {
	display: inline-block;
	color: var(--fdsh-color-ink, #2B2927);
	transition: color .18s ease, background-color .18s ease, border-color .18s ease;
}

.fdsh-elementor-header__primary-list > li > a {
	padding-block: 12px;
	font-size: clamp(.82rem, .8vw, .94rem);
	white-space: nowrap;
}

.fdsh-elementor-header__primary-list > .menu-item-has-children > a::after {
	content: "";
	display: inline-block;
	width: 6px;
	height: 6px;
	margin-inline-start: 7px;
	border-inline-end: 1px solid currentColor;
	border-bottom: 1px solid currentColor;
	transform: translateY(-2px) rotate(45deg);
}

.fdsh-elementor-header__primary a:hover,
.fdsh-elementor-header__primary a:focus-visible,
.fdsh-elementor-header__primary .current-menu-item > a,
.fdsh-elementor-header__primary .current-menu-ancestor > a {
	color: var(--fdsh-color-olive, #B6A700);
}

.fdsh-elementor-header a:focus-visible,
.fdsh-elementor-header button:focus-visible,
.fdsh-elementor-footer a:focus-visible {
	outline: 2px solid var(--fdsh-color-olive, #B6A700);
	outline-offset: 3px;
}

/* Desktop submenus */
.fdsh-elementor-header__primary .sub-menu {
	position: absolute;
	inset-block-start: 100%;
	inset-inline-start: 0;
	z-index: 1001;
	min-width: 250px;
	padding-block: 10px;
	background: #fff;
	border: 1px solid var(--fdsh-color-border, #E4DED5);
	box-shadow: 0 14px 32px rgba(43, 41, 39, .09);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: translateY(8px);
	transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}

.fdsh-elementor-header__primary-list > li:nth-last-child(-n+3) > .sub-menu {
	inset-inline-start: auto;
	inset-inline-end: 0;
}

.fdsh-elementor-header__primary .sub-menu li {
	position: relative;
}

.fdsh-elementor-header__primary .sub-menu a {
	display: block;
	width: 100%;
	padding: 10px 16px;
	line-height: 1.35;
}

.fdsh-elementor-header__primary .sub-menu a:hover,
.fdsh-elementor-header__primary .sub-menu a:focus-visible {
	background: var(--fdsh-color-off-white, #F8F6F2);
}

.fdsh-elementor-header__primary-list > li:hover > .sub-menu,
.fdsh-elementor-header__primary-list > li:focus-within > .sub-menu,
.fdsh-elementor-header__primary-list > li.is-submenu-open > .sub-menu {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translateY(0);
}

.fdsh-elementor-header__action {
	display: flex;
	align-items: center;
	flex: 0 0 auto;
}

.fdsh-elementor-header__action-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 12px 18px;
	background: var(--fdsh-color-olive, #B6A700);
	color: #fff;
	line-height: 1.2;
	white-space: nowrap;
	transition: color .18s ease, background-color .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.fdsh-elementor-header__action-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	color: currentColor;
}

.fdsh-elementor-header__action-icon i {
	line-height: 1;
}

.fdsh-elementor-header__action-icon svg {
	display: block;
	fill: currentColor;
}

.fdsh-elementor-header__toggle,
.fdsh-elementor-header__submenu-toggle {
	display: none;
}

/* Mobile mode is activated by JS from the Elementor-configurable breakpoint. */
.fdsh-elementor-header--mobile .fdsh-elementor-header__main-inner {
	min-height: 88px;
}

.fdsh-elementor-header--mobile .fdsh-elementor-header__nav-actions {
	flex: 1 1 auto;
	min-width: 0;
}

.fdsh-elementor-header--mobile .fdsh-elementor-header__nav-zone {
	min-width: 0;
}

.fdsh-elementor-header--mobile .fdsh-elementor-header__toggle {
	display: inline-flex;
	flex: 0 0 auto;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 5px;
	width: 42px;
	height: 42px;
	margin-inline-start: auto;
	padding: 0;
	background: transparent;
	border: 0;
	color: var(--fdsh-color-ink, #2B2927);
	cursor: pointer;
}

.fdsh-elementor-header__toggle-line {
	display: block;
	width: 26px;
	height: 2px;
	background: currentColor;
	transition: transform .18s ease, opacity .18s ease;
}

.fdsh-elementor-header__toggle[aria-expanded="true"] .fdsh-elementor-header__toggle-line:nth-of-type(1) {
	transform: translateY(7px) rotate(45deg);
}

.fdsh-elementor-header__toggle[aria-expanded="true"] .fdsh-elementor-header__toggle-line:nth-of-type(2) {
	opacity: 0;
}

.fdsh-elementor-header__toggle[aria-expanded="true"] .fdsh-elementor-header__toggle-line:nth-of-type(3) {
	transform: translateY(-7px) rotate(-45deg);
}

.fdsh-elementor-header--mobile .fdsh-elementor-header__primary {
	display: none;
	position: absolute;
	inset-block-start: 100%;
	inset-inline: 0;
	z-index: 1000;
	max-height: 80vh;
	overflow-y: auto;
	margin: 0;
	padding: 18px 24px 24px;
	background: #fff;
	border-bottom: 1px solid var(--fdsh-color-border, #E4DED5);
	box-shadow: 0 16px 28px rgba(43, 41, 39, .08);
}

.fdsh-elementor-header--mobile .fdsh-elementor-header__primary.is-open {
	display: block;
}

.fdsh-elementor-header--mobile .fdsh-elementor-header__primary-list {
	display: grid;
	gap: 0;
}

.fdsh-elementor-header--mobile .fdsh-elementor-header__primary-list > li {
	border-bottom: 1px solid var(--fdsh-color-border, #E4DED5);
}

.fdsh-elementor-header--mobile .fdsh-elementor-header__primary-list > li > a {
	display: block;
	width: 100%;
	padding: 14px 48px 14px 0;
	font-size: .98rem;
	white-space: normal;
}

[dir="rtl"] .fdsh-elementor-header--mobile .fdsh-elementor-header__primary-list > li > a,
.rtl .fdsh-elementor-header--mobile .fdsh-elementor-header__primary-list > li > a {
	padding: 14px 0 14px 48px;
}

.fdsh-elementor-header--mobile .fdsh-elementor-header__primary-list > .menu-item-has-children > a::after {
	display: none;
}

.fdsh-elementor-header--mobile .fdsh-elementor-header__submenu-toggle {
	display: flex;
	position: absolute;
	inset-block-start: 7px;
	inset-inline-end: 0;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	padding: 0;
	background: transparent;
	border: 0;
	color: var(--fdsh-color-ink, #2B2927);
	cursor: pointer;
}

.fdsh-elementor-header__submenu-toggle::before {
	content: "";
	width: 8px;
	height: 8px;
	border-inline-end: 1px solid currentColor;
	border-bottom: 1px solid currentColor;
	transform: translateY(-2px) rotate(45deg);
	transition: transform .18s ease;
}

.fdsh-elementor-header__submenu-toggle[aria-expanded="true"]::before {
	transform: translateY(2px) rotate(225deg);
}

.fdsh-elementor-header--mobile .fdsh-elementor-header__primary .sub-menu,
.fdsh-elementor-header--mobile .fdsh-elementor-header__primary-list > li:nth-last-child(-n+3) > .sub-menu {
	display: none;
	position: static;
	min-width: 0;
	max-width: none;
	margin: 0 0 10px;
	padding: 0 0 2px 18px;
	background: transparent;
	border: 0;
	box-shadow: none;
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: none;
	transition: none;
}

.fdsh-elementor-header--mobile .fdsh-elementor-header__primary-list > li.is-submenu-open > .sub-menu {
	display: block;
}

.fdsh-elementor-header--mobile .fdsh-elementor-header__primary .sub-menu a {
	padding: 10px 12px;
	font-size: .92rem;
}

/* Footer */
.fdsh-elementor-footer {
	background: var(--fdsh-color-off-white, #F8F6F2);
	border-top: 1px solid var(--fdsh-color-border, #E4DED5);
}

.fdsh-elementor-footer__main-inner,
.fdsh-elementor-footer__bottom-inner {
	width: 100%;
	margin-inline: auto;
}

.fdsh-elementor-footer__main-inner {
	padding: 52px 24px 38px;
}

.fdsh-elementor-footer__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	column-gap: 40px;
	row-gap: 32px;
	align-items: start;
}

.fdsh-elementor-footer__brand,
.fdsh-elementor-footer__col {
	min-width: 0;
}

.fdsh-elementor-footer__brand img {
	display: block;
	width: 100px;
	height: auto;
	max-width: none;
	object-fit: contain;
}

.fdsh-elementor-footer__brand-text {
	color: var(--fdsh-color-ink, #2B2927);
	font-weight: 600;
}

.fdsh-elementor-footer__title {
	margin: 0 0 16px;
	font-size: .9rem;
	color: var(--fdsh-color-ink, #2B2927);
}

.fdsh-elementor-footer__menu {
	display: grid;
	gap: 8px;
	font-size: .84rem;
}

.fdsh-elementor-footer__menu a {
	display: inline-block;
	color: var(--fdsh-color-ink, #2B2927);
}

.fdsh-elementor-footer__menu a:hover,
.fdsh-elementor-footer__menu a:focus-visible,
.fdsh-elementor-footer__menu .current-menu-item > a {
	color: var(--fdsh-color-olive, #B6A700);
}

.fdsh-elementor-footer__bottom {
	border-top: 1px solid var(--fdsh-color-border, #E4DED5);
}

.fdsh-elementor-footer__bottom-inner {
	display: flex;
	align-items: center;
	min-height: 62px;
	padding-inline: 24px;
}

.fdsh-elementor-footer__copyright {
	font-size: .78rem;
	color: #5F5F5F;
}

/* Safe defaults when Elementor responsive CSS has not loaded yet. */
@media (max-width: 1024px) {
	.fdsh-elementor-footer__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	.fdsh-elementor-footer__brand {
		grid-column: 1 / -1;
	}
}

@media (max-width: 767px) {
	.fdsh-elementor-footer__grid {
		grid-template-columns: 1fr;
	}
	.fdsh-elementor-footer__brand {
		grid-column: auto;
	}
}

/* ============================================================
   v0.9.1 — Reference desktop header preset
   Mirrors the validated FDSH header composition while keeping
   every important dimension/color overridable from Elementor.
   ============================================================ */

.fdsh-elementor-header__topbar {
	background: #e6d5ba;
	border-bottom: 0;
}

.fdsh-elementor-header__topbar-inner {
	min-height: 60px;
	max-width: 1840px;
	padding: 0 14px;
}

.fdsh-elementor-header__topbar-left,
.fdsh-elementor-header__topbar-right {
	display: flex;
	align-items: center;
	min-width: 0;
}

.fdsh-elementor-header__topbar-right {
	gap: 138px;
	margin-inline-start: auto;
}

.fdsh-elementor-header__top-menu-list {
	gap: 22px;
}

.fdsh-elementor-header__top-menu-list > li {
	display: flex;
	align-items: center;
	gap: 10px;
}

.fdsh-elementor-header__top-menu-list > li::before {
	content: "";
	width: 11px;
	height: 6px;
	border-inline-end: 3px solid #c8a977;
	border-bottom: 3px solid #c8a977;
	transform: translateY(-2px) rotate(45deg);
	flex: 0 0 auto;
}

.fdsh-elementor-header__top-menu a,
.fdsh-elementor-header__languages,
.fdsh-elementor-header__languages a,
.fdsh-elementor-header__locale {
	font-size: 14px;
	font-weight: 600;
	line-height: 1;
	color: #111;
}

.fdsh-elementor-header__languages-menu {
	gap: 0;
	flex-wrap: nowrap;
}

.fdsh-elementor-header__languages-menu > li + li::before {
	content: "";
	display: inline-block;
	width: 1px;
	height: 20px;
	margin-inline: 10px;
	background: #b6a700;
	vertical-align: middle;
}

.fdsh-elementor-header__social {
	display: flex;
	align-items: center;
	gap: 6px;
}

.fdsh-elementor-header__social-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	background: #d4b894;
	color: #fff;
	transition: background-color .18s ease, color .18s ease;
}

.fdsh-elementor-header__social-link i {
	font-size: 15px;
	line-height: 1;
}

.fdsh-elementor-header__social-link svg {
	width: 15px;
	height: 15px;
	fill: currentColor;
}

.fdsh-elementor-header__social-link:hover,
.fdsh-elementor-header__social-link:focus-visible {
	background: #b6a700;
	color: #fff;
}

.fdsh-elementor-header__main {
	background: #fff;
	border-bottom: 0;
}

.fdsh-elementor-header__main-inner {
	min-height: 225px;
	max-width: 1840px;
	padding: 0 38px;
	gap: 80px;
}

.fdsh-elementor-header__brand img {
	width: 140px;
}

.fdsh-elementor-header__primary-list {
	gap: 0;
}

.fdsh-elementor-header__primary-list > li {
	display: flex;
	align-items: center;
}

.fdsh-elementor-header__primary-list > li + li::before {
	content: "";
	display: block;
	width: 1px;
	height: 22px;
	background: #c8c8c8;
	flex: 0 0 auto;
}

.fdsh-elementor-header__primary-list > li > a {
	padding: 12px 13px;
	font-size: 18px;
	font-weight: 400;
	line-height: 1.25;
	color: #111;
}

.fdsh-elementor-header__primary-list > .menu-item-has-children > a::after {
	width: 7px;
	height: 7px;
	margin-inline-start: 13px;
	border-inline-end-width: 2px;
	border-bottom-width: 2px;
}

.fdsh-elementor-header__primary-list > li:last-child > a {
	color: #9ca600;
}

.fdsh-elementor-header--mobile .fdsh-elementor-header__main-inner {
	min-height: 86px;
	padding-inline: 20px;
	gap: 20px;
}

.fdsh-elementor-header--mobile .fdsh-elementor-header__brand img {
	width: 72px;
}

.fdsh-elementor-header--mobile .fdsh-elementor-header__primary-list > li + li::before {
	display: none;
}

.fdsh-elementor-header--mobile .fdsh-elementor-header__primary-list > li {
	display: block;
}

.fdsh-elementor-header--mobile .fdsh-elementor-header__topbar-inner {
	min-height: 42px;
	padding-inline: 16px;
}

.fdsh-elementor-header--mobile .fdsh-elementor-header__topbar-right {
	gap: 12px;
}

/* ============================================================
   v0.10.0 — Granular Elementor Header controls
   Every visual zone is independently targetable from Elementor.
   ============================================================ */

.fdsh-elementor-header__top-menu-list--manual > li::before {
	display: none;
}

.fdsh-elementor-header__top-item-link,
.fdsh-elementor-header__top-item-static {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: inherit;
}

.fdsh-elementor-header__top-item-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	color: #c8a977;
}

.fdsh-elementor-header__top-item-icon i {
	font-size: 14px;
	line-height: 1;
}

.fdsh-elementor-header__top-item-icon svg {
	display: block;
	width: 14px;
	height: 14px;
	fill: currentColor;
}

.fdsh-elementor-header__top-item-label {
	display: inline-block;
}

.fdsh-elementor-header__languages-menu--manual > li {
	display: inline-flex;
	align-items: center;
}

.fdsh-elementor-header__languages-menu--manual > li > span,
.fdsh-elementor-header__languages-menu--manual > li > a {
	display: inline-flex;
	align-items: center;
	color: inherit;
}

.fdsh-elementor-header__language-item.is-current > a,
.fdsh-elementor-header__language-item.is-current > span {
	color: var(--fdsh-color-olive, #B6A700);
}

.fdsh-elementor-header--no-primary-separators .fdsh-elementor-header__primary-list > li + li::before {
	display: none !important;
}

.fdsh-elementor-header--no-submenu-arrows .fdsh-elementor-header__primary-list > .menu-item-has-children > a::after {
	display: none !important;
}

.fdsh-elementor-header--no-accent-last .fdsh-elementor-header__primary-list > li:last-child > a {
	color: inherit;
	background: inherit;
}

/* Prevent desktop navigation from colliding with the logo on intermediate widths. */
.fdsh-elementor-header:not(.fdsh-elementor-header--mobile) .fdsh-elementor-header__brand {
	flex: 0 0 auto;
}

.fdsh-elementor-header:not(.fdsh-elementor-header--mobile) .fdsh-elementor-header__nav-actions,
.fdsh-elementor-header:not(.fdsh-elementor-header--mobile) .fdsh-elementor-header__nav-zone {
	min-width: 0;
}

.fdsh-elementor-header:not(.fdsh-elementor-header--mobile) .fdsh-elementor-header__primary {
	flex: 0 1 auto;
	min-width: 0;
}

.fdsh-elementor-header:not(.fdsh-elementor-header--mobile) .fdsh-elementor-header__primary-list {
	min-width: 0;
}

@media (min-width: 1181px) and (max-width: 1600px) {
	.fdsh-elementor-header__main-inner {
		gap: clamp(28px, 3vw, 52px);
	}

	.fdsh-elementor-header__primary-list > li > a {
		padding-inline: clamp(7px, .55vw, 10px);
		font-size: clamp(14px, .95vw, 16px);
	}

	.fdsh-elementor-header__primary-list > .menu-item-has-children > a::after {
		margin-inline-start: clamp(6px, .5vw, 9px);
	}

	.fdsh-elementor-header__topbar-right {
		gap: clamp(24px, 5vw, 80px);
	}
}

/* v0.10.1: independent primary-menu positioning and optional header action button. */

/* ============================================================
   Header v0.11 — sticky main row + mobile top-header content
   ============================================================ */
.fdsh-elementor-header {
	--fdsh-sticky-top: 0px;
	--fdsh-adminbar-offset: 0px;
}

.fdsh-elementor-header__sticky-sentinel,
.fdsh-elementor-header__sticky-placeholder {
	width: 100%;
	height: 0;
	margin: 0;
	padding: 0;
	pointer-events: none;
}

.fdsh-elementor-header__main.is-sticky {
	position: fixed;
	inset-inline: 0;
	top: calc(var(--fdsh-sticky-top, 0px) + var(--fdsh-adminbar-offset, 0px));
	width: 100%;
	z-index: 1000;
}

.fdsh-elementor-header__mobile-extras {
	display: none;
}

/* At/below the widget breakpoint the desktop top bar is replaced by
   equivalent content inside the accessible mobile navigation panel. */
.fdsh-elementor-header--mobile .fdsh-elementor-header__topbar {
	display: none !important;
}

.fdsh-elementor-header--mobile .fdsh-elementor-header__mobile-extras {
	display: grid;
	gap: 18px;
	margin-top: 18px;
	padding-top: 18px;
	border-top: 1px solid var(--fdsh-color-border, #E4DED5);
}

.fdsh-elementor-header--mobile .fdsh-elementor-header__mobile-extras-section,
.fdsh-elementor-header--mobile .fdsh-elementor-header__mobile-contact,
.fdsh-elementor-header--mobile .fdsh-elementor-header__mobile-languages,
.fdsh-elementor-header--mobile .fdsh-elementor-header__mobile-social {
	min-width: 0;
}

.fdsh-elementor-header--mobile .fdsh-elementor-header__mobile-contact-list {
	display: grid;
	gap: 10px;
}

.fdsh-elementor-header--mobile .fdsh-elementor-header__mobile-contact-list .fdsh-elementor-header__top-item-link,
.fdsh-elementor-header--mobile .fdsh-elementor-header__mobile-contact-list .fdsh-elementor-header__top-item-static {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--fdsh-color-ink, #2B2927);
}

.fdsh-elementor-header--mobile .fdsh-elementor-header__mobile-contact-list .fdsh-elementor-header__top-item-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	color: var(--fdsh-color-olive, #B6A700);
}

.fdsh-elementor-header--mobile .fdsh-elementor-header__mobile-languages-menu {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
}

.fdsh-elementor-header--mobile .fdsh-elementor-header__mobile-languages,
.fdsh-elementor-header--mobile .fdsh-elementor-header__mobile-languages a {
	color: var(--fdsh-color-ink, #2B2927);
}

.fdsh-elementor-header--mobile .fdsh-elementor-header__mobile-languages-menu > li + li::before {
	content: "|";
	margin-inline-end: 8px;
	color: var(--fdsh-color-olive, #B6A700);
}

.fdsh-elementor-header--mobile .fdsh-elementor-header__mobile-social {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
}

.fdsh-elementor-header--mobile .fdsh-elementor-header__mobile-social .fdsh-elementor-header__social-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--fdsh-color-ink, #2B2927);
}
