.rw-social-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.rw-social-icons.rw-align-center {
    justify-content: center;
}

.rw-social-icons.rw-align-right {
    justify-content: flex-end;
}

.rw-social-link {
    width: var(--rw-icon-size, 42px);
    height: var(--rw-icon-size, 42px);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #ffffff;
    background: #444444;
    transition: transform 0.18s ease, opacity 0.18s ease;
}

.rw-social-link:hover,
.rw-social-link:focus {
    transform: translateY(-2px);
    opacity: 0.92;
}

.rw-shape-circle .rw-social-link {
    border-radius: 999px;
}

.rw-shape-rounded .rw-social-link {
    border-radius: 12px;
}

.rw-shape-square .rw-social-link {
    border-radius: 0;
}

.rw-social-icon {
    display: inline-flex;
    width: 50%;
    height: 50%;
}

.rw-social-icon svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}

.rw-website { background: #4b5563; }
.rw-telegram { background: #229ED9; }
.rw-instagram { background: #E1306C; }
.rw-facebook { background: #1877F2; }
.rw-bluesky { background: #1185FE; }
.rw-discord { background: #5865F2; }
.rw-youtube { background: #FF0000; }
.rw-x { background: #111111; }
.rw-email { background: #059669; }
