/* Related Posts Styling */
.ghanaroll-related-posts {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 2px solid #009739;
}

.related-title {
    font-size: 1.5rem;
    color: #EF3340;
    margin-bottom: 15px;
}

.related-posts-grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.related-post-item {
    flex: 1 1 calc(33.33% - 20px);
    background: #f9f9f9;
    padding: 10px;
    border-radius: 5px;
    transition: transform 0.3s;
}

.related-post-item:hover {
    transform: translateY(-5px);
}

.related-thumbnail img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

.related-post-title {
    font-size: 1rem;
    margin-top: 10px;
    text-align: center;
}

.related-post-title a {
    color: #009739;
    text-decoration: none;
}

.related-post-title a:hover {
    color: #EF3340;
}

@media (max-width: 768px) {
    .related-post-item {
        flex: 1 1 calc(50% - 10px);
    }
    .related-title {
        font-size: 1.2rem;
    }
}

/* Post Navigation Styling */
.ghanaroll-post-navigation {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 2px solid #ddd;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-previous, .nav-next {
    flex: 1;
    text-align: center;
}

.nav-previous a, .nav-next a {
    color: #009739;
    text-decoration: none;
    font-size: 1.1rem;
    padding: 10px 20px;
    background: #f1f1f1;
    border-radius: 5px;
    transition: background 0.3s, color 0.3s;
}

.nav-previous a:hover, .nav-next a:hover {
    background: #EF3340;
    color: #fff;
}

.nav-previous a i, .nav-next a i {
    margin: 0 5px;
}