/* New Minimal Social Buttons */
.social-share-buttons {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    flex-wrap: wrap;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-btn svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.social-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.social-btn:hover svg {
    transform: scale(1.1);
}

.social-btn.facebook {
    background-color: #1877f2;
    color: white;
}

.social-btn.facebook:hover {
    background-color: #0d65d9;
}

.social-btn.linkedin {
    background-color: #0a66c2;
    color: white;
}

.social-btn.linkedin:hover {
    background-color: #004182;
}

.social-btn.pinterest {
    background-color: #e60023;
    color: white;
}

.social-btn.pinterest:hover {
    background-color: #bd001c;
}

.social-btn.twitter {
    background-color: #000000;
    color: white;
}

.social-btn.twitter:hover {
    background-color: #333333;
}

.social-btn.youtube {
    background-color: #ff0000;
    color: white;
}

.social-btn.youtube:hover {
    background-color: #cc0000;
}

.social-icons {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    margin-top: 1rem;
}

.social-icons .social-btn {
    width: 36px;
    height: 36px;
}

.social-icons .social-btn svg {
    width: 18px;
    height: 18px;
}