/**
 * ============================================
 * RELATED POSTS STYLES
 * ============================================
 * Styles cho related posts component
 * Hiển thị các bài viết liên quan
 */

/* ============================================
   SECTION 1: IMAGE
   ============================================ */
.related-posts-wrapper .box-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
    background-color: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.related-posts-wrapper .box-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.3s ease;
}

.related-posts-wrapper .box-image:hover img {
    transform: scale(1.05);
}

/* ============================================
   SECTION 2: BLOG POST CARD
   ============================================ */
.related-posts-wrapper .box-blog-post {
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* ============================================
   SECTION 3: CONTENT
   ============================================ */
.related-posts-wrapper .box-blog-post .box-text {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

/* ============================================
   SECTION 4: POST TITLE
   ============================================ */
.related-posts-wrapper .box-blog-post .box-text .post-title {
    margin-bottom: 10px;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ============================================
   SECTION 5: RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .related-posts-wrapper .box-image {
        height: 200px;
    }
}
