/* ==========================================================================
   Social Media Kanal
   Einzelnes Icon + Link innerhalb der "Social Media"-Komponente.
   Plattform-Icons (Inline-SVG) folgen im Dark Mode der Modal-Farbwelt;
   hochgeladene Bilder werden unverändert dargestellt.
   ========================================================================== */

.social-media-channel {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #4d4d4d;
    transition: color 0.2s ease;
}

.social-media-channel:hover,
.social-media-channel:focus-visible {
    color: #262626;
}

.social-media-channel:focus-visible {
    outline: 2px solid currentColor;
    outline-offset: 6px;
    border-radius: 4px;
}

/* Icon-Box: quadratisch, Bild/SVG zentriert eingepasst.
   Größen je Breakpoint: S 43px / M1–L 67px / XL 102px. */
.social-media-channel__icon {
    display: block;
    width: 43px;
    height: 43px;
    object-fit: contain;
}

/* ---- Dark Mode: nur Inline-SVG-Icons umfärben (Modal-Farbwelt).
       Hochgeladene Bilder (--image) bleiben unverändert. ---- */

#main-wrapper.neo-dark .social-media-channel:not(.social-media-channel--image) {
    color: #ffffff;
}

#main-wrapper.neo-dark .social-media-channel:not(.social-media-channel--image):hover,
#main-wrapper.neo-dark .social-media-channel:not(.social-media-channel--image):focus-visible {
    color: #e6e6e6;
}

/* ==========================================================================
   Responsive Icon-Größen (analog Figma: M2 / M1 / L / XL)
   ========================================================================== */

@media (min-width: 768px) {
    .social-media-channel__icon {
        width: 67px;
        height: 67px;
    }
}

@media (min-width: 1920px) {
    .social-media-channel__icon {
        width: 102px;
        height: 102px;
    }
}
