/* Theme Cards Block Styles */
.wpe-content-card {
    background: white;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    margin-bottom: 2rem;
}

.wpe-content-card h2 {
    color: #0f4c21;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.wpe-themes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.wpe-theme-card {
    padding: 1.75rem;
    background: #f8f9fa;
    border-radius: 12px;
    border-left: 4px solid #1a7431;
    transition: all 0.2s;
}

.wpe-theme-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.wpe-theme-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.wpe-theme-card h4 {
    color: #0f4c21;
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.wpe-theme-card p {
    margin: 0;
    color: #6c757d;
    font-size: 0.9375rem;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .wpe-content-card {
        padding: 1.5rem;
    }

    .wpe-content-card h2 {
        font-size: 1.5rem;
    }

    .wpe-themes-grid {
        grid-template-columns: 1fr;
    }
}