/*
Theme Name: CelebNews Child
Description: Child theme for CelebNews
Author: Your Name
Template: morenews
Version: 1.0
*/

/* ===== YOU MAY ALSO LIKE – FINAL CLEAN VERSION ===== */

.single-post .entry-content .you-may-like-box {
    background: #2f2f2f;
    border-radius: 18px;
    padding: 32px;
    margin: 50px 0;
}

.single-post .entry-content .yml-title {
    color: #ffffff;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 26px;
}

/* GRID */
.single-post .entry-content .yml-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

/* ITEM */
.single-post .entry-content .yml-grid > a.yml-item {
    display: flex !important;
    align-items: flex-start;
    gap: 14px;
    text-decoration: none;
}

/* IMAGE */
.single-post .entry-content .yml-thumb {
    flex: 0 0 88px;
}

.single-post .entry-content .yml-thumb img {
    width: 88px;
    height: 88px;
    object-fit: cover;
    border-radius: 10px;
    display: block;
}

/* TEXT */
.single-post .entry-content .yml-text {
    color: #ffffff;
    font-size: 15px;
    line-height: 1.45;
    font-weight: 500;
}

/* FONT MATCH */
.single-post .entry-content .you-may-like-box,
.single-post .entry-content .you-may-like-box * {
    font-family: inherit;
}

/* ===== MOBILE / TABLET: SHOW ONLY 2 POSTS ===== */
@media (max-width: 991px) {

    .single-post .entry-content .yml-grid {
        grid-template-columns: 1fr;
    }

     .single-post .entry-content 
    .you-may-like-box .yml-grid > a.yml-item:nth-child(n+3) {
        display: none !important;
    }

}