.section-title {
    position: relative;
    padding-left: 15px;
    /* Space for the pseudo-element */
    margin-bottom: 15px;
    /* Adjust as needed */
    font-family: Arial;
    /* Consistent font family */
    font-size: 18px;
    /* Consistent font size */
    font-weight: bold;
    /* Consistent font weight */
}

.section-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 80%;
    /* Adjust as needed */
    width: 5px;
    background-color: #ff6600;
}

.advertising-label {
    background-color: rgba(245, 244, 244, 0.8);
    /* Orange with transparency */
    color: rgb(0, 0, 0);
    padding: 5px 10px;
    font-size: 12px;
    font-weight: bold;
    z-index: 10;
    border-bottom-right-radius: 5px;
    display: inline-block;
    /* To make it take only necessary width */
    margin-bottom: 5px;
    /* Space between label and image */
}

.ad-container {
    position: relative;
    display: flex;
    /* Use flexbox */
    flex-direction: column;
    /* Stack children vertically */
    align-items: flex-start;
    /* Align items to the start (left) */
}

.category-tags-wrapper {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    /* For smooth scrolling on iOS */
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE and Edge */
}

.category-tags-wrapper::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari, Opera */
}

.category-tag {
    display: inline-flex;
    align-items: center;
    padding: 8px 15px;
    margin-right: 10px;
    margin-bottom: 5px;
    /* For wrapping on smaller screens */
    border-radius: 2px;
    background-color: #f0f0f0;
    /* Light gray background */
    color: #333;
    /* Dark text */
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.category-tag:hover {
    background-color: #e0e0e0;
    color: #000;
    text-decoration: none;
}

.category-tag.active {
    background-color: #ff6600;
    /* Orange background for active */
    color: #fff;
    /* White text for active */
    border-color: #ff6600;
}

.category-tag.active:hover {
    background-color: #e65c00;
    /* Darker orange on hover for active */
    color: #fff;
}

.btn-lihat-lainnya {
    display: inline-block;
    padding: 8px 25px;
    background-color: #ff6600;
    /* Orange background */
    color: #fff;
    /* White text */
    border: none;
    border-radius: 20px;
    /* Increased border-radius */
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.btn-lihat-lainnya:hover {
    background-color: #e65c00;
    /* Darker orange on hover */
    color: #fff;
    text-decoration: none;
}

.album-item-new {
    position: relative;
    display: block;
    width: 100%;
    height: 350px;
    /* Changed to smaller portrait height */
    overflow: hidden;
    border-radius: 0.5rem;
    margin: 10px 0px;
    text-decoration: none;
    color: white;
}

.album-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.album-item-new:hover .album-image {
    transform: scale(1.05);
}

.album-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
}

.album-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.album-title {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    line-height: 1.2;
    color: white;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.album-meta {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
}

.album-photo-count {
    font-size: 0.85rem;
    font-weight: 600;
    color: white;
    display: block;
}

.trending-news-item {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    margin-bottom: 0.5rem;
    border-radius: 0.25rem;
    text-decoration: none;
    color: black;
    transition: background-color 0.3s ease;
}

.trending-news-item:hover {
    background-color: #ffe0b2;
    color: black;
}

.trending-news-item .item-number {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ff6600;
    margin-right: 0.75rem;
}

.trending-news-item .item-title {
    font-weight: 600;
    line-height: 1.3;
}

.list-group-item {
    border: none;
}

.breadcrumb {
    background-color: transparent !important;
    padding: 0.5rem 0;
    /* Add some vertical padding */
    margin-bottom: 1rem;
    /* Space below breadcrumb */
}

.breadcrumb-item {
    font-size: 0.9rem;
}

.breadcrumb-item+.breadcrumb-item::before {
    content: "/" !important;
    /* Change separator to / */
    padding-right: 0.5rem;
    color: #6c757d;
    /* Adjust color */
}

.breadcrumb-item a {
    color: black;
    /* Link color */
    text-decoration: none;
    transition: color 0.2s ease-in-out;
}

.breadcrumb-item a:hover {
    color: #333;
    /* Darker link color on hover */
}

.breadcrumb-item.active {
    color: #6c757d;
    /* Active item color */
}

@media (max-width: 767px) {
    .share-buttons-container {
        flex-direction: column;
        /* Stack items vertically */
        align-items: flex-start;
        /* Align items to the start (left) */
    }
}

.album-carousel-container {
    position: relative;
    /* Removed padding to allow buttons to float over content */
}

.album-nav-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    z-index: 10;
    border-radius: 5px;
    font-size: 1.2rem;
    transition: background-color 0.3s ease;
}

.album-nav-button:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.album-prev-button {
    left: 10px;
    /* Adjusted for floating effect */
}

.album-next-button {
    right: 10px;
    /* Adjusted for floating effect */
}

.thumbnail {
    width: 300px;
    height: 160px;
}

.thumbnail iframe {
    width: 900px;
    height: 480px;
    -webkit-transform-origin: 0 0;
    -moz-transform-origin: 0 0;
    transform-origin: 0 0;
    -webkit-transform: scale(0.3, 0.3);
    -moz-transform: scale(0.3, 0.3);
    transform: scale(0.3, 0.3);
    overflow: hidden;
}

.thumbnail.overlay {
    position: relative;
}

.thumbnail.overlay iframe {
    position: relative;

}

.related-news-title {
    color: blue;
}

.btn-pagination-orange {
    display: inline-block;
    padding: 8px 25px;
    background-color: #ff6600;
    /* Orange background */
    color: #fff;
    /* White text */
    border: none;
    border-radius: 20px;
    /* Increased border-radius */
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.btn-pagination-orange:hover {
    background-color: #e65c00;
    /* Darker orange on hover */
    color: #fff;
    text-decoration: none;
}

.btn-pagination-orange.disabled {
    background-color: #cccccc;
    /* Grey for disabled */
    cursor: not-allowed;
}