.zy-footer {
    margin-top: 64px;
    background: #070707;
    border-top: 2px solid var(--zy-yellow);
}

.zy-footer__grid {
    padding: 26px 0 24px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.zy-footer__col {
    background: #0b0b0b;
    border: 1px solid rgba(255, 207, 35, .28);
    border-radius: 16px;
    padding: 18px;
    display: grid;
    align-content: start;
    gap: 11px;
}

.zy-footer__col h3 {
    margin: 0 0 5px;
    color: var(--zy-yellow);
    font-size: 14px;
    line-height: 1;
    font-weight: 1000;
    text-transform: uppercase;
}

.zy-footer__col a {
    color: #fff;
    font-size: 14px;
    line-height: 1.15;
    font-weight: 900;
    text-decoration: none;
}

.zy-footer__col a:hover {
    color: var(--zy-yellow);
}

.zy-footer__bottom {
    border-top: 1px solid rgba(255, 207, 35, .18);
    padding: 14px 0 18px;
    display: flex;
    justify-content: space-between;
    gap: 18px;
    color: var(--zy-muted);
    font-size: 12px;
    line-height: 1.2;
    font-weight: 800;
}

@media (max-width: 760px) {
    .zy-footer__grid {
        grid-template-columns: 1fr;
    }

    .zy-footer__bottom {
        flex-direction: column;
    }
}

.zy-footer__socials {
    display: flex;
    align-items: center;
    gap: 10px;
}

.zy-footer__social {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    border: 1px solid rgba(255, 207, 35, .45);
    background: #050505;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--zy-yellow);
    font-size: 12px;
    line-height: 1;
    font-weight: 1000;
    text-decoration: none;
}

.zy-footer__social:hover {
    background: var(--zy-yellow);
    color: #000;
}

/* ZY social icons */
.zy-footer-social {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.zy-footer-social__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 207, 35, .28);
    border-radius: 12px;
    background: rgba(255, 255, 255, .02);
    transition: .2s ease;
}

.zy-footer-social__link:hover {
    border-color: rgba(255, 207, 35, .68);
    background: rgba(255, 207, 35, .08);
    transform: translateY(-1px);
}

.zy-footer-social__link img {
    display: block;
    width: 22px;
    height: 22px;
    object-fit: contain;
}

.zy-footer-social__link[aria-label="Telegram"] img {
    width: 20px;
    height: 20px;
}

.zy-footer-social__link[aria-label="Max"] img {
    width: 24px;
    height: 24px;
}

/* Real footer social SVG icons */
.zy-footer__socials {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.zy-footer__social {
    width: 46px;
    height: 46px;
    padding: 0;
    border: 1px solid rgba(255, 207, 35, .45);
    border-radius: 14px;
    background: #050505;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.zy-footer__social img {
    display: block;
    width: 23px;
    height: 23px;
    object-fit: contain;
}

.zy-footer__social:hover {
    background: rgba(255, 207, 35, .10);
    border-color: var(--zy-yellow);
}


/* FOOTER_DYNAMIC_SOCIALS_START */
.zy-footer__social-text {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: #ffd200;
    font-weight: 1000;
    font-size: 13px;
    line-height: 1;
    text-transform: uppercase;
}

.zy-footer__social-empty {
    color: rgba(255, 255, 255, .45);
    font-size: 13px;
    font-weight: 700;
}
/* FOOTER_DYNAMIC_SOCIALS_END */

