.bodrumedya-related-post-card {
    height: 100%;
    min-height: 350px;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

.bodrumedya-related-image {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.bodrumedya-related-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bodrumedya-related-category {
    position: absolute;
    bottom: 10px;
    right: 10px;
    z-index: 2;
    display: inline-block;
    pointer-events: none;
}

.bodrumedya-related-content {
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between;
}

.bodrumedya-related-title {
    margin: 0 0 10px 0;
}


.bodrumedya-related-more {
    display: inline-block;
    text-decoration: none;
    margin-top: auto;
    align-self: flex-start;
}

.bodrumedya-related-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 1024px) {
    .bodrumedya-related-posts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .bodrumedya-related-posts-grid {
        grid-template-columns: 1fr;
    }
}