.etinion-general-footer {
    background: radial-gradient(circle at 20% 20%, #090909ed, #0b0b0b 50%), radial-gradient(circle at 80% 10%, rgb(0 0 0), #001c8d 55%);
    color: #ffffff;
    font-size: 14px;
    line-height: 1.6;
    padding: 64px 24px 32px;
}

.etinion-general-footer a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.2s ease;
}

.etinion-general-footer a:hover,
.etinion-general-footer a:focus-visible {
    color: #e3ff00;
}

.general-footer__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 32px;
    max-width: 1150px;
    margin: 0 auto 40px;
}

.general-footer__column {
    min-width: 0;
}

.general-footer__toggle {
    width: 100%;
    border: none;
    background: transparent;
    color: inherit;
    font-size: 16px;
    font-weight: 600;
    text-align: left;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    cursor: pointer;
}

.general-footer__toggle-icon {
    width: 16px;
    height: 16px;
    transform-origin: center;
    transition: transform 0.2s ease;
}

.general-footer__toggle[aria-expanded="true"] .general-footer__toggle-icon {
    transform: rotate(180deg);
}

.general-footer__panel {
    margin-top: 16px;
}

.general-footer__panel[hidden] {
    display: none;
}

.general-footer__menu-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.general-footer__menu-list a {
    font-size: 14px;
    font-weight: 500;
}

.general-footer__empty {
    opacity: 0.7;
    font-size: 14px;
    margin: 0;
}

.general-footer__column--brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
}

.general-footer__logo {
    max-width: 200px;
    height: auto;
    display: block;
}

.general-footer__brand-fallback {
    font-size: 20px;
    font-weight: 700;
}

.general-footer__social-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 12px;
}

.general-footer__social {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #e3ff00;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.general-footer__social svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.general-footer__social:hover,
.general-footer__social:focus-visible {
    background: rgba(227, 255, 0, 0.15);
    border-color: #e3ff00;
}

.general-footer__social--disabled {
    opacity: 0.35;
    border-style: dashed;
    cursor: not-allowed;
}

.general-footer__sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.general-footer__meta {
    max-width: 1200px;
    margin: 0 auto;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 24px;
    text-align: center;
}

.general-footer__meta p {
    margin: 0;
    font-size: 13px;
    opacity: 0.8;
}

@media (max-width: 1200px) {
    .general-footer__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .general-footer__grid {
        grid-template-columns: 1fr;
    }

    .general-footer__column--brand {
        order: -1;
        margin-bottom:20px;
    }

    .general-footer__toggle {
        padding: 16px 0;
        border-bottom: 1px solid rgb(70 70 70 / 10%);
    }

    .general-footer__column--menu:last-of-type .general-footer__panel {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding-bottom: 16px;
    }
}

@media (min-width: 901px) {
    .general-footer__toggle-icon {
        opacity: 0;
    }

    .general-footer__panel {
        margin-top: 20px;
            margin-bottom: 30px;
    }
    .general-footer__menu-list a {
    font-size: 12px;
}
}
