.social-links {
    width: 100%;
}
.social-links-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.social-links-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: #f0f0f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.social-links-row h3 {
    margin: 0;
    font-size: 16px;
}
.social-icon {
    width: 30px;
    height: auto;
}
.social-links-row::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    transition: left 0.5s ease-in-out;
}
.social-links-row:hover::after {
    left: 0;
}
