.social-share-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-right: 10px;
}

.social-share-thumbnail-container img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.share-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #f0f0f0;
    margin-right: 0; /* Space between share icon and buttons */
}

.share-icon svg {
    fill: #555;
    width: 24px;
    height: 24px;
}

.share-icon:hover svg {
    fill: #000;
}

.social-share-buttons {
    display: flex;
    gap: 10px;
}

.social-share-buttons a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: #f0f0f0;
    transition: background-color 0.3s, transform 0.3s;
    text-decoration: none;
}

.social-share-buttons a:hover {
    background-color: #ddd;
    transform: scale(1.1);
}

.social-share-buttons svg {
    fill: #555;
    width: 24px;
    height: 24px;
}

.social-share-buttons a:hover svg {
    fill: #000;
}
