/* ==========================================================================
CEOX Footer
========================================================================== */

.ceox-footer {
padding: 64px 0 32px;
background: var(--ceox-primary);
color: #ffffff;
}

.ceox-footer .ceox-container {
width: 100%;
max-width: var(--ceox-container);
margin: 0 auto;
padding-inline: 24px;
}

.ceox-footer a {
text-decoration: none;
}

/* ==========================================================================
Top Divider
========================================================================== */

.ceox-footer__top-divider {
margin: 0 0 56px;
border: 0;
border-top: 3px solid var(--ceox-accent);
opacity: 1;
}

/* ==========================================================================
Layout
========================================================================== */

.ceox-footer__columns {
align-items: flex-start;
gap: 64px;
margin-bottom: 48px;
}

.ceox-footer__brand {
display: flex;
flex-direction: column;
}

.ceox-footer__contact {
display: flex;
flex-direction: column;
align-items: flex-start;
}

/* ==========================================================================
Branding
========================================================================== */

.ceox-footer__logo {
margin: 0;
color: #ffffff;
font-size: clamp(40px, 4vw, 48px);
font-weight: 800;
line-height: 1;
letter-spacing: 0.08em;
text-transform: uppercase;
}

.ceox-footer__slogan {
margin: 20px 0 0;
color: #ffffff;
font-size: clamp(20px, 2vw, 24px);
font-weight: 600;
line-height: 1.35;
}

.ceox-footer__description {
max-width: 560px;
margin: 20px 0 0;
color: rgba(255, 255, 255, 0.75);
font-size: 18px;
line-height: 1.8;
}

/* ==========================================================================
Contact
========================================================================== */

.ceox-footer__heading {
margin: 0 0 24px;
color: #ffffff;
font-size: 18px;
font-weight: 700;
line-height: 1.4;
}

.ceox-footer__contact-list {
width: 100%;
}

.ceox-footer__item {
margin: 0 0 16px;
color: rgba(255, 255, 255, 0.75);
font-size: 17px;
line-height: 1.7;
}

.ceox-footer__item:last-child {
margin-bottom: 0;
}

.ceox-footer__link {
position: relative;
display: inline-block;
color: #ffffff;
transition:
color var(--ceox-transition),
opacity var(--ceox-transition);
}

.ceox-footer__link::after {
content: "";
position: absolute;
right: 0;
bottom: -2px;
left: 0;
height: 1px;
background: var(--ceox-accent);
opacity: 0;
transition: opacity var(--ceox-transition);
}

.ceox-footer__link:hover,
.ceox-footer__link:focus-visible {
color: var(--ceox-accent);
}

.ceox-footer__link:hover::after,
.ceox-footer__link:focus-visible::after {
opacity: 1;
}

.ceox-footer__link:focus-visible {
border-radius: 4px;
outline: 2px solid var(--ceox-accent);
outline-offset: 4px;
}

/* ==========================================================================
Bottom Divider
========================================================================== */

.ceox-footer__divider {
margin: 0;
border: 0;
border-top: 1px solid rgba(255, 255, 255, 0.15);
opacity: 1;
}

/* ==========================================================================
Bottom Bar
========================================================================== */

.ceox-footer__bottom {
display: flex;
align-items: center;
justify-content: space-between;
gap: 16px;
margin-top: 8px;
padding-top: 24px;
}

.ceox-footer__copyright,
.ceox-footer__rights {
margin: 0;
font-size: 15px;
line-height: 1.6;
}

.ceox-footer__copyright {
color: #ffffff;
font-weight: 600;
}

.ceox-footer__rights {
color: rgba(255, 255, 255, 0.75);
}

/* ==========================================================================
Tablet
========================================================================== */

@media (max-width: 1024px) {
.ceox-footer {
padding: 56px 0 28px;
}

.ceox-footer .ceox-container {
	padding-inline: 20px;
}

.ceox-footer__top-divider {
	margin-bottom: 48px;
}

.ceox-footer__columns {
	gap: 40px;
	margin-bottom: 40px;
}

.ceox-footer__description {
	font-size: 17px;
}

.ceox-footer__heading {
	font-size: 17px;
}

.ceox-footer__item {
	font-size: 16px;
}

}

/* ==========================================================================
Mobile
========================================================================== */

@media (max-width: 767px) {
.ceox-footer {
padding: 48px 0 24px;
text-align: center;
}

.ceox-footer .ceox-container {
	padding-inline: 20px;
}

.ceox-footer__top-divider {
	margin-bottom: 40px;
}

.ceox-footer__columns {
	display: flex;
	flex-direction: column;
	gap: 40px;
	margin-bottom: 32px;
}

.ceox-footer__brand,
.ceox-footer__contact {
	width: 100%;
    padding-top:12px;
	align-items: center;
	text-align: center;
}

.ceox-footer__description {
	max-width: 100%;
	font-size: 16px;
}

.ceox-footer__contact-list {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.ceox-footer__item {
	margin-bottom: 12px;
	font-size: 16px;
}

.ceox-footer__bottom {
	flex-direction: column;
	justify-content: center;
	gap: 8px;
	padding-top: 20px;
	text-align: center;
}

}

/* ==========================================================================
Reduced Motion
========================================================================== */

@media (prefers-reduced-motion: reduce) {
.ceox-footer,
.ceox-footer *,
.ceox-footer *::before,
.ceox-footer *::after {
animation: none !important;
transition: none !important;
scroll-behavior: auto !important;
}
}