/* Style untuk teks */
.share-section {
    display: flex;
    align-items: flex-start;
    margin-top: 20px;
    gap: 15px;
}

.author-name {
    font-size: 16px;
    font-weight: bold;
    margin-right: 15px;
    color: #555;
}

/* Kontainer share */
.share-content {
    display: flex;
    flex-direction: column;
}

.share-text {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}

/* Container tombol */
.share-buttons {
    display: flex;
    gap: 10px;
}

/* Gaya tombol berbagi */
.share-btn {
    text-decoration: none;
    padding: 10px 15px;
    color: #fff;
    border-radius: 5px;
    font-size: 14px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.share-btn.facebook {
    background-color: #3b5998;
}

.share-btn.facebook:hover {
    background-color: #2d4373;
}

.share-btn.twitter {
    background-color: #1da1f2;
}

.share-btn.twitter:hover {
    background-color: #0d95e8;
}

.share-btn.whatsapp {
    background-color: #25d366;
}

.share-btn.whatsapp:hover {
    background-color: #1da851;
}
