.footer {
    background-color: var(--footer-panel-color);
    padding: 32px 0 16px 0;
}

.footer .container {
	display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-pack: start;
    justify-content: flex-start;
    -webkit-box-align: stretch;
    align-items: stretch;
    flex-wrap: nowrap;
	max-width: var(--content-width);
    margin: 0 auto;
	gap: 16px;
    padding: 16px;
}

.footer__main {
    border-bottom: 1px solid var(--accent-color);
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    padding-bottom: 24px;
    color: var(--footer-panel-text-color);
    gap: 40px;
    justify-items: start; /* 袥褍褔褕械 褔械屑 center, 褌邪泻 泻邪泻 褌械泻褋褌 薪邪褔懈薪邪械褌褋褟 褋 芯写薪芯泄 谢懈薪懈懈 */
    position: relative;
}

/* 袗写邪锌褌懈胁 */
@media (max-width: 992px) {
    .footer__main {
        gap: 30px;
        padding: 40px 0 35px;
    }
}

@media (max-width: 550px) {
    .footer__main {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
        gap: 35px;
        padding: 35px 20px 30px;
    }
    
    .footer__main::before {
        left: 50%;
        transform: translateX(-50%);
        width: 100px;
    }
}

/* 袙懈写卸械褌-邪泄褌械屑褘 */
.page-footer__widget_item {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

@media (max-width: 768px) {
    .page-footer__widget_item {
        align-items: center;
    }
}

/* 袥芯谐芯褌懈锌 */
.page-footer__widget_item .image {
    max-width: 160px;
    height: auto;
    transition: all 0.3s ease;
}

/* 袦械薪褞 */
.page-footer__widget_item ul {
    display: flex;
    list-style: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin: 0;
    padding: 0;
}

@media (max-width: 768px) {
    .page-footer__widget_item ul {
        align-items: center;
    }
}

/* 小褋褘谢泻懈 */
.page-footer__widget_item a {
    font-size: 15px;
    font-weight: 500;
    line-height: 24px;
    text-decoration: none;
    text-transform: uppercase;
    color: var(--footer-panel-text-color);
    transition: all 0.25s ease;
    position: relative;
    padding-bottom: 4px;
    letter-spacing: 0.5px;
}

/* 协褎褎械泻褌 锌芯写褔褢褉泻懈胁邪薪懈褟 锌褉懈 褏芯胁械褉械 */
.page-footer__widget_item a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-color), var(--footer-panel-text-color-hover));
    transition: width 0.3s ease;
}

@media (max-width: 768px) {
    .page-footer__widget_item a::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

.page-footer__widget_item a:hover {
    color: var(--footer-panel-text-color-hover);
}

.page-footer__widget_item a:hover::after {
    width: 100%;
}

/* 孝械泻褋褌芯胁褘泄 胁懈写卸械褌 (custom-html-widget) */
.page-footer__widget_item .textwidget.custom-html-widget {
    margin-top: 8px;
}

.page-footer__widget_item .textwidget p {
    font-size: 13px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    letter-spacing: 0.3px;
}

@media (max-width: 768px) {
    .page-footer__widget_item .textwidget p {
        text-align: center;
    }
}

.overlay {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    inset-inline-start: 0;
    background-color: rgb(0 0 0 / .5);
    backdrop-filter: blur(5px);
    opacity: 0;
    transition: .3s;
    z-index: 90;
}
.overlay.show {
    display: block;
    opacity: 1;
}