/* Trending Posts Section */
.internal-trending-box {
    background: #fff;
    margin: 40px 0;
    padding: 20px;
    display: block !important; /* Overrides any hiding */
}

.internal-trending-box h2 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #000;
}

.internal-trending-grid {
    display: flex;
    gap: 30px;
}

.internal-featured-post {
    flex: 1;
    position: relative;
}

.internal-featured-post img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    margin-bottom: 12px;
}

.featured-num {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #e5003b;
    color: #fff;
    font-size: 14px;
    width: 24px;
    height: 24px;
    border-radius: 3px;
    text-align: center;
    font-weight: bold;
    line-height: 24px;
    z-index: 1;
}

.internal-featured-post h3 {
    font-size: 18px;
    margin: 0 0 8px 0;
    font-weight: 600;
    line-height: 1.3;
    color: black !important;
}

.internal-featured-post h3 a,
.internal-meta a {
    text-decoration: none;
}

.internal-meta {
    font-size: 13px;
    color: #666;
}

.internal-meta .category-link {
    color: #e5003b;
    font-weight: bold;
}

.internal-meta .author-link {
    color: #666;
    font-weight: bold;
    text-decoration: none;
}

.internal-listing {
    flex: 0 0 40%;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.internal-listing-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.internal-num {
    background: #e5003b;
    color: #fff;
    font-size: 14px;
    width: 24px;
    height: 24px;
    border-radius: 3px;
    text-align: center;
    font-weight: bold;
    line-height: 24px;
    flex-shrink: 0;
}

.internal-listing-item a {
    font-size: 15px;
    color: #222;
    text-decoration: none;
    font-weight: bold; /* Made titles bold */
    line-height: 1.3;
}

.internal-listing-item a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .internal-trending-grid {
        flex-direction: column;
    }

    .internal-featured-post img {
        height: 200px;
    }

    .internal-listing {
        width: 100%;
        margin-top: 25px;
    }
}
