
.p-footer {
	background-color: #00376E;
	padding-bottom: 14.875rem;
	padding-top: 1.5rem;
    position: relative;
    z-index: 2;
}

.p-footer__inner {
	align-items: center;
	display: flex;
	flex-direction: column;
}

.p-footer__nav {
	width: 100%;
}

.p-footer__list {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 0;
	justify-content: center;
}

.p-footer__item {
	min-width: 152px;
	padding: 0 2.9375rem;
	position: relative;
	text-align: center;
}

.p-footer__item:first-child {
	padding-left: 0rem;
}

.p-footer__item:last-child {
	padding-right: 0rem;
}

.p-footer__item:not(:last-child)::after {
	background-color: #FFFFFF;
	content: "";
	height: 1rem;
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 0.0625rem;
}

.p-footer__link {
	-webkit-text-decoration: none;
	color: #FFFFFF;
	font-size: max(0.875rem, 10px);
	font-weight: 400;
	letter-spacing: 0.08em;
	text-decoration: none;
	transition: opacity 0.3s;
	white-space: nowrap;
}

.p-footer__link:hover {
	opacity: 0.7;
}

.p-footer__copyright {
	color: #FFFFFF;
	font-size: max(0.75rem, 10px);
	font-weight: 400;
	margin-top: 1.25rem;
	text-align: center;
}

@media screen and (max-width: 767px) {
    
    .p-footer {
        padding-bottom: 2.625rem;
        padding-top: 2.25rem;
    }
    
    .p-footer__list {
        flex-direction: column;
        gap: 1rem;
    }
    
    .p-footer__item {
        padding: 0;
    }
    
    .p-footer__item:not(:last-child)::after {
        display: none;
    }
    
    .p-footer__link {
        font-size: 0.875rem;
    }
    
    .p-footer__copyright {
        font-size: 0.75rem;
        margin-top: 1.5rem;
    }
}