/* Blog List Styles */
.page-header {
    padding: 6rem 0;
    margin-bottom: 2rem;
    background-size: cover;
    background-position: center;
}

.page-title {
    color: #000;
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 0rem;
    padding-left: 0.5rem;
    /* align with breadcrumb item padding usually */
}

.breadcrumb-nav {
    margin-bottom: 3rem;
}

.entry-grid {
    margin-bottom: 3rem;
    border: 1px solid #ebebeb;
    background-color: #fff;
    transition: all 0.3s;
}

.entry-grid:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.entry-media {
    position: relative;
    margin-bottom: 0;
    overflow: hidden;
}

.entry-media img {
    width: 100%;
    height: auto;
    transition: all 0.4s ease;
}

.entry-grid:hover .entry-media img {
    transform: scale(1.05);
}

.entry-body {
    padding: 2rem;
}

.entry-meta {
    color: #555;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.entry-meta a {
    color: #000;
}

.entry-meta a:hover {
    color: #ca1515;
}

.meta-separator {
    margin: 0 0.5rem;
}

.entry-title {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.entry-title a {
    color: #333;
}

.entry-title a:hover {
    color: #ca1515;
}

.entry-title-list {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.entry-title-list a {
    color: #333;
}

.entry-title-list a:hover {
    color: #ca1515;
}

.entry-cat {
    color: #999;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

.entry-cat a {
    color: #ca1515;
}

.entry-content p {
    color: #000;
}

.read-more {
    display: inline-block;
    color: #ca1515;
    text-transform: uppercase;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    transition: all 0.3s;
}

.read-more:hover {
    border-color: #ca1515;
}

/* Single Post Styles */
.single-entry {
    margin-bottom: 3rem;
}

.single-entry .entry-media {
    margin-bottom: 3rem;
}

.single-entry .entry-meta {
    margin-bottom: 2rem;
    font-size: 14px;
}

.single-entry .entry-title {
    font-size: 30px;
    margin-bottom: 2rem;
    font-weight: 700;
    color: #000;
}

.editor-content {
    font-size: 1.6rem;
    color: #555;
    line-height: 1.8;
}


.editor-content img {
    max-width: 100%;
    height: auto;
    margin: 2rem 0;
}

.pager-nav {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid #ebebeb;
}

.pager-link {
    color: #333;
    font-weight: 600;
    font-size: 1.4rem;
}

.pager-link:hover {
    color: #ca1515;
}

/* Related Posts */
.related-posts {
    margin-top: 5rem;
    padding-top: 3rem;
    border-top: 1px solid #ebebeb;
}

.related-posts .title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    padding-bottom: 10px;
    border-bottom: 2px solid #ca1515;
    display: inline-block;
}

.related-posts {
    border: 1px solid #ebebeb;
    padding: 25px;
    border-radius: 8px;
    /* Rounded corners */
    margin-top: 40px;
    background: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    /* Subtle shadow */
}

.related-posts-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.related-posts-list li {
    padding: 12px 0;
    border-bottom: 1px dashed #e5e5e5;
    transition: all 0.3s ease;
}

.related-posts-list li:last-child {
    border-bottom: none;
}

.related-posts-list li:hover {
    padding-left: 5px;
    /* Indent on hover */
}

.related-posts-list li a {
    color: #333;
    font-size: 15px;
    font-weight: 500;
    display: inline-block;
    width: 100%;
}

.related-posts-list li a:hover {
    color: #ca1515;
    text-decoration: none;
}

.related-posts-list li .meta-date {
    font-size: 13px;
    color: #999;
    float: right;
    /* Date to right */
}

/* Pagination adjustments if any ... */

.pagination-area .pagination {
    justify-content: center;
}

.pagination-area .page-item.active .page-link {
    background-color: #ca1515;
    border-color: #ca1515;
}

.pagination-area .page-link {
    color: #333;
}