/* ============================================
   CONTENT WIDGETS (shared across all pages)
   ============================================ */
.content-widget {
    border-radius: 12px;
    padding: 0;
    margin: 24px 0;
    overflow: hidden;
    border: 1px solid var(--cl-border);
}

.content-widget .widget-header {
    padding: 14px 18px;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.content-widget .widget-icon {
    font-size: 18px;
    line-height: 1;
}

.content-widget .widget-body {
    padding: 16px 18px;
    font-size: 14px;
    line-height: 1.6;
    color: var(--cl-text-muted);
    background: var(--cl-card);
}

.content-widget .widget-body p { margin: 0 0 12px; }
.content-widget .widget-body p:last-child { margin: 0; }
.content-widget .widget-body ul,
.content-widget .widget-body ol { margin: 12px 0; padding-left: 24px; }
.content-widget .widget-body li { margin: 8px 0; }

/* Widget: Disclaimer (Affiliate) */
.widget-disclaimer {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.15) 0%, rgba(255, 152, 0, 0.1) 100%);
    border-color: rgba(255, 193, 7, 0.3);
}
.widget-disclaimer .widget-header {
    background: rgba(255, 193, 7, 0.1);
    color: #ffc107;
}

/* Widget: Rule */
.widget-rule {
    background: linear-gradient(135deg, rgba(63, 81, 181, 0.15) 0%, rgba(48, 63, 159, 0.1) 100%);
    border-color: rgba(63, 81, 181, 0.3);
}
.widget-rule .widget-header {
    background: rgba(63, 81, 181, 0.1);
    color: #7986cb;
}

/* Widget: Example */
.widget-example {
    background: linear-gradient(135deg, rgba(0, 150, 136, 0.15) 0%, rgba(0, 121, 107, 0.1) 100%);
    border-color: rgba(0, 150, 136, 0.3);
}
.widget-example .widget-header {
    background: rgba(0, 150, 136, 0.1);
    color: #4db6ac;
}

/* Widget: Tip */
.widget-tip {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.15) 0%, rgba(56, 142, 60, 0.1) 100%);
    border-color: rgba(76, 175, 80, 0.3);
}
.widget-tip .widget-header {
    background: rgba(76, 175, 80, 0.1);
    color: #4caf50;
}

/* Widget: Remember */
.widget-remember {
    background: linear-gradient(135deg, rgba(33, 150, 243, 0.15) 0%, rgba(25, 118, 210, 0.1) 100%);
    border-color: rgba(33, 150, 243, 0.3);
}
.widget-remember .widget-header {
    background: rgba(33, 150, 243, 0.1);
    color: #2196f3;
}
.widget-remember .widget-body a {
    color: #64b5f6;
    text-decoration: underline;
}
.widget-remember .widget-body a:hover {
    color: #90caf9;
}

/* Widget: Steps */
.widget-steps {
    background: var(--cl-card);
    border-color: var(--cl-border);
    padding: 20px;
}
.widget-steps .widget-header {
    padding: 0 0 16px;
    font-size: 15px;
    color: var(--cl-text);
}
.steps-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.step-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.step-number {
    width: 32px;
    height: 32px;
    background: var(--cl-accent, #f0c844);
    color: #1a1a24;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
}
.step-content { flex: 1; }
.step-title {
    font-weight: 600;
    color: var(--cl-text);
    margin-bottom: 4px;
    font-size: 14px;
}
.step-desc {
    font-size: 13px;
    color: var(--cl-text-muted);
    line-height: 1.6;
}

/* Widget: Pros/Cons */
.widget-proscons {
    background: var(--cl-card);
    border-color: var(--cl-border);
}
.widget-proscons .widget-header {
    color: var(--cl-text);
    font-size: 15px;
}
.proscons-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--cl-border);
}
.proscons-column {
    padding: 18px;
}
.proscons-column.pros {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.08) 0%, rgba(56, 142, 60, 0.04) 100%);
}
.proscons-column.cons {
    background: linear-gradient(135deg, rgba(244, 67, 54, 0.08) 0%, rgba(211, 47, 47, 0.04) 100%);
}
.proscons-header {
    font-size: 14px;
    font-weight: 600;
    color: var(--cl-text);
    margin-bottom: 12px;
}
.proscons-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.proscons-column li {
    padding: 8px 0;
    color: var(--cl-text-muted);
    font-size: 13px;
    line-height: 1.5;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.proscons-column li:last-child { border: none; }

/* Widget: Feature */
.widget-feature {
    background: var(--cl-card);
    border-color: var(--cl-border);
    text-align: center;
    padding: 24px;
}
.widget-feature .widget-icon-large {
    font-size: 40px;
    margin-bottom: 12px;
}
.widget-feature .widget-header {
    justify-content: center;
    padding: 0 0 8px;
}
.widget-feature .widget-body {
    padding: 0;
    text-align: center;
}

@media (max-width: 768px) {
    .content-widget {
        margin: 16px 0;
    }
    .content-widget .widget-header {
        padding: 12px 14px;
        font-size: 13px;
    }
    .content-widget .widget-body {
        padding: 14px;
        font-size: 13px;
    }
    .proscons-grid {
        grid-template-columns: 1fr;
    }
    .step-item {
        gap: 12px;
    }
    .step-number {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }
}
