.related-posts {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.related-item {
    box-sizing: border-box;
}

.related-item img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 6px;
}

.related-item h4 {
    margin: 10px 0 0;
}

.related-item a {
    text-decoration: none;
    color: #333;
}

.related-item a:hover {
    text-decoration: underline;
}

/* Tablet */
@media screen and (max-width: 1024px) {
    .related-posts {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media screen and (max-width: 600px) {
    .related-posts {
        grid-template-columns: 1fr;
    }
}
