/* ========================================
   CARD BASE STYLES
   ======================================== */

.content-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.card-header {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--white);
}

.card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.card-body {
    padding: 1.5rem;
}

/* ========================================
   ADMIN DASHBOARD BANNER
   ======================================== */

.admin-dash-banner {
    background: linear-gradient(to right, #f0f9ff, #e0f2fe);
    border: 1px solid #bae6fd;
    border-radius: var(--radius-md);
    padding: 1.5rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.adb-text h4 {
    font-size: 1.1rem;
    color: #0369a1;
    margin: 0 0 0.25rem 0;
    font-weight: 700;
}

.adb-text p {
    margin: 0;
    font-size: 0.9rem;
    color: #0c4a6e;
}

.adb-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.btn-dash {
    background: white;
    border: 1px solid #7dd3fc;
    color: #0284c7;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.btn-dash:hover {
    background: #0ea5e9;
    color: white;
    border-color: #0ea5e9;
    text-decoration: none;
}

.btn-dash.primary {
    background: #0284c7;
    color: white;
    border: none;
}

.btn-dash.primary:hover {
    background: #0369a1;
}

/* ========================================
   ABOUT CARD
   ======================================== */

.about-text {
    color: var(--text-primary);
    line-height: 1.7;
    font-size: 1rem;
}

.placeholder-box {
    background: var(--neutral-bg);
    border: 2px dashed var(--border-color);
    border-radius: var(--radius-md);
    padding: 2rem;
    text-align: center;
    color: var(--text-secondary);
}

/* ========================================
   POST CARDS (MINI)
   ======================================== */

.post-card-mini {
    padding: 1.25rem;
    border-bottom: 1px solid var(--border-color);
    transition: background 0.2s;
    display: block;
    text-decoration: none;
}

.post-card-mini:last-child {
    border: none;
}

.post-card-mini:hover {
    background: #f8fafc;
}

.pcm-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.pcm-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: #e0e7ff;
    color: #4338ca;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pcm-meta {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.pcm-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 0.25rem 0;
}

.pcm-author {
    font-size: 0.85rem;
    color: var(--primary-medium);
    font-weight: 500;
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 768px) {
    .adb-actions {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0.75rem;
        width: 100%;
        margin-top: 1rem;
    }

}
