.content-page {
    padding: 20px;
}

.page-title {
    font-size: 26px;
    margin-bottom: 20px;
}

/* Grid layout */
.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
}

/* Card design */
.content-card {
    background: #fff;
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.content-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

/* Header */
.card-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 12px;
}

.card-title {
    font-size: 16px;
    margin: 0;
}

/* Type badge */
.badge {
    background: #e0f2fe;
    color: #0369a1;
    font-size: 12px;
    padding: 4px 8px;
    border-radius: 999px;
}

/* Button */
.view-button {
    display: inline-block;
    padding: 8px 12px;
    background: #2563eb;
    color: white;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    margin-top: 10px;
}

.view-button:hover {
    background: #1d4ed8;
}
