.wpb-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.wpb-card {
    background: #f9fbfd;
    padding: 25px;
    border-radius: 16px;
    border: 1px solid #e3eaf2;
    transition: 0.3s;
}

.wpb-card:hover {
    transform: translateY(-8px);
}

.wpb-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.wpb-card p {
    color: #666;
    font-size: 14px;
}

.tags {
    margin: 10px 0;
}

.tags span {
    display: inline-block;
    background: #e6f4ea;
    color: #2e7d32;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
    margin-right: 5px;
}

.content {
    margin-top: 15px;
    font-size: 14px;
}

.btn {
    display: block;
    margin-top: 20px;
    padding: 10px;
    text-align: center;
    background: #eef2f7;
    border-radius: 8px;
    text-decoration: none;
    color: #333;
}

/* Responsive */
@media (max-width: 768px) {
    .wpb-cards {
        grid-template-columns: 1fr;
    }
}