/* ==========================================================================
   Base/SocialLinks - Social media link icons with pill-shaped badges
   Merged from ThemeSocialMedia.css (cleaned: no @import, no :root)
   ========================================================================== */

.themesocialmedia-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 4rem 2rem;
    background: var(--section-bg-1);
    font-family: var(--font-sans);
}

.themesocialmedia-container {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    max-width: var(--template-content-width);
    width: 100%;
}

.themesocialmedia-text {
    text-align: center;
}

.themesocialmedia-title {
    font-size: 2rem;
    margin-bottom: 0.25rem;
    color: var(--primary-color);
}

.themesocialmedia-subtitle {
    font-size: 1.05rem;
    color: var(--primary-color);
    line-height: 1.6;
    margin: 0;
}

.themesocialmedia-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1.25rem;
    align-items: center;
    justify-content: center;
}

.themesocialmedia-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    background: var(--section-bg-canvas);
    color: var(--primary-color);
    padding: 0.6rem 1rem 0.6rem 0.7rem;
    border-radius: 999px;
    box-shadow: 0 4px 16px var(--primary-shadow);
    transition: transform 120ms ease, box-shadow 120ms ease, background 120ms ease, color 120ms ease;
    will-change: transform;
}

    .themesocialmedia-link:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px var(--accent-shadow);
        background: var(--accent-color);
        color: var(--primary-color);
    }

.themesocialmedia-icon {
    width: 26px;
    height: 26px;
    margin-right: 0.6rem;
    display: block;
    filter: drop-shadow(0 2px 4px var(--primary-shadow));
}

.themesocialmedia-label {
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: .01em;
}

.themesocialmedia-empty {
    color: color-mix(in srgb, var(--primary-color) 40%, white);
    font-size: 1.05rem;
    padding: 0.25rem 0;
}

@media (max-width: 640px) {
    .themesocialmedia-title {
        font-size: 1.75rem;
    }

    .themesocialmedia-label {
        display: none;
    }

    .themesocialmedia-icon {
        margin-right: 0;
    }
}
