/**
 * Global Footer Styles.
 *
 * @package InterviewsQ_Theme
 */

.iq-site-footer {
	box-sizing: border-box;
	width: 100%;
	margin-top: clamp(3rem, 7vw, 6rem);
	border-top: 1px solid #e5e7eb;
	background-color: #f8fafc;
	color: #475569;
}

.iq-site-footer *,
.iq-site-footer *::before,
.iq-site-footer *::after {
	box-sizing: inherit;
}

.iq-site-footer__inner {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: clamp(2rem, 6vw, 5rem);
	width: min(1200px, 100%);
	margin: 0 auto;
	padding: clamp(2.5rem, 5vw, 4rem) 1.5rem;
}

.iq-site-footer__brand {
	max-width: 34rem;
}

.iq-site-footer__title {
	margin: 0;
	font-size: 1.25rem;
	font-weight: 700;
	line-height: 1.25;
}

.iq-site-footer__title a {
	color: #111827;
	text-decoration: none;
}

.iq-site-footer__title a:hover,
.iq-site-footer__title a:focus {
	text-decoration: underline;
}

.iq-site-footer__description {
	max-width: 32rem;
	margin: 0.75rem 0 0;
	color: #64748b;
	font-size: 0.95rem;
	line-height: 1.7;
}

.iq-footer-navigation {
	flex: 0 0 auto;
}

.iq-footer-navigation__menu {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: flex-end;
	gap: 0.75rem 1.5rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.iq-footer-navigation__menu li {
	margin: 0;
}

.iq-footer-navigation__menu a {
	color: #334155;
	font-size: 0.95rem;
	font-weight: 600;
	line-height: 1.5;
	text-decoration: none;
}

.iq-footer-navigation__menu a:hover,
.iq-footer-navigation__menu a:focus {
	color: #243f7d;
	text-decoration: underline;
	text-decoration-thickness: 0.1rem;
	text-underline-offset: 0.2rem;
}

.iq-footer-navigation__menu a[aria-current="page"] {
	color: #243f7d;
	font-weight: 700;
}

.iq-site-footer a:focus-visible {
	border-radius: 0.2rem;
	outline: 0.18rem solid #c7d2fe;
	outline-offset: 0.18rem;
}

.iq-site-footer__meta {
	width: min(1200px, 100%);
	margin: 0 auto;
	padding: 1.25rem 1.5rem 1.5rem;
	border-top: 1px solid #e5e7eb;
}

.iq-site-footer__copyright {
	margin: 0;
	color: #64748b;
	font-size: 0.85rem;
	line-height: 1.5;
}

@media (max-width: 48rem) {
	.iq-site-footer__inner {
		flex-direction: column;
		gap: 1.75rem;
	}

	.iq-footer-navigation {
		width: 100%;
	}

	.iq-footer-navigation__menu {
		justify-content: flex-start;
	}
}

@media (max-width: 37.5rem) {
	.iq-site-footer {
		margin-top: 3rem;
	}

	.iq-site-footer__inner {
		padding: 2.25rem 1.25rem;
	}

	.iq-footer-navigation__menu {
		align-items: flex-start;
		flex-direction: column;
		gap: 0.75rem;
	}

	.iq-site-footer__meta {
		padding: 1.1rem 1.25rem 1.4rem;
	}
}

@media print {
	.iq-site-footer {
		margin-top: 2rem;
		border-top-color: #000000;
		background: #ffffff;
		color: #000000;
	}

	.iq-site-footer__inner {
		display: block;
		padding-top: 1rem;
		padding-bottom: 1rem;
	}

	.iq-site-footer__description,
	.iq-footer-navigation__menu a,
	.iq-site-footer__copyright {
		color: #000000;
	}

	.iq-footer-navigation {
		display: none;
	}

	.iq-site-footer__meta {
		border-top-color: #000000;
	}
}
