.wpo-footer-content {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.wpo-footer-content--left {
    justify-content: flex-start;
}

.wpo-footer-content--center {
    justify-content: center;
}

.wpo-footer-content--right {
    justify-content: flex-end;
}

.wpo-footer-content .wpo-social {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.wpo-footer-content .wpo-social__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--wpo-footer-link, #007cba);
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

.wpo-footer-content .wpo-social__link:hover {
    background: var(--wpo-footer-text, #333);
}

.wpo-footer-content .wpo-footer__copy {
    color: var(--wpo-footer-text, #666);
    font-size: 14px;
}