.related-posts {
    margin-top: 40px;
    padding: 20px 0;
}

.related-posts h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #333;
}

.card {
    border: none;
    transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.card-img-top {
    max-width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px 8px 0 0;
}

.card-title {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 0;
    line-height: 1.4;
}

.card-body {
    padding: 15px;
    text-align: center;
}

.no-underline {
    text-decoration: none;
}

@media (max-width: 767px) {
    .card-img-top {
        height: 150px;
    }

    .card-title {
        font-size: 1rem;
    }
}