/**
 * Footer partner strip + pills (from index export).
 * Loaded after layout-main so rules apply reliably.
 */
.footer-section .footer-partners-strip {
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
	padding-bottom: 40px;
	margin-bottom: 40px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.12);
	padding-left: 20px;
	padding-right: 20px;
}

.footer-section .footer-partners-track {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 12px;
	max-width: 940px;
	margin-left: auto;
	margin-right: auto;
	box-sizing: border-box;
}

@media screen and (max-width: 991px) {
	.footer-section .footer-partners-track {
		grid-template-columns: repeat(3, 1fr);
		max-width: 728px;
	}
}

@media screen and (max-width: 767px) {
	.footer-section .footer-partners-track {
		max-width: none;
	}
}

@media (max-width: 479px) {
	.footer-section .footer-partners-track {
		grid-template-columns: repeat(2, 1fr);
	}

	.footer-section .partner-pill {
		justify-content: center;
	}
}

.footer-section .partner-pill {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 48px;
	padding: 0 22px;
	border-radius: 100px;
	border: 1px solid rgba(255, 255, 255, 0.28);
	background: rgba(255, 255, 255, 0.13);
	-webkit-backdrop-filter: blur(12px);
	backdrop-filter: blur(12px);
	overflow: hidden;
	white-space: nowrap;
	flex-shrink: 0;
	cursor: default;
	transition: background 0.32s ease, border-color 0.32s ease, box-shadow 0.32s ease;
}

.footer-section .partner-pill-face {
	display: flex;
	align-items: center;
	gap: 9px;
	transition: opacity 0.25s ease, transform 0.25s ease;
}

.footer-section .partner-pill-face img {
	height: 20px;
	width: auto;
	display: block;
}

.footer-section .partner-pill-face svg {
	height: 20px;
	width: auto;
	display: block;
	flex-shrink: 0;
}

.footer-section .partner-pill-face .pill-name {
	font-size: 14px;
	font-weight: 700;
	color: rgba(26, 21, 51, 0.9);
	letter-spacing: -0.01em;
	line-height: 1;
}

.footer-section .partner-pill-hover {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 7px;
	font-size: 13px;
	font-weight: 600;
	color: #fff;
	letter-spacing: 0.01em;
	opacity: 0;
	transform: translateY(10px);
	transition: opacity 0.25s ease, transform 0.25s ease;
	white-space: nowrap;
}

.footer-section .partner-pill-hover svg {
	flex-shrink: 0;
}

.footer-section .partner-pill:hover {
	background: #1a1533;
	border-color: #1a1533;
	box-shadow: 0 4px 20px rgba(94, 67, 254, 0.25);
}

.footer-section .partner-pill:hover .partner-pill-face {
	opacity: 0;
	transform: translateY(-10px);
}

.footer-section .partner-pill:hover .partner-pill-hover {
	opacity: 1;
	transform: translateY(0);
}
