/* Header & Breadcrumbs */
.page-header {
    position: relative;
    padding: 150px 0 80px;
    background: url('/img/siprama-aset/main-bg.png') no-repeat center center;
    background-size: cover;
    color: #fff;
    text-align: center;
}

.header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
}

/* Blog Section */
.blog-section {
    padding: 100px 0;
    position: relative;
    background-size: cover;
    background-position: center;
}

.bg_image--custom {
    background-color: #f5f7ff;
}

/* Featured Post */
.featured-post {
    margin-bottom: 60px;
}

.blog-box {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.blog-box:hover {
    transform: translateY(-5px);
}

/* Blog Grid */
.blog-grid {
    margin-top: 40px;
}

.blog-image {
    position: relative;
    width: 100%;
    height: 300px;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Content Styles */
.grid-content, .blog-content {
    padding: 25px;
}

.post-category {
    color: #6c5ce7;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    margin-bottom: 15px;
    display: inline-block;
    background: rgba(255, 255, 255, 0.9);
    padding: 5px 15px;
    border-radius: 20px;
}

.post-date {
    color: #718096;
    font-size: 14px;
    margin-bottom: 20px;
}

.post-title {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
    color: #2d3748;
}

.grid-title {
    font-size: 20px;
    line-height: 1.4;
    margin-bottom: 15px;
    color: #2d3748;
}

.post-excerpt {
    color: #718096;
    line-height: 1.6;
    font-size: 16px;
}

@media (max-width: 991px) {
    .featured-post .blog-image {
        height: 300px;
    }

    .featured-post .blog-content {
        padding: 30px;
        border-left: none;
        border-top: 1px solid #e8e8e8;
    }

    .post-title {
        font-size: 24px;
    }
}

.breadcrumbs-section {
    padding: 100px 0 20px;
    background-color: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
}

.breadcrumb {
    margin-bottom: 0;
    background: transparent;
    padding: 0;
}

.breadcrumb-item a {
    color: #6c5ce7;
    text-decoration: none;
}

.breadcrumb-item a:hover {
    color: #5046c7;
}

.breadcrumb-item.active {
    color: #718096;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: ">";
    color: #718096;
}

/* Blog Detail Page */
.blog-detail-section {
    padding: 80px 0;
    background-color: #fff;
}

.blog-featured-image {
    margin-bottom: 40px;
    border-radius: 10px;
    overflow: hidden;
    max-height: 500px;
    position: relative;
}

.blog-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Load More Button */
.btn-primary {
    background-color: #6c5ce7;
    border-color: #6c5ce7;
    padding: 10px 30px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #5046c7;
    border-color: #5046c7;
}

a.text-decoration-none {
    color: inherit;
}

a.text-decoration-none:hover {
    color: inherit;
    text-decoration: none;
}

/* Blog Detail Styles */
.post-meta {
    display: flex;
    gap: 20px;
    justify-content: center;
    color: rgba(255, 255, 255, 0.8);
}

.post-meta .post-date {
    display: flex;
    align-items: center;
    gap: 5px;
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
}

/* Gallery Slider */
.blog-media-gallery {
    margin-bottom: 40px;
    border-radius: 10px;
    overflow: hidden;
}

.gallery-slider {
    position: relative;
}

/* Sidebar Styles */
.sidebar-widget {
    background: #fff;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.widget-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #2d3748;
    position: relative;
}

/* Categories Widget */
.categories-widget {
    margin-bottom: 40px;
}

.categories-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.categories-list li {
    margin-bottom: 15px;
}

.categories-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #2d3748;
    font-size: 16px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.categories-list a span {
    color: #718096;
    font-size: 14px;
    background: #f7f7f7;
    padding: 2px 10px;
    border-radius: 15px;
}

.categories-list a:hover {
    color: #6c5ce7;
    transform: translateX(5px);
}

/* Other Posts */
.other-posts-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.other-post-item {
    border-bottom: 1px solid #edf2f7;
    padding-bottom: 20px;
}

.other-post-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.other-post-item a {
    display: flex;
    gap: 15px;
    color: inherit;
}

.other-post-image {
    width: 100px;
    height: 70px;
    border-radius: 8px;
    overflow: hidden;
}

.other-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.other-post-content {
    flex: 1;
}

.other-post-content h5 {
    font-size: 16px;
    line-height: 1.4;
    margin: 0 0 5px;
    color: #2d3748;
}

.other-post-content .post-date {
    font-size: 14px;
    color: #718096;
    margin: 0;
}

.other-post-item:hover h5 {
    color: #6c5ce7;
}

/* Share Buttons with hover effects */
.share-buttons {
    display: flex;
    gap: 15px;
}

.share-buttons .btn {
    flex: 1;
    padding: 12px 20px;
    border-radius: 5px;
    color: #fff;
    transition: all 0.3s ease;
}

.btn-facebook { background-color: #1877f2; }
.btn-twitter { background-color: #1da1f2; }
.btn-linkedin { background-color: #0a66c2; }

.btn-facebook:hover { background-color: #1559b7; }
.btn-twitter:hover { background-color: #1884c7; }
.btn-linkedin:hover { background-color: #084c8f; }

.page-title h1 {
    font-size: 48px;
    font-weight: 700;
    margin: 20px 0;
    color: #fff;
}


