.page-title {
    text-align: center;
    color: var(--zz-blue-dark);
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 50px;
    font-family: 'Philosopher', sans-serif;
}

.post-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.post-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.post-card-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: #f0f0f0;
}

.post-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.post-card:hover .post-card-image img {
    transform: scale(1.05);
}

.post-card-content {
    padding: 20px;
}

.post-card-content h3 {
    margin: 0 0 12px 0;
    font-size: 18px;
    line-height: 1.4;
    font-family: 'Philosopher', sans-serif;
}

.post-card-content h3 a {
    color: var(--zz-blue-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.post-card-content h3 a:hover {
    color: #0891b2;
}

.post-date {
    display: flex;
    align-items: center;
    font-size: 13px;
    color: #888;
    margin-bottom: 10px;
}

.post-date::before {
    content: "📅";
    margin-right: 6px;
}

.post-excerpt {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.no-data {
    text-align: center;
    padding: 60px 20px;
    color: #999;
    font-size: 16px;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 40px 0;
    gap: 8px;
}

.pagination li a {
    display: block;
    padding: 8px 16px;
    background: white;
    border: 1px solid #ddd;
    border-radius: 4px;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
}

.pagination li.active a {
    background: #0891b2;
    color: white;
    border-color: #0891b2;
}

.pagination li a:hover {
    background: #0891b2;
    color: white;
    border-color: #0891b2;
}

@media (max-width: 768px) {
    .post-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .post-card-content {
        padding: 15px;
    }
}