/* ====== Blog & Blog Details Pages ====== */
.blog-meta {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 15px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.blog-meta i {
    color: var(--primary-color);
    margin-right: 5px;
}

/* Pagination Styling */
.pagination-custom .page-link {
    color: var(--secondary-color);
    border: none;
    margin: 0 5px;
    border-radius: 6px;
    padding: 10px 18px;
    font-weight: 600;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.pagination-custom .page-item.active .page-link,
.pagination-custom .page-link:hover {
    background: var(--primary-color);
    color: #000;
    transform: translateY(-2px);
}

/* Blog Details Page */
.blog-details-img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.post-content p {
    line-height: 1.9;
    color: #555;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

/* Premium Blockquote */
.post-blockquote {
    background: rgba(255, 182, 6, 0.08);
    border-left: 5px solid var(--primary-color);
    padding: 25px 30px;
    font-size: 1.25rem;
    font-style: italic;
    color: var(--secondary-color);
    margin: 35px 0;
    border-radius: 0 8px 8px 0;
}

/* Sidebar Recent Posts */
.recent-post-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.recent-post-list li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}

.recent-post-list li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.recent-post-img {
    width: 80px;
    height: 80px;
    border-radius: 6px;
    object-fit: cover;
    margin-right: 15px;
}

.recent-post-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--secondary-color);
    text-decoration: none;
    transition: 0.3s;
    display: block;
    line-height: 1.4;
}

.recent-post-title:hover {
    color: var(--primary-color);
}