/* Custom CSS for Rembo CMS - Matching Fruitkha Design */

/* Breadcrumb Background */
.breadcrumb-bg {
    background-color: #f0f0f0;
    padding: 80px 0;
    text-align: center;
}

.breadcrumb-text h1 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 15px;
}

.breadcrumb-text p {
    font-size: 1.1rem;
    color: #666;
}

/* Blog Listing Styles */
.latest-news {
    padding: 80px 0;
}

.single-latest-news {
    margin-bottom: 30px;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
}

.single-latest-news:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.latest-news-bg {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.news-text-box {
    padding: 20px;
}

.news-text-box h3 a {
    color: #333;
    text-decoration: none;
    font-size: 1.3rem;
}

.news-text-box h3 a:hover {
    color: #4CAF50;
}

.blog-meta {
    margin: 10px 0;
    font-size: 0.9rem;
    color: #777;
}

.blog-meta .author,
.blog-meta .date {
    margin-right: 15px;
}

.excerpt {
    color: #555;
    line-height: 1.6;
}

.read-more-btn {
    color: #4CAF50;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    margin-top: 10px;
}

.read-more-btn:hover {
    color: #388E3C;
}

/* Single Article Styles */
.single-article-bg {
    height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    margin-bottom: 30px;
}

.single-article-text-top {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.single-article-text-top .author,
.single-article-text-top .date {
    margin-right: 20px;
    color: #777;
}

.single-article-content {
    line-height: 1.8;
    color: #444;
}

.single-article-content p {
    margin-bottom: 20px;
}

/* Pagination Styles */
.pagination-wrap {
    margin-top: 40px;
    text-align: center;
}

.pagination-wrap ul {
    display: inline-flex;
    list-style: none;
    padding: 0;
    margin: 0;
}

.pagination-wrap ul li {
    margin: 0 5px;
}

.pagination-wrap ul li a {
    display: block;
    padding: 10px 15px;
    background-color: #f5f5f5;
    color: #333;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.pagination-wrap ul li a:hover,
.pagination-wrap ul li a.active {
    background-color: #4CAF50;
    color: white;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .breadcrumb-text h1 {
        font-size: 2rem;
    }
    
    .latest-news {
        padding: 50px 0;
    }
    
    .single-article-bg {
        height: 250px;
    }
}

@media (max-width: 576px) {
    .breadcrumb-text h1 {
        font-size: 1.8rem;
    }
    
    .latest-news {
        padding: 30px 0;
    }
    
    .news-text-box {
        padding: 15px;
    }
    
    .news-text-box h3 a {
        font-size: 1.1rem;
    }
}
