/* YitTech FSE Theme - Additional Styles */

/* ============ Header ============ */
.site-header {
	box-shadow: none;
	transition: box-shadow 0.2s ease;
	padding-left: 5vw;
	padding-right: 5vw;
}

.site-header.scrolled {
	box-shadow: 0px 0px 25px 0 #181a3d26;
}

.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.header-logo__mark {
	display: inline-flex;
	line-height: 0;
}

.header-logo__text a {
	text-decoration: none;
	color: inherit;
}

.header-logo__text a:hover {
	color: #165dfc;
}

/* Navigation */
.header-nav .wp-block-navigation__container {
	gap: 24px;
}

.header-nav .wp-block-navigation-item__content {
	font-size: 17px;
	font-weight: 500;
	color: #0f172a;
	transition: color 0.2s ease;
	position: relative;
}

.header-nav .wp-block-navigation-item__content:hover {
	color: #165dfc;
}

.header-nav .wp-block-navigation-item__content::after {
	content: '';
	position: absolute;
	bottom: -4px;
	left: 0;
	width: 0;
	height: 2px;
	background-color: #165dfc;
	transition: width 0.2s ease;
}

.header-nav .wp-block-navigation-item__content:hover::after {
	width: 100%;
}

/* ============ Hero Banner Carousel ============ */
.hero-banner {
	overflow: hidden;
}

.hero-carousel {
	position: relative;
	overflow: hidden;
	max-width: none;
	margin-left: 0;
	margin-right: 0;
}

.hero-carousel__track {
	display: flex;
	transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
	will-change: transform;
}

.hero-slide {
	min-width: 100%;
	flex: 0 0 100%;
	position: relative;
	overflow: hidden;
}

.hero-slide::before {
	content: '';
	position: absolute;
	top: 50%;
	right: -12%;
	width: 64%;
	aspect-ratio: 1;
	border-radius: 50%;
	background: #2456e6;
	transform: translateY(-50%);
}

.hero-slide__inner {
	position: relative;
	display: flex;
	align-items: center;
	width: min(1296px, 100% - 10vw);
	min-height: 782px;
	margin: 0 auto;
}

.hero-slide__content {
	color: #ffffff;
	max-width: 640px;
	width: 100%;
	position: relative;
	z-index: 2;
}

.hero-slide__eyebrow {
	font-family: var(--wp--preset--font-family--inter-tight);
	font-size: var(--wp--preset--font-size--title-3);
	font-weight: 500;
	line-height: 1.3;
	letter-spacing: -0.17px;
	color: #8ac4ff;
	margin: 0;
}

.hero-slide__title {
	font-size: var(--wp--preset--font-size--display-1, 80px);
	font-weight: 500;
	line-height: 1.15;
	letter-spacing: -0.015em;
	color: #ffffff;
	margin: 24px 0 0;
}

.hero-slide__desc {
	font-family: var(--wp--preset--font-family--inter);
	font-size: var(--wp--preset--font-size--2-x-large);
	font-weight: 400;
	line-height: 1.7;
	letter-spacing: -0.17px;
	color: #ffffff;
	max-width: 680px;
	margin: 24px 0 0;
}

.hero-slide__buttons {
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
	margin-top: var(--wp--preset--spacing--bbe-90);
}

.hero-btn {
	display: inline-block;
	padding: 18px 28px;
	font-family: var(--wp--preset--font-family--inter-tight);
	font-size: 17px;
	font-weight: 500;
	line-height: 1.1;
	letter-spacing: 0.01px;
	text-decoration: none;
	border-radius: 4px;
	transition: color 0.1s ease, background-color 0.1s ease, border-color 0.1s ease;
}

.hero-btn--primary {
	background-color: #165dfc;
	color: #ffffff;
	border: none;
}

.hero-btn--primary:hover {
	background-color: #0d45e8;
	color: #ffffff;
}

.hero-btn--outline {
	background-color: transparent;
	color: #ffffff;
	border: 1px solid #ffffff;
	padding: 17px 27px;
}

.hero-btn--outline:hover {
	background-color: rgba(255, 255, 255, 0.1);
	border-color: #ffffff;
	color: #ffffff;
}

.hero-slide__media {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 50%;
	right: calc((100% - 100vw) / 2);
	overflow: hidden;
}

.hero-slide__media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 30% 0 0 30% / 50% 0 0 50%;
}

/* Carousel Arrows */
.hero-carousel__arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 10;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	padding: 0;
	border: 1px solid rgba(255, 255, 255, 0.25);
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.06);
	color: #ffffff;
	cursor: pointer;
	transition: background 0.2s ease, border-color 0.2s ease;
	backdrop-filter: blur(4px);
}

.hero-carousel__arrow:hover {
	background: #165dfc;
	border-color: #165dfc;
}

.hero-carousel__arrow--prev {
	left: 24px;
}

.hero-carousel__arrow--next {
	right: 24px;
}

/* Carousel Dots */
.hero-carousel__dots {
	position: absolute;
	bottom: 32px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 10;
	display: flex;
	gap: 12px;
}

.hero-carousel__dot {
	width: 10px;
	height: 10px;
	padding: 0;
	border: none;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.35);
	cursor: pointer;
	transition: all 0.25s ease;
}

.hero-carousel__dot:hover {
	background: rgba(255, 255, 255, 0.6);
}

.hero-carousel__dot.is-active {
	width: 28px;
	background: #ffffff;
}

/* ============ Features Bar ============ */
.features-bar {
	background-color: #f8fafc;
}

.features-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 32px;
}

.feature-item {
	display: flex;
	align-items: center;
	gap: 20px;
}

.feature-item svg {
	flex: 0 0 40px;
}

.feature-item p {
	margin: 0;
	font-family: var(--wp--preset--font-family--inter-tight);
	font-size: 18px;
	font-weight: 500;
	line-height: 1.4;
	color: #0f172a;
}

/* ============ Scroller (Services / Testimonials) ============ */
.bbe-scroller {
	position: relative;
	margin-left: auto;
	margin-right: auto;
}

.bbe-scroller__content {
	display: grid;
	grid-auto-flow: column;
	grid-auto-columns: calc((100% - 80px) / 3);
	gap: 40px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scrollbar-width: none;
	-ms-overflow-style: none;
	padding-bottom: 2px;
}

.bbe-scroller__content::-webkit-scrollbar {
	display: none;
}

.bbe-scroller__content > * {
	scroll-snap-align: start;
}

/* Scroller arrows */
.bbe-scroller__arrow {
	position: absolute;
	top: 50%;
	z-index: 10;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	padding: 0;
	border: none;
	border-radius: 50%;
	background: transparent;
	color: #0f172a;
	cursor: pointer;
	transition: color 0.1s ease;
}

.bbe-scroller__arrow:hover {
	color: #165dfc;
}

.bbe-scroller__arrow--prev {
	left: -56px;
	transform: translateY(-50%);
}

.bbe-scroller__arrow--next {
	right: -56px;
	transform: translateY(-50%);
}

@media (max-width: 1440px) {
	.bbe-scroller__arrow--prev {
		left: -8px;
	}

	.bbe-scroller__arrow--next {
		right: -8px;
	}
}

/* Scroller progress track */
.bbe-scroller__track {
	height: 2px;
	background: #dde4ee;
	margin-top: 40px;
	max-width: 160px;
}

.bbe-scroller__indicator {
	height: 2px;
	background: #94a3b8;
	width: 33.33%;
	transition: transform 0.2s ease, width 0.2s ease;
}

/* ============ Service Cards ============ */
.card {
	background-color: #f1f5f9;
	border-radius: 4px;
	overflow: hidden;
}

.service-card {
	display: flex;
	flex-direction: column;
}

.service-card__media {
	display: block;
	line-height: 0;
}

.service-card__media img {
	width: 100%;
	height: auto;
	aspect-ratio: 16 / 9;
	object-fit: cover;
	border-radius: 4px 4px 0 0;
}

.service-card__body {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 24px;
	padding: 32px;
	flex: 1;
}

.service-card__title {
	font-size: var(--wp--preset--font-size--title-3);
	font-weight: 500;
	line-height: 1.3;
	color: #0f172a;
	margin: 0 0 16px;
}

.service-card__desc {
	font-size: 17px;
	line-height: 1.7;
	color: #47566b;
	margin: 0;
}

/* Small button (style-2) */
.bbe-btn-sm {
	display: inline-block;
	align-self: flex-start;
	padding: 8px 20px;
	font-size: 15px;
	font-weight: 500;
	font-family: var(--wp--preset--font-family--inter-tight);
	color: #ffffff;
	text-decoration: none;
	background-color: #165dfc;
	border: 1px solid #165dfc;
	border-radius: 4px;
	transition: background-color 0.1s ease, color 0.1s ease;
}

.bbe-btn-sm:hover {
	background-color: #0d45e8;
	border-color: #0d45e8;
	color: #ffffff;
}

/* ============ Split rows (About / Who / Trust) ============ */
.split-row {
	gap: var(--wp--preset--spacing--bbe-140);
}

.split-col {
	flex: 1 1 0;
	min-width: 0;
}

.split-col .eyebrow,
.section-header .eyebrow,
.gain-header .eyebrow,
.news-home__heading .eyebrow {
	margin: 0 0 16px;
	line-height: 1.4;
}

.split-col .big-title,
.section-header .big-title,
.gain-header .big-title,
.news-home__heading .big-title {
	margin: 0 0 24px;
}

.split-col > p {
	margin: 0 0 24px;
}

/* About collage */
.about-collage {
	gap: 24px;
}

.collage-img {
	margin: 0;
	line-height: 0;
}

.collage-img img {
	border-radius: 4px;
	object-fit: cover;
	width: 100%;
	height: 100%;
}

.collage-img--tall {
	flex: 0 0 calc(50% - 12px);
}

.collage-img--tall img {
	aspect-ratio: 3 / 4;
}

.about-collage-side {
	flex: 1;
	min-width: 0;
}

.collage-img--small img {
	aspect-ratio: 4 / 3;
}

.collage-img--square img {
	aspect-ratio: 1 / 1;
}

/* Trust collage */
.trust-collage {
	max-width: 522px;
}

.trust-img-top img {
	aspect-ratio: 16 / 9;
}

.trust-collage-row {
	display: flex;
	gap: 24px;
	align-items: flex-start;
}

.trust-collage-row .collage-img {
	flex: 1;
	min-width: 0;
}

.trust-img-a img {
	aspect-ratio: 1 / 1;
}

.trust-img-b img {
	aspect-ratio: 3 / 2;
}

/* Check list */
.check-list {
	list-style: none;
	margin: 8px 0 0;
	padding: 0;
	display: grid;
	grid-template-columns: 1fr;
	gap: 20px;
}

.check-list li {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 17px;
	font-weight: 500;
	font-family: var(--wp--preset--font-family--inter-tight);
	color: #0f172a;
}

.check-list li svg {
	flex: 0 0 20px;
}

/* Who section items */
.who-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 24px;
}

/* Icon rows (Who we work with) */
.icon-rows {
	display: flex;
	flex-direction: column;
	gap: 40px;
}

.icon-row {
	display: flex;
	align-items: flex-start;
	gap: 28px;
	border-left: 2px solid #dbe7fd;
	padding-left: 28px;
}

.icon-row__icon {
	flex: 0 0 48px;
	line-height: 0;
}

.icon-row__body {
	flex: 1 1 auto;
	min-width: 0;
}

.icon-row__body h3 {
	margin: 0 0 12px;
	font-family: var(--wp--preset--font-family--inter-tight);
	font-size: 24px;
	font-weight: 500;
	line-height: 1.35;
	letter-spacing: -0.17px;
	color: #0f172a;
}

.icon-row__body p {
	margin: 0;
	font-size: 17px;
	line-height: 1.7;
	color: #47566b;
}

.who-list li {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	font-size: 17px;
	line-height: 1.6;
	color: #47566b;
}

.who-list li svg {
	flex: 0 0 24px;
	margin-top: 2px;
}

.who-list strong {
	display: block;
	font-family: var(--wp--preset--font-family--inter-tight);
	font-size: 18px;
	font-weight: 500;
	color: #0f172a;
	margin-bottom: 4px;
}

/* ============ Gain section (dark) ============ */
.gain-section {
	background-image: linear-gradient(118deg, rgba(43, 70, 160, 0) 52%, rgba(43, 70, 160, 0.38) 100%);
}

.gain-main {
	flex: 1 1 0;
	min-width: 0;
}

.gain-grid {
	margin-top: 56px;
}

.gain-item {
	min-width: 0;
}

.gain-num {
	margin: 0 0 20px;
	line-height: 1;
}

.gain-item-title {
	margin: 0 0 12px;
}

.gain-item-desc {
	margin: 0;
}

.gain-side {
	flex: 0 0 389px;
	min-width: 0;
}

.gain-cover {
	border-radius: 4px;
	overflow: hidden;
}

.gain-quote {
	background: rgba(16, 30, 76, 0.55);
	backdrop-filter: blur(8px);
}

.gain-quote-text {
	margin: 0;
	line-height: 1.6;
}

.gain-quote-name {
	margin: 16px 0 4px;
}

.gain-quote-role {
	margin: 0;
}

/* ============ Trust stats ============ */
.stats-row .stat-item {
	min-width: 0;
	border-left: 2px solid #165dfc;
	padding-left: 20px;
}

.stat-num {
	margin: 0;
}

.stat-label {
	margin: 8px 0 0;
}

/* ============ Testimonials ============ */
.testimonial-card {
	height: 100%;
	flex-wrap: nowrap !important;
}

.testimonial-body {
	flex: 1 1 auto;
	width: 100%;
	box-sizing: border-box;
	position: relative;
}

.testimonial-body::after {
	content: '\201D';
	position: absolute;
	top: 4px;
	right: 24px;
	font-family: Georgia, 'Times New Roman', serif;
	font-size: 96px;
	font-weight: 700;
	line-height: 1;
	color: #dde5f0;
	pointer-events: none;
}

.testimonial-headline {
	margin: 0;
}

.testimonial-text p {
	margin: 0;
}

.testimonial-avatar img {
	border-radius: 100%;
	object-fit: cover;
}

.testimonial-role {
	margin: 0;
}

.testimonial-tag {
	margin: 0;
}

/* ============ CTA ============ */
.cta-cover {
	overflow: hidden;
}

.cta-cover .wp-block-cover__background {
	background-color: transparent;
	background-image: linear-gradient(115deg, rgb(0, 0, 0) 30%, rgba(0, 0, 0, 0.33) 100%);
}

.cta-content {
	max-width: none;
	padding: var(--wp--preset--spacing--bbe-120);
}

.cta-eyebrow {
	margin: 0;
	line-height: 1.35;
}

/* ============ Logos ticker ============ */
.logos-title {
	margin: 0 0 var(--wp--preset--spacing--bbe-90);
	line-height: 1.4;
}

.logos-ticker {
	overflow: hidden;
	max-width: 1296px;
	margin: 0 auto;
	-webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
	mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.ticker-track {
	display: flex;
	width: max-content;
	animation: ticker-scroll 36s linear infinite;
}

.logos-ticker:hover .ticker-track {
	animation-play-state: paused;
}

.ticker-group {
	display: flex;
	align-items: center;
	gap: 48px;
	padding-right: 48px;
}

.ticker-group img {
	height: 100px;
	width: auto;
}

@keyframes ticker-scroll {
	from {
		transform: translateX(0);
	}
	to {
		transform: translateX(-50%);
	}
}

@media (prefers-reduced-motion: reduce) {
	.ticker-track {
		animation: none;
	}
}

/* ============ News home ============ */
.news-home__header {
	gap: 40px;
}

.news-home__more {
	margin: 0;
	white-space: nowrap;
}

.news-home__more a {
	color: inherit;
	text-decoration: none;
}

.news-home__more a:hover {
	text-decoration: underline;
}

.news-home-card {
	gap: 32px;
}

.news-home-thumb {
	flex: 0 0 218px;
}

.news-home-thumb img {
	border-radius: 4px;
	object-fit: cover;
}

.news-home-title {
	margin: 0;
}

.news-home-title a {
	color: inherit;
	text-decoration: none;
}

.news-home-title a:hover {
	color: #165dfc;
}

.news-home-date {
	margin: 0;
}

.news-home-meta {
	gap: 12px;
}

.news-home-tag {
	margin: 0;
}

.news-home-tag a {
	display: inline-block;
	padding: 3px 10px;
	font-size: 13px;
	font-weight: 500;
	line-height: 1.4;
	color: #165dfc;
	background-color: #eef6ff;
	border-radius: 3px;
	text-decoration: none;
}

.news-home-tag a:hover {
	background-color: #165dfc;
	color: #ffffff;
}

/* ============ Buttons (global) ============ */
.wp-block-button__link {
	transition: background-color 0.1s ease, border-color 0.1s ease, color 0.1s ease;
}

.wp-block-button:not(.is-style-outline) .wp-block-button__link:hover {
	background-color: #0d45e8;
}

.wp-block-button.is-style-outline .wp-block-button__link:hover {
	background-color: rgba(255, 255, 255, 0.08);
}

/* ============ Footer ============ */
.footer-main {
	gap: 40px;
}

.footer-brand {
	flex: 0 0 280px;
}

.footer-logo .custom-logo-link img {
	display: block;
}

.footer-logo__link {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	text-decoration: none;
}

.footer-logo__text {
	font-family: var(--wp--preset--font-family--inter-tight);
	font-size: 24px;
	font-weight: 700;
	color: #0f172a;
}

.footer-contact p {
	margin: 0;
}

.footer-contact mark {
	background: none;
}

.footer-social-col .wp-block-social-links {
	margin: 0;
}

.footer-search .wp-block-search__button {
	background: transparent;
	color: #94a3b8;
	border: none;
}

.footer-search .wp-block-search__button:hover {
	color: #165dfc;
}

.footer-search .wp-block-search__input {
	border: none;
	background: transparent;
}

.footer-contact a {
	color: inherit;
	text-decoration: none;
}

.footer-contact a:hover {
	color: #165dfc;
}

.footer-nav-col {
	flex: 0 0 auto;
}

.footer-nav-col > p {
	margin: 0 0 24px;
}

.footer-nav .wp-block-navigation__container {
	gap: 16px;
}

.footer-nav .wp-block-navigation-item__content {
	font-size: 16px;
	font-weight: 400;
	line-height: 1.4;
	color: #47566b;
	transition: color 0.1s ease;
}

.footer-nav .wp-block-navigation-item__content:hover {
	color: #165dfc;
}

.footer-social-col {
	flex: 0 0 322px;
}

.footer-search .wp-block-search__inside-wrapper {
	border: none;
}

.footer-bottom a {
	color: inherit;
	text-decoration: none;
}

.footer-bottom a:hover {
	color: #165dfc;
}

.footer-bottom p {
	margin: 0;
}

/* ============ AOS Animations (class-based) ============ */
[data-aos],
.aos-fade-in,
.aos-slide-left,
.aos-slide-up {
	opacity: 0;
	transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

[data-aos="fade-in"],
.aos-fade-in {
	transform: translateY(20px);
}

[data-aos="slide-left"],
.aos-slide-left {
	transform: translateX(-30px);
}

[data-aos="slide-up"],
.aos-slide-up {
	transform: translateY(30px);
}

[data-aos].aos-animate,
.aos-fade-in.aos-animate,
.aos-slide-left.aos-animate,
.aos-slide-up.aos-animate {
	opacity: 1;
	transform: translate(0);
}

.aos-delay-100 {
	transition-delay: 0.1s;
}

.aos-delay-200 {
	transition-delay: 0.2s;
}

.aos-delay-300 {
	transition-delay: 0.3s;
}

@media (prefers-reduced-motion: reduce) {
	[data-aos],
	.aos-fade-in,
	.aos-slide-left,
	.aos-slide-up {
		opacity: 1;
		transform: none;
		transition: none;
	}
}

/* ============ Responsive ============ */
@media (max-width: 1280px) {
	.bbe-scroller__content {
		grid-auto-columns: calc((100% - 40px) / 2);
	}
}

@media (max-width: 960px) {
	.features-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	/* Split rows stack vertically; About / Trust show text first (ref: column-reverse) */
	.split-row {
		flex-direction: column;
		justify-content: flex-start !important;
	}

	.split-col {
		flex: 1 1 auto;
	}

	.about-section .split-row,
	.trust-section .split-row {
		flex-direction: column-reverse;
	}

	.gain-side {
		flex: 1 1 auto;
	}

	.gain-cover {
		max-width: 480px;
		margin-left: auto;
		margin-right: auto;
		aspect-ratio: 2 / 3 !important;
		min-height: 0 !important;
	}

	.trust-collage {
		max-width: none;
	}

	/* Trust collage (ref geometry): top img 87%, bottom row indented 13% */
	.trust-img-top {
		width: 87%;
	}

	.trust-collage-row {
		margin-left: 13%;
		width: 87%;
		box-sizing: border-box;
	}

	/* About collage (ref geometry): side column 45%, small img 74% of side */
	.about-collage-side {
		flex: 0 0 45%;
	}

	.collage-img--tall {
		flex: 1 1 0;
	}

	.collage-img--small {
		width: 74%;
	}

	.collage-img--small img {
		aspect-ratio: 3 / 4;
	}

	.footer-main {
		flex-wrap: wrap !important;
	}

	/* Footer: stack all columns full-width like reference tablet layout */
	.footer-brand,
	.footer-social-col,
	.footer-nav-col {
		flex: 1 1 100%;
	}

	/* Hero: full-bleed media + left-aligned overlay text (ref geometry) */
	.hero-slide::before {
		display: none;
	}

	.hero-slide__inner {
		width: min(1296px, 100% - 10vw);
		min-height: 630px;
		padding: 80px 0;
		box-sizing: border-box;
	}

	.hero-slide__content {
		max-width: 100%;
		text-align: left;
		margin: 0;
	}

	.hero-slide__desc {
		margin-left: 0;
		margin-right: 0;
	}

	.hero-slide__buttons {
		justify-content: flex-start;
	}

	.hero-slide__media {
		position: absolute;
		top: 0;
		bottom: 0;
		left: 50%;
		right: auto;
		width: 100vw;
		max-width: none;
		margin: 0;
		transform: translateX(-50%);
	}

	.hero-slide__media img {
		height: 100%;
		aspect-ratio: auto;
		border-radius: 0;
	}

	.hero-slide__media::after {
		content: '';
		position: absolute;
		inset: 0;
		background: linear-gradient(105deg, rgba(16, 30, 76, 0.94) 25%, rgba(16, 30, 76, 0.55) 100%);
	}

	.hero-carousel__arrow {
		width: 40px;
		height: 40px;
	}

	.hero-carousel__arrow--prev {
		left: 12px;
	}

	.hero-carousel__arrow--next {
		right: 12px;
	}

	/* Scrollers: 400px cards like reference tablet layout */
	.bbe-scroller__content {
		grid-auto-columns: min(400px, 100%);
	}

	.news-home-grid {
		grid-template-columns: 1fr !important;
	}

	.news-home-thumb {
		flex: 0 0 35%;
		height: auto !important;
	}

	.news-home-thumb a {
		display: block;
		height: auto !important;
		line-height: 0;
	}

	.news-home-thumb img {
		width: 100% !important;
		height: auto !important;
		aspect-ratio: 4 / 3;
		object-fit: cover;
	}
}

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

	/* Who icon rows: icon stacked above text (ref @390) */
	.icon-row {
		flex-direction: column;
		gap: 20px;
	}

	/* Gain grid: single column like reference mobile layout */
	.gain-grid {
		grid-template-columns: 1fr !important;
	}

	.check-list {
		grid-template-columns: 1fr;
	}

	.footer-brand,
	.footer-nav-col,
	.footer-social-col {
		flex: 1 1 100%;
	}

	.hero-slide__inner {
		min-height: 670px;
		padding: 72px 0;
		box-sizing: border-box;
	}

	.hero-slide__buttons {
		flex-direction: column;
		flex-wrap: nowrap;
	}

	.hero-btn {
		width: 100%;
		box-sizing: border-box;
		text-align: center;
	}

	.hero-carousel__arrow {
		display: none;
	}

	.hero-carousel__dots {
		bottom: 24px;
	}

	/* CTA: 24px horizontal padding + stacked full-width buttons (ref @390) */
	.cta-content {
		padding-left: 24px !important;
		padding-right: 24px !important;
	}

	.cta-buttons {
		flex-direction: column;
	}

	.cta-buttons .wp-block-button,
	.cta-buttons .wp-block-button__link {
		width: 100%;
		box-sizing: border-box;
		text-align: center;
	}

	.ticker-group img {
		height: 80px;
	}

	.gain-cover {
		max-width: none;
	}

	.news-home-card {
		flex-wrap: wrap !important;
	}

	.news-home-thumb {
		flex: 1 1 100%;
		width: 100%;
	}
}
