/* =========================
   HOME PAGE
========================= */

.home-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 20px;
}

.content-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.section-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    background: var(--primary);
    color: white;
}

.section-title h3 {
    margin: 0;
    font-size: 18px;
}

.section-title a {
    color: white;
    font-size: 14px;
    font-weight: bold;
}

.post-list {
    padding: 0;
}

.post-item {
    display: block;
    padding: 14px 20px;
    border-bottom: 1px solid #eee;
    transition: background 0.2s;
}

.post-item:last-child {
    border-bottom: none;
}

.post-item:hover {
    background: #f8f9fb;
}

.post-title {
    color: var(--text);
    font-weight: 600;
    margin-bottom: 4px;
}
.post-meta{
    font-size:13px;
    color:#777;
    margin-top:4px;
}

.post-date {
    color: #777;
    font-size: 13px;
}

@media (max-width: 768px) {

    .home-grid {
        grid-template-columns: 1fr;
    }

}