﻿.social-media-section {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #f9fafc;
    border-top: 1px solid #e4e8ee;
    border-bottom: 1px solid #e4e8ee;
    font-family: 'DM Sans', 'Inter', Arial, sans-serif;
}

.social-media-section-title {
    font-size: 3rem;
    font-weight: 700;
    color: #423E3B !important;
    letter-spacing: 0.04em;
    margin-bottom: 1.2rem;
}

.social-links-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1.7rem;
    justify-content: center;
}

.social-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #1a2233;
    font-weight: 500;
    background: #fff;
    border-radius: 2rem;
    box-shadow: 0 2px 10px rgba(90,110,140,0.10);
    padding: 0.5rem 1.2rem 0.5rem 0.8rem;
    transition: background 0.18s, box-shadow 0.18s, transform 0.13s;
}

    .social-link:hover {
        background: #f1f5fa;
        box-shadow: 0 4px 18px rgba(100,110,130,0.13);
        transform: translateY(-2px) scale(1.045);
        color: var(--primary-color, #2957A4);
    }

.social-link-icon {
    width: 28px;
    height: 28px;
    margin-right: 0.75rem;
    filter: drop-shadow(0 2px 4px rgba(90,110,140,0.08));
    fill: var(--icon-color, #2957A4);
    /* If SVG, you can override fill via CSS variable */
}

.social-link-label {
    font-size: 1.13rem;
    letter-spacing: 0.01em;
}

.no-social-links {
    color: #a5adc4;
    font-size: 1.05rem;
    padding: 0.8rem 0;
}

@media (max-width: 600px) {
    .social-links-list {
        gap: 1rem;
    }

    .social-link-label {
        display: none;
    }
}

