.sse-footer {
    padding: 3rem 1.5rem;
    background: #050509;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 0.8fr 1.2fr 2fr;
    gap: 2.5rem;
    align-items: start;
}

.footer-logo-block img {
    width: 120px;
}

.footer-info-block h4 {
    margin-bottom: 0.5rem;
}

.footer-tagline {
    font-size: 0.9rem;
    opacity: 0.7;
    margin-bottom: 1rem;
}

.footer-links-block {
    display: flex;
    gap: 3rem;
}

.footer-links-col {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.footer-links-col h4 {
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
    text-transform: uppercase;
    opacity: 0.6;
}

.footer-links-col a {
    text-decoration: none;
    color: rgba(255,255,255,0.75);
    font-size: 0.9rem;
}

.footer-links-col a:hover {
    color: #7ee7ff;
}

.footer-legal-block {
    grid-column: span 3;
    margin-top: 2rem;
    text-align: center;
    font-size: 0.85rem;
    opacity: 0.6;
}

.footer-legal-block a {
    color: inherit;
    text-decoration: none;
}

.footer-legal-block a:hover {
    color: #7ee7ff;
}

.footer-affiliations {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-affiliations h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    opacity: 0.6;
}

.affiliation-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
}

.affiliation-logos img {
    height: 22px;
    opacity: 0.75;
    filter: grayscale(100%);
    transition: 0.2s ease;
}

.affiliation-logos img:hover {
    opacity: 1;
    filter: grayscale(0%);
}

.affiliation-note {
    font-size: 0.75rem;
    opacity: 0.5;
    line-height: 1.4;
}