

.social-icons {
    display: flex;
    gap: 18px;
    justify-content: center;
    align-items: center;
}

.social-icons a {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--brand-green-dark);
    color: var(--brand-green);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform var(--brand-transition), opacity var(--brand-transition);
    text-decoration: none;
}
.social-icons a:hover {
    transform: translateY(-2px);
    opacity: 0.85;
}
.social-icons svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
}
.social-icons i {
    font-size: 22px;
    line-height: 1;
    display: block;
}
.social-icons i::before {
    display: block;
    line-height: 1;
}
