/* FOOTER */
.site-footer {
    margin-top: auto;
    min-height: 260px;
    padding: 64px 20px 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 22px;
    text-align: center;
    color: var(--light);
    background:
        radial-gradient(circle at 20% 0%, rgba(255, 74, 0, 0.18), transparent 32%),
        linear-gradient(135deg, #050505 0%, #111111 48%, #000000 100%);
    border-top: 3px solid var(--primary);
    box-shadow: inset 0 28px 60px rgba(255, 74, 0, 0.06);
}

.rt-footer-legal-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 12px 22px;
}

.rt-footer-legal-links a {
    color: rgba(255, 255, 255, 0.82);
    font-size: 14px;
    line-height: 1.4;
    text-decoration: none;
    transition: color 0.2s ease;
}

.rt-footer-legal-links a:hover,
.rt-footer-legal-links a:focus {
    color: var(--primary);
}

.site-footer p {
    margin: 0;
    color: rgba(255, 255, 255, 0.86);
    font-size: 15px;
    line-height: 1.5;
}

@media screen and (max-width: 768px) {
    .site-footer {
        min-height: 210px;
        padding: 50px 18px 42px;
    }

    .rt-footer-legal-links {
        flex-direction: column;
        gap: 10px;
    }
}
