.main-footer {
	position: relative;
	padding-top: 60px;
	overflow: hidden;
}

.main-footer__media {
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
}

.main-footer__media-picture {
	position: absolute;
	inset: 0;
	display: block;
}

.main-footer__media-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
}

.main-footer__media-gradient {
	position: absolute;
	inset: 0;
	background: #ffffff;
	z-index: 1;
}

.main-footer .footer-container {
	position: relative;
	z-index: 2;
}

.footer-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.footer-top-row {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	flex-wrap: wrap;
	padding-bottom: 40px;
}

.footer-brand {
	flex: 1;
	min-width: 250px;
}

.footer-logo {
	max-width: 180px;
	height: auto;
}

.footer-nav {
	display: flex;
	flex: 2;
	justify-content: space-between;
	flex-wrap: wrap;
}

.footer-column {
	margin-bottom: 20px;
	padding: 0 15px;
}

.footer-heading {
	font-size: calc(var(--font-size-body, 1rem) * 1.1);
	font-weight: 700;
	text-transform: capitalize;
	text-decoration: none;
	color: var(--text-main);
}

.footer-list {
	list-style: none;
	padding: 0;
	margin: 20px 0;
}

.footer-list li {
	margin-bottom: 12px;
}

.footer-link {
	color: color-mix(in srgb, var(--text-main) 70%, transparent);
	text-decoration: none;
	font-size: calc(var(--font-size-body, 1rem) * 0.95);
	transition: color 0.3s ease;
}

.footer-link:hover {
	color: var(--text-main);
	text-decoration: underline;
}

.footer-divider {
	border: 0;
	border-top: 1px solid rgba(0, 0, 0, 0.1);
	margin: 0;
}

.footer-bottom {
	padding: 15px 0;
	margin-top: 0;
}

.copyright-text {
	margin: 0;
	font-size: calc(var(--font-size-body, 1rem) * 0.85);
	font-weight: 500;
	text-transform: uppercase;
	color: var(--text-main);
}

@media (max-width: 768px) {
	.footer-top-row {
		flex-direction: column;
		align-items: center;
		text-align: center;
	}

	.footer-nav {
		width: 100%;
		margin-top: 40px;
		flex-direction: column;
	}

	.footer-brand {
		margin-bottom: 20px;
	}
}