/* /styles/footer.css */

.footer {
	background: var(--primary-main-color);
	color: rgba(255, 255, 255, 0.92);
	padding: 2.5rem 0 1.25rem;
}

.footer__container {
	width: min(1100px, calc(100% - 2rem));
	margin: 0 auto;
}

.footer__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2rem;
	padding-bottom: 1.5rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.footer__section {
	min-width: 0;
}

.footer__title {
	margin: 0 0 0.75rem;
	font-size: 0.95rem;
	font-weight: 800;
	letter-spacing: 0.2px;
	color: rgba(255, 255, 255, 0.95);
}

.footer__list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	gap: 0.75rem;
}

.footer__list li {
	display: flex;
	align-items: center;
	gap: 0.6rem;
	min-width: 0;
}

.footer__list .icon {
	width: 1.2rem;
	height: 1.2rem;
	vertical-align: middle;
	filter: brightness(0) invert(1);
}

.footer__list a {
	color: rgba(255, 255, 255, 0.92);
	text-decoration: none;
	transition: opacity 0.2s ease, text-decoration-color 0.2s ease;
	overflow-wrap: anywhere;
}

.footer__list a:hover {
	opacity: 0.8;
	text-decoration: underline;
	text-decoration-color: rgba(255, 255, 255, 0.65);
}

.footer__list a:focus-visible {
	outline: 2px solid rgba(255, 255, 255, 0.75);
	outline-offset: 3px;
	border-radius: 6px;
}

/* Bottom row */
.footer__bottom {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 1rem;
	padding-top: 1.25rem;
	flex-wrap: wrap;
}

.footer__meta {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
}

.footer__copyright {
	color: rgba(255, 255, 255, 0.88);
	font-size: 0.85rem;
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
}

.footer__tagline {
	color: rgba(255, 255, 255, 0.8);
	font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 768px) {
	.footer {
		padding: 2rem 0 1.25rem;
	}

	.footer__grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

	.footer__bottom {
		flex-direction: column;
		align-items: flex-start;
	}
}
