.entry-subtitle small {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    /* maksimal 3 baris */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* .homepage-two.fixed-nav .sticky-nav #menubar {
    float: none;
} */

#navigation .navbar-nav li a {
    font-size: 14px;
    /* font-weight: bold; */
    padding: 5px 10px;
}

.dropdown-toggle::after {
    display: inline-block;
    margin-left: .5em;
    vertical-align: .25em;
    content: "";
    border-top: .3em solid;
    border-right: .3em solid transparent;
    border-left: .3em solid transparent;
}

#navigation #mainmenu {
    max-height: 700px;
}

.author-heading-slider {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.shadow-img {
    filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.8));
}

.author-profile {
    margin-bottom: 10px;
}

.author-heading.author-heading-slider {
    position: relative;
    overflow: hidden;
}

.author-heading.author-heading-slider::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.7) 5%,
            /* gelap di bawah */
            rgba(0, 0, 0, 0.3) 30%,
            /* mulai memudar */
            rgba(0, 0, 0, 0) 100%
            /* transparan di atas */
        );
    z-index: 1;
}

/* ini biar konten tetap di atas shadow */
.author-heading .author-profile {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    /* text-align: center; */
    z-index: 2;
}

.author-name-cs {
    width: 70%
}

.entry-thumbnail-custom {
    background-color: var(--info);
    height: 325px;
    background-size: cover;
    background-position: top center;
    background-image: url('/assets/images/notfound.png');
}

.share-floating-vertical {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    z-index: 9999;
    background: white;
    padding: 5px;
    border-radius: 10px 0 0 10px;
    box-shadow: -2px 0 8px rgba(0, 0, 0, 0.1);
}

.share-floating-vertical .social-icons {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.share-floating-vertical .social-icons li {
    list-style: none;
}

.share-floating-vertical .social-icons a {
    display: inline-block;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    color: #555;
    background: #f0f0f0;
    border-radius: 50%;
    transition: background 0.3s, color 0.3s;
}

.share-floating-vertical .social-icons a:hover {
    background: #007bff;
    color: white;
}

.share-floating-vertical .social-icons a.whatsapp {
    background: #25D366;
    color: white;
}

#mode-suara-container {
    position: fixed;
    bottom: 65px;
    left: 16px;
    z-index: 9999;
}

#mode-suara-container .mode-suara {
    display: none; /* Default disembunyikan, nanti ditampilkan via JS */
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: none;
    font-size: 18px;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
    transition: background 0.3s;
}

#mode-suara-container .mode-suara.on {
    background-color: var(--primary);
    color: white;
}

#mode-suara-container .mode-suara.off {
    background-color: #dc3545; /* merah */
    color: white;
}

#mode-suara-container .mode-suara:hover {
    opacity: 0.85;
}

.asw-menu-btn {
    width: 37px!important;
    height: 37px!important;
}

.break-top {
    margin-top: 35px;
}