/**
 * Theme Name: Blocksy Child
 * Description: Blocksy Child theme
 * Author: Creative Themes
 * Template: blocksy
 * Text Domain: blocksy
 */
.mk-featured-news {
    display: grid;
    grid-template-columns: 2.3fr 1fr;
    gap: 20px;
    align-items: stretch;
}

/* ========== CỘT TRÁI ========== */
.mk-news-left {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 5px;
    overflow: hidden;
}

.mk-news-left-image img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    display: block;
}

.mk-news-left-content {
    padding: 16px;
    flex: 1;
}

.mk-news-left-content h2 {
    font-size: 22px;
    line-height: 1.4;
    margin-bottom: 6px;
}

.mk-news-left-content .date {
    font-size: 13px;
    color: #888;
}

.mk-news-left-content p {
    margin-top: 8px;
    color: #555;
}

/* ========== CỘT PHẢI ========== */
.mk-news-right {
    display: grid;
    grid-template-rows: repeat(3, 1fr);
    gap: 12px;
}

.mk-news-item {
    display: flex;
    gap: 10px;
    background: #fff;
    border-radius: 5px;
    padding: 10px;
    height: 100%;
}

.mk-news-item .thumb img {
    width: 80px;
    height: 70px;
    object-fit: cover;
    border-radius: 5px;
}

.mk-news-item .content {
    display: flex;
    flex-direction: column;
}

.mk-news-item h3 {
    font-size: 15px;
    line-height: 1.4;
    margin: 0 0 4px;
}

.mk-news-item span {
    font-size: 12px;
    color: #999;
}

.mk-news-item p {
    font-size: 13px;
    color: #666;
    margin-top: 4px;
}

/* ========== MOBILE ========== */
@media (max-width: 768px) {
    .mk-featured-news {
        grid-template-columns: 1fr;
    }

    .mk-news-left-image img {
        height: 240px;
    }

    .mk-news-right {
        grid-template-rows: unset;
    }
}
/* ===============================
   ẢNH BÀI LỚN (BÊN TRÁI)
================================ */
.mk-news-left-image {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 5px;
		padding: 10px;
}

.mk-news-left-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
		overflow: hidden;
		border-radius: 5px;
}

/* ===============================
   ẢNH BÀI NHỎ (BÊN PHẢI)
================================ */
.mk-news-item .thumb {
    flex-shrink: 0;
    aspect-ratio: 7 / 7;
    overflow: hidden;
    border-radius: 5px;
}

.mk-news-item .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

