.simple-footer-section,
.editor-styles-wrapper .simple-footer-section,
.block-editor-block-list__layout .simple-footer-section {
    position: relative;
    padding: clamp(1.5rem, 3vw, 3rem) clamp(1rem, 3vw, 2rem);
}

.simple-footer-inner,
.editor-styles-wrapper .simple-footer-inner,
.block-editor-block-list__layout .simple-footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.simple-footer-copy {
    flex: 1 1 280px;
}

.simple-footer-notice {
    margin: 0;
    font-family: Lexend;
    font-size: 14px;
    font-weight: 300;
    line-height: 22px;
}

.simple-footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.simple-footer-links li a,
.simple-footer-links li span {
    font-family: Lexend;
    font-size: 16px;
    font-weight: 300;
    line-height: 24px;
    color: inherit;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.simple-footer-links li a:hover {
    opacity: 0.8;
}

@media (max-width: 768px) {
    .simple-footer-inner {
        justify-content: flex-start;
    }

    .simple-footer-links {
        gap: 0.75rem;
    }
}

