/* Dream Core Content Design System */

/* Global Reset for DC Content */
.dc-content-wrapper {
    max-width: 800px;
    margin: 0 auto;
    font-family: 'Inter', sans-serif;
}

/* Light Card */
.dc-card-light {
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
    padding: 40px;
    margin-bottom: 40px;
    color: #374151;
}

/* Dark Card (Sovereign Mode) */
.dc-card-dark {
    background-color: #111827;
    color: #ffffff;
    border-radius: 12px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border: 1px solid #1f2937;
}

/* Typography inside Cards */
.dc-card-light h2 {
    color: #111827;
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.2;
}

.dc-card-dark h2 {
    color: #ffffff;
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.2;
}

.dc-card-light p, 
.dc-card-dark p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 24px;
}

.dc-card-light p { color: #374151; }
.dc-card-dark p { color: #f3f4f6; }

/* Lists */
.dc-card-light ul, 
.dc-card-dark ul {
    list-style-type: disc;
    padding-left: 24px;
    margin-bottom: 32px;
}

.dc-card-light li { margin-bottom: 12px; font-size: 18px; color: #374151; }
.dc-card-dark li { margin-bottom: 12px; font-size: 18px; color: #f3f4f6; }

/* Highlights & Accents */
.dc-highlight-blue {
    color: #2563eb;
    font-weight: 700;
}

/* Buttons */
.dc-btn {
    display: inline-block;
    background-color: #2563eb;
    color: #fff;
    font-weight: 700;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    transition: background-color 0.2s;
}

.dc-btn:hover {
    background-color: #1d4ed8;
}

/* Grid Layouts */
.dc-grid-2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 24px;
}

@media (min-width: 768px) {
    .dc-grid-2 {
        grid-template-columns: 1fr 1fr;
    }
}
