/* Style chuẩn thẻ Bài Viết Card - Dùng biến hệ thống từ global.css */
.card-post-item {
    border: 1px solid var(--midori-border, #e0e0e0);
    border-radius: var(--radius-card, 8px);
    overflow: hidden;
    background: var(--text-white, #ffffff);
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: var(--transition-base, all 0.3s ease);
}

.card-post-item:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.card-post-item .midori-card-img {
    width: 100%;
    overflow: hidden;
}

.card-post-item .midori-card-img img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.card-post-body {
    padding: 15px;
    text-align: center;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-post-date {
    font-size: var(--fs-btn-s, 10px);
    font-family: var(--font-sans);
    color: var(--text-grey, #888888);
    margin-bottom: 8px;
    text-align: center;
}

.card-post-title {
    font-size: var(--fs-caption, 13px);
    font-family: var(--font-sans);
    font-weight: 600;
    color: var(--text-dark, #333333);
    margin-bottom: 15px;
    line-height: 1.4;
    flex-grow: 1;
    text-align: center;
}

.card-post-title a {
    color: var(--text-dark, #333333);
    text-decoration: none;
    transition: color 0.2s ease;
}

.card-post-title a:hover {
    color: var(--midori-accent, #456C35);
}

.card-post-action {
    text-align: center;
}

.card-post-link {
    font-size: var(--fs-caption, 13px);
    font-family: var(--font-sans);
    font-weight: 500;
    color: var(--text-dark, #333333);
    text-decoration: none;
    transition: color 0.2s ease;
}

.card-post-link:hover {
    color: var(--midori-accent, #456C35);
}