/**
 * Current page / section in agency shell menu (header + mobile + footer).
 * WordPress adds .current-menu-item, .current-menu-ancestor on <li.menu-item>.
 *
 * @package adm-theme
 */

/* Desktop header */
.site-header .nav-links .nav-links-menu .menu-item.current-menu-item > a,
.site-header .nav-links .nav-links-menu .menu-item.current_page_item > a,
.site-header .nav-links .nav-links-menu .menu-item.current-menu-ancestor > a {
	color: #e3763a;
	opacity: 1;
	font-weight: 700;
}

.site-header .nav-links .nav-links-menu .menu-item.current-menu-item > a:hover,
.site-header .nav-links .nav-links-menu .menu-item.current_page_item > a:hover,
.site-header .nav-links .nav-links-menu .menu-item.current-menu-ancestor > a:hover {
	color: #cf6630;
	opacity: 1;
}

/* Mobile overlay */
.mobile-nav .mobile-links .mobile-links-menu .menu-item.current-menu-item > a,
.mobile-nav .mobile-links .mobile-links-menu .menu-item.current_page_item > a,
.mobile-nav .mobile-links .mobile-links-menu .menu-item.current-menu-ancestor > a {
	color: #e3763a;
	font-weight: 700;
}

/* Footer link column */
.site-footer .footer-shell-menu .menu-item.current-menu-item > a,
.site-footer .footer-shell-menu .menu-item.current-menu-ancestor > a {
	color: #e3763a;
	font-weight: 700;
}

/* Footer Follow: social icon + label */
.site-footer a.footer-social-link {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
}

.site-footer .footer-social-icon {
	display: inline-flex;
	flex-shrink: 0;
	width: 1.125rem;
	height: 1.125rem;
	align-items: center;
	justify-content: center;
}

.site-footer .footer-social-icon svg {
	width: 100%;
	height: 100%;
	display: block;
}

/* Company profile PDF (Follow column): label + view/download buttons */
.site-footer .footer-pdf-block {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	margin-top: 0.35rem;
}

.site-footer .footer-pdf-label {
	display: block;
	font-size: 0.95rem;
	font-weight: 600;
	color: #6f6a64;
	line-height: 1.3;
}

.site-footer .footer-pdf-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}

.site-footer a.footer-pdf-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.35rem 0.85rem;
	border-radius: 999px;
	border: 1px solid rgba(111, 106, 100, 0.45);
	background: rgba(255, 255, 255, 0.35);
	font-size: 0.8rem;
	font-weight: 700;
	text-decoration: none;
	color: #3a3632;
	transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.site-footer a.footer-pdf-btn:hover {
	border-color: #e3763a;
	color: #e3763a;
	background: rgba(255, 255, 255, 0.6);
}
