.latest-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
}

.latest-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 32px;
}

.latest-bar {
    width: 6px;
    height: 28px;
    background: #0d2456;
    border-radius: 4px;
}

.latest-title h2 {
    font-size: 28px;
    font-weight: 600;
}

.latest-list {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.latest-card {
    display: flex;
    gap: 22px;
    align-items: flex-start;
}

.latest-card img {
    width: 140px;
    height: 140px;
    object-fit: cover;
    border-radius: 16px;
}

.latest-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}

.latest-content p {
    font-size: 15px;
    color: var(--muted);
    margin-bottom: 12px;
    line-height: 1.6;
}

.latest-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--muted);
}

.latest-tag {
    background: #d8f0ea;
    color: #0d2456;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 500;
}

.trending {
    background: var(--surface);
    border-radius: var(--radius-lg);
    padding: 28px;
    border: 1px solid var(--line);
}

.trending-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #0d2456;
}

.trending-list {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.trending-list li {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.trend-num {
    font-size: 28px;
    font-weight: 700;
    color: #d1d5db;
    min-width: 40px;
}

.trending-list h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.trending-list p {
    font-size: 13px;
    color: var(--muted);
}

@media (max-width:1024px) {

    .latest-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .trending {
        padding: 24px;
    }

}

@media (max-width:640px) {

    .latest-card {
        flex-direction: column;
    }

    .latest-card img {
        width: 100%;
        height: 200px;
    }

    .latest-content h3 {
        font-size: 18px;
    }

}
