/* ========================================================
   SIDEBAR - SOCIAL WIDGET
======================================================== */

.social-widget {
    width: 100%;

    background: var(--weiss, #fff);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 0px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05), 0 8px 20px rgba(0, 0, 0, 0.03);
    transition: box-shadow 0.3s ease;
}

.social-widget:hover {
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05), 0 8px 20px rgba(0, 0, 0, 0.03);
}

/* Header */
.social-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 10px;
    background: var(--weiss, #fff);
    border-bottom: 2px solid var(--rot, #d72222);
}

.social-header h3 {
    margin: 0;
    color: var(--schwarz, #000);
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
}

.social-header span {
    padding: 4px 8px;
    color: var(--weiss, #fff);
    background: var(--rot, #d72222);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

/* Content & Button Styling */
.social-content {
    padding: 20px;
}

.sidebar-social-icons {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.sidebar-social-icons li {
    flex: 1;
}

.sidebar-social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 42px;
    width: 100%;
    background: #fff;
    color: var(--grau, #222);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 0px;
    box-shadow: rgba(0, 0, 0, 0.02) 0 1px 3px;
    text-decoration: none;
    transition: all 0.25s ease;
}

.sidebar-social-icons a:hover {
    color: var(--rot, #d72222);
    border-color: rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
    box-shadow: rgba(0, 0, 0, 0.1) 0 4px 12px;
}

.sidebar-social-icons a:active {
    transform: translateY(0);
    background: #f0f0f1;
    box-shadow: rgba(0, 0, 0, 0.06) 0 2px 4px;
}

/* SVG Masken Style & Zuordnung */
.sidebar-social-icons .icon {
    width: 22px;  /* Von 32px auf 22px angepasst, damit das Icon perfekt in den 42px-Button passt */
    height: 22px;
    display: inline-block;
    background-color: currentColor;
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-size: contain;
}

/* Exakte Zuordnung passend zum HTML */
.icon-facebook {
    mask-image: url("../icons/facebook.svg");
    -webkit-mask-image: url("../icons/facebook.svg");
}

.icon-github {
    mask-image: url("../icons/github.svg");
    -webkit-mask-image: url("../icons/github.svg");
}

.icon-instagram {
    mask-image: url("../icons/instagram.svg");
    -webkit-mask-image: url("../icons/instagram.svg");
}