/* =============================================
   METRIC TOOLKIT — SHORTCODES CSS
   ============================================= */

/* === CARD SOLO (horizontal) === */
.sc-card-solo {
    display: flex; border: 1px solid var(--border, #e5e7eb); border-radius: 12px;
    overflow: hidden; margin: 1.5rem 0; background: var(--card, #fff);
    transition: box-shadow .2s; text-decoration: none; color: inherit;
}
.sc-card-solo:hover { box-shadow: 0 2px 8px rgba(0,0,0,.06); }
.sc-card-solo-noimage { background: var(--muted, #f3f4f6); }
.sc-card-solo-image { width: 220px; min-height: 160px; flex-shrink: 0; overflow: hidden; background: var(--muted, #f3f4f6); }
.sc-card-solo-image img { width: 100%; height: 100%; object-fit: cover; }
.sc-card-solo-body { padding: 1.25rem 1.5rem; display: flex; flex-direction: column; justify-content: center; }
.sc-card-solo-tag { font-size: 11px; font-weight: 600; color: var(--sc-accent, #6366f1); text-transform: uppercase; letter-spacing: .5px; margin-bottom: 4px; }
.sc-card-solo-title { font-size: 1rem; font-weight: 700; color: var(--foreground, #1e293b); margin: 0 0 8px; line-height: 1.4; }
.sc-card-solo-excerpt { font-size: 14px; color: var(--muted-foreground, #6b7280); line-height: 1.5; margin: 0 0 12px; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.sc-card-solo-cta { font-size: 14px; font-weight: 600; color: var(--sc-accent, #6366f1); }

/* === CARD FEATURED (border-left) === */
.sc-card-featured {
    display: flex; gap: 20px; padding: 24px; background: #fff;
    border-left: 4px solid var(--sc-accent, #6366f1); border-radius: 0 12px 12px 0;
    box-shadow: 0 1px 4px rgba(0,0,0,.06); margin: 1.5rem 0;
    text-decoration: none; color: inherit; transition: box-shadow .2s;
}
.sc-card-featured:hover { box-shadow: 0 4px 12px rgba(0,0,0,.08); }
.sc-card-featured-img { width: 180px; height: 120px; border-radius: 8px; overflow: hidden; flex-shrink: 0; background: #f1f5f9; }
.sc-card-featured-img img { width: 100%; height: 100%; object-fit: cover; }
.sc-card-featured-body { flex: 1; display: flex; flex-direction: column; justify-content: center; }
.sc-card-featured-label {
    display: inline-flex; align-items: center; gap: 4px; font-size: 11px; font-weight: 600;
    color: var(--sc-accent, #6366f1); background: color-mix(in srgb, var(--theme-palette-color-1, #2872fa) 8%, transparent);
    padding: 2px 8px; border-radius: 4px; margin-bottom: 8px; width: fit-content;
    text-transform: uppercase; letter-spacing: .5px;
}
.sc-card-featured-label svg { width: 12px; height: 12px; }
.sc-card-featured-title { font-size: 17px; font-weight: 700; color: #1e293b; line-height: 1.35; margin: 0 0 6px; }
.sc-card-featured-excerpt { font-size: 14px; color: #64748b; line-height: 1.5; margin: 0 0 10px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.sc-card-featured-meta { font-size: 12px; color: #94a3b8; }

/* === CARDS GRID (vertical) === */
.sc-cards-grid {
    display: grid; grid-template-columns: repeat(var(--sc-cols, 3), 1fr);
    gap: 1.25rem; margin: 1.5rem 0;
}
.sc-grid-card {
    border: 1px solid #e5e7eb; border-radius: 12px; overflow: hidden;
    background: #fff; text-decoration: none; color: inherit; transition: box-shadow .2s;
}
.sc-grid-card:hover { box-shadow: 0 2px 8px rgba(0,0,0,.06); }
.sc-grid-card-img { height: 160px; overflow: hidden; background: #f3f4f6; }
.sc-grid-card-img img { width: 100%; height: 100%; object-fit: cover; }
.sc-grid-card-body { padding: 16px; }
.sc-grid-card-tag { font-size: 11px; font-weight: 600; color: var(--sc-accent, #6366f1); text-transform: uppercase; letter-spacing: .5px; margin-bottom: 4px; display: block; }
.sc-grid-card-title { font-size: 15px; font-weight: 700; color: #1e293b; line-height: 1.4; margin: 0 0 8px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.sc-grid-card-excerpt { font-size: 13px; color: #6b7280; line-height: 1.4; margin: 0; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

/* === CARDS COMPACT (2-col) === */
.sc-cards-compact {
    display: grid; grid-template-columns: repeat(var(--sc-cols, 2), 1fr);
    gap: 12px; margin: 1.5rem 0;
}
.sc-compact-card {
    display: flex; gap: 12px; padding: 12px; background: #fff;
    border: 1px solid #e2e8f0; border-radius: 10px; align-items: center;
    text-decoration: none; color: inherit; transition: border-color .15s, box-shadow .15s;
}
.sc-compact-card:hover { border-color: var(--sc-accent, #6366f1); box-shadow: 0 2px 8px color-mix(in srgb, var(--theme-palette-color-1, #2872fa) 10%, transparent); }
.sc-compact-card-img { width: 72px; height: 54px; border-radius: 6px; overflow: hidden; flex-shrink: 0; background: #f1f5f9; }
.sc-compact-card-img img { width: 100%; height: 100%; object-fit: cover; }
.sc-compact-card-info { flex: 1; min-width: 0; }
.sc-compact-card-tag { font-size: 10px; font-weight: 600; color: var(--sc-accent, #6366f1); text-transform: uppercase; letter-spacing: .3px; display: block; }
.sc-compact-card-title { font-size: 13px; font-weight: 600; color: #1e293b; line-height: 1.3; margin: 2px 0 0; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

/* === LIST MINIMAL === */
.sc-list-minimal { background: #fff; border: 1px solid #e2e8f0; border-radius: 12px; overflow: hidden; margin: 1.5rem 0; }
.sc-list-header { padding: 14px 20px; border-bottom: 1px solid #f1f5f9; }
.sc-list-header h3 { font-size: 14px; font-weight: 700; color: #1e293b; margin: 0; text-transform: uppercase; letter-spacing: .5px; }
.sc-list-item {
    display: flex; gap: 14px; padding: 14px 20px; border-bottom: 1px solid #f1f5f9;
    align-items: center; text-decoration: none; color: inherit; transition: background .15s;
}
.sc-list-item:last-child { border-bottom: none; }
.sc-list-item:hover { background: #f8fafc; }
.sc-list-item-img { width: 64px; height: 48px; border-radius: 6px; overflow: hidden; flex-shrink: 0; background: #f1f5f9; }
.sc-list-item-img img { width: 100%; height: 100%; object-fit: cover; }
.sc-list-item-info { flex: 1; min-width: 0; }
.sc-list-item-tag { font-size: 11px; font-weight: 600; color: var(--sc-accent, #6366f1); text-transform: uppercase; letter-spacing: .3px; display: block; }
.sc-list-item-title { font-size: 14px; font-weight: 600; color: #1e293b; line-height: 1.3; margin: 2px 0 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sc-list-item-arrow { color: #94a3b8; flex-shrink: 0; transition: transform .15s, color .15s; }
.sc-list-item:hover .sc-list-item-arrow { transform: translateX(3px); color: var(--sc-accent, #6366f1); }

/* === LIST NUMBERED === */
.sc-list-numbered { margin: 1.5rem 0; }
.sc-list-numbered .sc-list-header { padding: 0 0 12px; border-bottom: none; }
.sc-numbered-item {
    display: flex; gap: 14px; padding: 14px 0; border-bottom: 1px solid #f1f5f9;
    align-items: flex-start; text-decoration: none; color: inherit;
}
.sc-numbered-item:last-child { border-bottom: none; }
.sc-numbered-num {
    width: 32px; height: 32px; border-radius: 8px;
    background: color-mix(in srgb, var(--theme-palette-color-1, #2872fa) 8%, transparent); color: var(--sc-accent, #6366f1);
    font-size: 14px; font-weight: 700; display: flex; align-items: center;
    justify-content: center; flex-shrink: 0;
}
.sc-numbered-img { width: 80px; height: 56px; border-radius: 6px; overflow: hidden; flex-shrink: 0; background: #f1f5f9; }
.sc-numbered-img img { width: 100%; height: 100%; object-fit: cover; }
.sc-numbered-info { flex: 1; min-width: 0; }
.sc-numbered-tag { font-size: 11px; font-weight: 600; color: var(--sc-accent, #6366f1); display: block; }
.sc-numbered-title { font-size: 15px; font-weight: 600; color: #1e293b; line-height: 1.35; margin: 2px 0 4px; }
.sc-numbered-excerpt { font-size: 13px; color: #94a3b8; line-height: 1.4; margin: 0; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; overflow: hidden; }

/* =============================================
   APP CARDS
   ============================================= */

.sc-app-badges { display: flex; gap: 8px; flex-wrap: wrap; }
.sc-app-badges a { display: inline-flex; text-decoration: none; transition: opacity .2s; }
.sc-app-badges a:hover { opacity: .8; }
.sc-app-badges img { height: 40px; width: auto; }
.sc-app-icon { border-radius: 16px; flex-shrink: 0; overflow: hidden; display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 700; }
.sc-app-icon img { width: 100%; height: 100%; object-fit: cover; }
.sc-app-icon-sm { width: 48px; height: 48px; font-size: 18px; border-radius: 12px; }
.sc-app-icon-md { width: 56px; height: 56px; font-size: 20px; }
.sc-app-icon-lg { width: 80px; height: 80px; font-size: 32px; }
.sc-app-icon-xl { width: 100px; height: 100px; font-size: 36px; border-radius: 20px; }
.sc-app-name { font-size: 18px; font-weight: 700; color: #1e293b; margin: 0; }
.sc-app-desc { font-size: 14px; color: #64748b; line-height: 1.4; margin: 0 0 14px; }
.sc-app-cat { font-size: 11px; font-weight: 600; color: #6366f1; text-transform: uppercase; letter-spacing: .5px; display: block; margin-bottom: 4px; }
.sc-app-meta-text { font-size: 12px; color: #94a3b8; margin: 4px 0 0; }
.sc-app-rating { display: flex; align-items: center; gap: 2px; margin: 6px 0 10px; }
.sc-app-rating span { font-size: 13px; font-weight: 600; color: #f59e0b; margin-left: 4px; }

/* Vertical */
.sc-app-vertical {
    text-align: center; padding: 32px 24px; background: #fff;
    border: 1px solid #e2e8f0; border-radius: 16px; margin: 1.5rem 0;
    max-width: 340px;
}
.sc-app-vertical .sc-app-icon { margin: 0 auto 16px; }
.sc-app-vertical .sc-app-name { margin-bottom: 4px; }
.sc-app-vertical .sc-app-rating { justify-content: center; }
.sc-app-vertical .sc-app-badges { justify-content: center; }

/* Side by Side */
.sc-app-sidebyside {
    display: flex; gap: 20px; padding: 20px; background: #fff;
    border: 1px solid #e2e8f0; border-radius: 12px; margin: 1.5rem 0;
}
.sc-app-sidebyside-info { flex: 1; display: flex; flex-direction: column; justify-content: space-between; }

/* Inline (in list) */
.sc-app-inline {
    display: flex; gap: 12px; padding: 14px 0; border-bottom: 1px solid #f1f5f9;
    align-items: center;
}
.sc-app-inline:last-child { border-bottom: none; }
.sc-app-inline-info { flex: 1; min-width: 0; }
.sc-app-inline .sc-app-name { font-size: 15px; }
.sc-app-inline-desc { font-size: 13px; color: #94a3b8; margin: 2px 0 0; }
.sc-app-inline .sc-app-badges img { height: 28px; }

/* Banner */
.sc-app-banner {
    display: flex; gap: 24px; padding: 20px 24px; background: #fff;
    border: 2px solid #e2e8f0; border-radius: 12px; margin: 1.5rem 0;
    align-items: center; justify-content: space-between;
}
.sc-app-banner-left { display: flex; gap: 14px; align-items: center; flex: 1; }
.sc-app-banner .sc-app-name { font-size: 16px; margin-bottom: 2px; }
.sc-app-banner-desc { font-size: 13px; color: #64748b; margin: 0; }

/* App List Wrap */
.sc-app-list-wrap {
    background: #fff; border: 1px solid #e2e8f0; border-radius: 12px;
    padding: 4px 20px; margin: 1.5rem 0; overflow: hidden;
}
.sc-app-list-header { padding: 14px 0; border-bottom: 1px solid #f1f5f9; }
.sc-app-list-header h3 { font-size: 14px; font-weight: 700; color: #1e293b; margin: 0; text-transform: uppercase; letter-spacing: .5px; }

/* =============================================
   CONTENT BLOCKS (button, callout, benefits)
   ============================================= */

.sc-button-wrap { margin: 1.5rem auto; max-width: 400px; text-align: center; }
.sc-button-wrap:has(.sc-button-full) { max-width: none; }
.sc-button { display: block; width: 100%; padding: 14px 24px; color: #fff; font-size: 16px; font-weight: 600; border-radius: 8px; text-decoration: none; text-align: center; transition: filter .2s; box-sizing: border-box; }
.sc-button:hover { filter: brightness(1.1); color: #fff; }
.sc-button-green { background: #16a34a; } .sc-button-purple { background: #7c3aed; }
.sc-button-blue { background: var(--theme-palette-color-1, #2872fa); } .sc-button-orange { background: #f97316; }

.sc-callout { border-left: 4px solid #3b82f6; background: #f8fafc; border-radius: 0 8px 8px 0; padding: 1rem 1.25rem; margin: 1.5rem 0; }
.sc-callout-tip { border-left-color: #16a34a; } .sc-callout-warning { border-left-color: #f59e0b; } .sc-callout-info { border-left-color: #3b82f6; }
.sc-callout-header { display: flex; align-items: center; gap: 6px; margin-bottom: 6px; }
.sc-callout-icon { line-height: 0; display: flex; align-items: center; }
.sc-callout-label { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; }
.sc-callout-tip .sc-callout-label, .sc-callout-tip .sc-callout-icon { color: #16a34a; }
.sc-callout-warning .sc-callout-label, .sc-callout-warning .sc-callout-icon { color: #f59e0b; }
.sc-callout-info .sc-callout-label, .sc-callout-info .sc-callout-icon { color: #3b82f6; }
.sc-callout-body { font-size: 15px; color: #374151; line-height: 1.6; }
.sc-callout-body p { margin: 0; }

.sc-benefits-a { background: var(--card, #fff); border: 1px solid var(--border, #e5e7eb); border-radius: 12px; overflow: hidden; margin: 1.5rem 0; }
.sc-benefits-a-header { padding: 16px 20px; border-bottom: 1px solid var(--border, #e5e7eb); }
.sc-benefits-a-header h3 { font-size: 16px; font-weight: 600; color: var(--foreground, #1d2327); margin: 0; }
.sc-benefits-a-grid { display: grid; grid-template-columns: repeat(2, 1fr); padding: 12px 20px; }
.sc-benefits-a-item { display: flex; align-items: flex-start; gap: 10px; padding: 10px 0; font-size: 15px; color: #374151; }
.sc-benefits-a-check { color: #16a34a; flex-shrink: 0; display: flex; align-items: center; line-height: 0; margin-top: 2px; }
.sc-benefits-b { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin: 1.5rem 0; }
.sc-benefits-b-card { background: var(--card, #fff); border: 1px solid var(--border, #e5e7eb); border-radius: 12px; padding: 1.25rem; }
.sc-benefits-b-icon { width: 32px; height: 32px; border-radius: 8px; background: #16a34a; color: #fff; display: flex; align-items: center; justify-content: center; margin-bottom: 10px; }
.sc-benefits-b-card h4 { font-size: 15px; font-weight: 600; color: var(--foreground, #1d2327); margin: 0 0 4px; }
.sc-benefits-b-card p { font-size: 14px; color: var(--muted-foreground, #6b7280); line-height: 1.5; margin: 0; }

/* =============================================
   CTA BUTTON COMPONENT (mtk_cta_btn)
   ============================================= */
.sc-ctabtn {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    padding: 14px 24px; font-size: 14px; font-weight: 600;
    border-radius: 8px; text-decoration: none; transition: all .2s;
    box-sizing: border-box; line-height: 1.2;
}
.sc-ctabtn:hover { transform: translateY(-1px); }

/* Variants */
.sc-ctabtn-primary { color: #fff; }
.sc-ctabtn-primary.sc-ctabtn-color-blue { background: var(--theme-palette-color-1, #2872fa); }
.sc-ctabtn-primary.sc-ctabtn-color-blue:hover { background: var(--theme-palette-color-2, #1559ed); color: #fff; }
.sc-ctabtn-primary.sc-ctabtn-color-green { background: #16a34a; }
.sc-ctabtn-primary.sc-ctabtn-color-green:hover { background: #15803d; color: #fff; }
.sc-ctabtn-primary.sc-ctabtn-color-purple { background: #7c3aed; }
.sc-ctabtn-primary.sc-ctabtn-color-purple:hover { background: #6d28d9; color: #fff; }
.sc-ctabtn-primary.sc-ctabtn-color-orange { background: #f97316; }
.sc-ctabtn-primary.sc-ctabtn-color-orange:hover { background: #ea580c; color: #fff; }
.sc-ctabtn-primary.sc-ctabtn-color-dark { background: #1e293b; }
.sc-ctabtn-primary.sc-ctabtn-color-dark:hover { background: #0f172a; color: #fff; }

.sc-ctabtn-secondary { background: #f1f5f9; color: #475569; }
.sc-ctabtn-secondary:hover { background: #e2e8f0; color: #1e293b; }

.sc-ctabtn-outline { background: transparent; border: 1.5px solid #e2e8f0; color: #475569; }
.sc-ctabtn-outline:hover { color: #1e293b; }
.sc-ctabtn-outline.sc-ctabtn-color-blue:hover { border-color: var(--theme-palette-color-1, #2872fa); color: var(--theme-palette-color-1, #2872fa); }
.sc-ctabtn-outline.sc-ctabtn-color-green:hover { border-color: #16a34a; color: #16a34a; }
.sc-ctabtn-outline.sc-ctabtn-color-purple:hover { border-color: #7c3aed; color: #7c3aed; }
.sc-ctabtn-outline.sc-ctabtn-color-orange:hover { border-color: #f97316; color: #f97316; }
.sc-ctabtn-outline.sc-ctabtn-color-dark:hover { border-color: #1e293b; color: #1e293b; }

.sc-ctabtn-ghost { background: transparent; color: #64748b; }
.sc-ctabtn-ghost:hover { color: var(--theme-palette-color-1, #2872fa); transform: none; }
.sc-ctabtn-ghost.sc-ctabtn-color-green:hover { color: #16a34a; }
.sc-ctabtn-ghost.sc-ctabtn-color-purple:hover { color: #7c3aed; }
.sc-ctabtn-ghost.sc-ctabtn-color-orange:hover { color: #f97316; }
.sc-ctabtn-ghost.sc-ctabtn-color-dark:hover { color: #1e293b; }

/* =============================================
   CTA SPLIT (text left + button right)
   ============================================= */
.sc-cta-split {
    display: flex; align-items: center; justify-content: space-between;
    gap: 24px; padding: 20px 28px; background: #fff;
    border: 1px solid #e2e8f0; border-radius: 12px; margin: 1.5rem 0;
}
.sc-cta-split-text { flex: 1; min-width: 0; }
.sc-cta-split-text h4 { font-size: 16px; font-weight: 700; color: #1e293b; margin: 0 0 2px; }
.sc-cta-split-text p { font-size: 13px; color: #64748b; margin: 0; }
.sc-cta-split-btn {
    display: inline-flex; align-items: center; gap: 8px; padding: 10px 24px;
    color: #fff; font-size: 14px; font-weight: 600; border-radius: 8px;
    white-space: nowrap; flex-shrink: 0; transition: all .2s; text-decoration: none;
}
.sc-cta-split-btn.sc-ctabtn-color-blue { background: var(--theme-palette-color-1, #2872fa); }
.sc-cta-split-btn.sc-ctabtn-color-blue:hover { background: var(--theme-palette-color-2, #1559ed); color: #fff; }
.sc-cta-split-btn.sc-ctabtn-color-green { background: #16a34a; }
.sc-cta-split-btn.sc-ctabtn-color-green:hover { background: #15803d; color: #fff; }
.sc-cta-split-btn.sc-ctabtn-color-purple { background: #7c3aed; }
.sc-cta-split-btn.sc-ctabtn-color-purple:hover { background: #6d28d9; color: #fff; }
.sc-cta-split-btn.sc-ctabtn-color-orange { background: #f97316; }
.sc-cta-split-btn.sc-ctabtn-color-orange:hover { background: #ea580c; color: #fff; }
.sc-cta-split-btn.sc-ctabtn-color-dark { background: #1e293b; }
.sc-cta-split-btn.sc-ctabtn-color-dark:hover { background: #0f172a; color: #fff; }

/* =============================================
   CTA BADGE (pill with dot)
   ============================================= */
.sc-cta-badge-wrap { display: flex; justify-content: center; margin: 1.5rem 0; }
.sc-cta-badge {
    display: inline-flex; align-items: center; gap: 16px;
    padding: 10px 12px 10px 20px; background: #fff;
    border: 2px solid #e2e8f0; border-radius: 50px;
    transition: all .2s; text-decoration: none;
}
.sc-cta-badge:hover { box-shadow: 0 4px 16px rgba(0,0,0,.08); }
.sc-cta-badge-blue:hover { border-color: var(--theme-palette-color-1, #2872fa); }
.sc-cta-badge-green:hover { border-color: #16a34a; }
.sc-cta-badge-purple:hover { border-color: #7c3aed; }
.sc-cta-badge-orange:hover { border-color: #f97316; }
.sc-cta-badge-dot {
    width: 8px; height: 8px; background: #16a34a; border-radius: 50%;
    animation: sc-cta-pulse 2s infinite;
}
@keyframes sc-cta-pulse { 0%, 100% { opacity: 1; } 50% { opacity: .4; } }
.sc-cta-badge-text { font-size: 14px; font-weight: 600; color: #1e293b; }
.sc-cta-badge-btn { padding: 8px 20px; color: #fff; font-size: 13px; font-weight: 600; border-radius: 50px; }
.sc-cta-badge-blue .sc-cta-badge-btn { background: var(--theme-palette-color-1, #2872fa); }
.sc-cta-badge-blue:hover .sc-cta-badge-btn { background: var(--theme-palette-color-2, #1559ed); }
.sc-cta-badge-green .sc-cta-badge-btn { background: #16a34a; }
.sc-cta-badge-green:hover .sc-cta-badge-btn { background: #15803d; }
.sc-cta-badge-purple .sc-cta-badge-btn { background: #7c3aed; }
.sc-cta-badge-purple:hover .sc-cta-badge-btn { background: #6d28d9; }
.sc-cta-badge-orange .sc-cta-badge-btn { background: #f97316; }
.sc-cta-badge-orange:hover .sc-cta-badge-btn { background: #ea580c; }

/* =============================================
   CTA NOTIFICATION (alert style)
   ============================================= */
.sc-cta-notification {
    display: flex; align-items: center; gap: 16px;
    padding: 16px 20px; border: 1px solid; border-left-width: 4px;
    border-radius: 0 12px 12px 0; margin: 1.5rem 0;
}
.sc-cta-notif-warning { background: #fffbeb; border-color: #fde68a; border-left-color: #f59e0b; }
.sc-cta-notif-warning .sc-cta-notif-icon { color: #f59e0b; }
.sc-cta-notif-warning .sc-cta-notif-body h4 { color: #92400e; }
.sc-cta-notif-warning .sc-cta-notif-body p { color: #a16207; }
.sc-cta-notif-warning .sc-cta-notif-btn { background: #f59e0b; }
.sc-cta-notif-warning .sc-cta-notif-btn:hover { background: #d97706; }

.sc-cta-notif-info { background: color-mix(in srgb, var(--theme-palette-color-1, #2872fa) 6%, transparent); border-color: color-mix(in srgb, var(--theme-palette-color-1, #2872fa) 25%, transparent); border-left-color: var(--theme-palette-color-1, #2872fa); }
.sc-cta-notif-info .sc-cta-notif-icon { color: var(--theme-palette-color-1, #2872fa); }
.sc-cta-notif-info .sc-cta-notif-body h4 { color: #1e3a8a; }
.sc-cta-notif-info .sc-cta-notif-body p { color: var(--theme-palette-color-2, #1559ed); }
.sc-cta-notif-info .sc-cta-notif-btn { background: var(--theme-palette-color-1, #2872fa); }
.sc-cta-notif-info .sc-cta-notif-btn:hover { background: var(--theme-palette-color-2, #1559ed); }

.sc-cta-notif-success { background: #f0fdf4; border-color: #bbf7d0; border-left-color: #16a34a; }
.sc-cta-notif-success .sc-cta-notif-icon { color: #16a34a; }
.sc-cta-notif-success .sc-cta-notif-body h4 { color: #14532d; }
.sc-cta-notif-success .sc-cta-notif-body p { color: #166534; }
.sc-cta-notif-success .sc-cta-notif-btn { background: #16a34a; }
.sc-cta-notif-success .sc-cta-notif-btn:hover { background: #15803d; }

.sc-cta-notif-danger { background: #fef2f2; border-color: #fecaca; border-left-color: #dc2626; }
.sc-cta-notif-danger .sc-cta-notif-icon { color: #dc2626; }
.sc-cta-notif-danger .sc-cta-notif-body h4 { color: #7f1d1d; }
.sc-cta-notif-danger .sc-cta-notif-body p { color: #991b1b; }
.sc-cta-notif-danger .sc-cta-notif-btn { background: #dc2626; }
.sc-cta-notif-danger .sc-cta-notif-btn:hover { background: #b91c1c; }

.sc-cta-notif-icon { flex-shrink: 0; display: flex; align-items: center; }
.sc-cta-notif-body { flex: 1; min-width: 0; }
.sc-cta-notif-body h4 { font-size: 14px; font-weight: 700; margin: 0 0 2px; }
.sc-cta-notif-body p { font-size: 13px; margin: 0; line-height: 1.4; }
.sc-cta-notif-btn {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 8px 18px; color: #fff; font-size: 13px; font-weight: 600;
    border-radius: 6px; white-space: nowrap; flex-shrink: 0;
    transition: background .2s; text-decoration: none;
}

/* =============================================
   CTA BOX (centered card with title + buttons)
   ============================================= */
.sc-cta-box {
    background: #fff; border: 1px solid #e2e8f0;
    border-radius: 16px; padding: 32px 28px; margin: 1.5rem 0;
}
.sc-cta-box-center { text-align: center; }
.sc-cta-box-title {
    font-size: 20px; font-weight: 800; color: #1e293b;
    margin: 0 0 6px; line-height: 1.3;
}
.sc-cta-box-desc {
    font-size: 14px; color: #64748b;
    margin: 0 0 20px; line-height: 1.5;
}
.sc-cta-box-btns {
    display: flex; flex-direction: column; gap: 8px;
    max-width: 380px; margin: 0 auto;
}
.sc-cta-box-left { text-align: left; }
.sc-cta-box-left .sc-cta-box-btns { margin: 0; max-width: none; }

/* =============================================
   BUTTON STACK (just stacked buttons)
   ============================================= */
.sc-btn-stack {
    display: flex; flex-direction: column; gap: 8px;
    margin: 1.5rem auto;
}

/* =============================================
   CTA LIST (list of options with icons)
   ============================================= */
.sc-cta-list {
    background: #fff; border: 1px solid #e2e8f0;
    border-radius: 12px; overflow: hidden; margin: 1.5rem 0;
}
.sc-cta-list-header {
    padding: 20px 24px; text-align: center;
    border-bottom: 1px solid #f1f5f9;
}
.sc-cta-list-header h3 {
    font-size: 16px; font-weight: 700; color: #1e293b; margin: 0 0 4px;
}
.sc-cta-list-header p {
    font-size: 13px; color: #94a3b8; margin: 0;
}
.sc-cta-list-item {
    display: flex; align-items: center; gap: 16px;
    padding: 18px 24px; border-bottom: 1px solid #f1f5f9;
    text-decoration: none; transition: background .15s;
}
.sc-cta-list-item:last-child { border-bottom: none; }
.sc-cta-list-item:hover { background: #f8fafc; }
.sc-cta-list-icon {
    width: 44px; height: 44px; border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.sc-icon-blue { background: color-mix(in srgb, var(--theme-palette-color-1, #2872fa) 15%, transparent); color: var(--theme-palette-color-1, #2872fa); }
.sc-icon-green { background: #dcfce7; color: #16a34a; }
.sc-icon-purple { background: #ede9fe; color: #7c3aed; }
.sc-icon-orange { background: #ffedd5; color: #f97316; }
.sc-icon-rose { background: #ffe4e6; color: #e11d48; }
.sc-icon-teal { background: #ccfbf1; color: #0d9488; }
.sc-icon-amber { background: #fef3c7; color: #d97706; }
.sc-cta-list-info { flex: 1; min-width: 0; }
.sc-cta-list-info h4 {
    font-size: 15px; font-weight: 600; color: #1e293b; margin: 0 0 2px;
}
.sc-cta-list-info p {
    font-size: 12px; color: #94a3b8; margin: 0;
}
.sc-cta-list-arr {
    color: #94a3b8; flex-shrink: 0; transition: all .15s;
    display: flex; align-items: center;
}
.sc-cta-list-item:hover .sc-cta-list-arr { color: var(--theme-palette-color-1, #2872fa); transform: translateX(3px); }

/* =============================================
   SITE BLOCKS — Hero Editorial
   ============================================= */
.sc-hero-editorial {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 16px;
    margin: 1.5rem 0;
    min-height: 480px;
}
.sc-hero-sidebar-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.sc-hero-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    color: #fff;
    display: block;
    transition: transform .2s;
}
.sc-hero-card:hover {
    color: #fff;
    transform: translateY(-2px);
}
.sc-hero-featured { min-height: 480px; }
.sc-hero-side {
    flex: 1;
    min-height: 0;
}
.sc-hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform .4s ease;
    display: block;
}
.sc-hero-card:hover .sc-hero-bg { transform: scale(1.04); }
.sc-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.85) 0%, rgba(0,0,0,.4) 50%, rgba(0,0,0,.2) 100%);
}
.sc-hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.sc-hero-featured .sc-hero-content { padding: 32px; }
.sc-hero-pill {
    display: inline-flex;
    align-self: flex-start;
    background: rgba(255, 255, 255, 0.95);
    color: #192a3d;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    backdrop-filter: blur(4px);
}
.sc-hero-bottom { color: #fff; }
.sc-hero-title {
    color: #fff;
    margin: 0 0 8px;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.01em;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.sc-hero-featured .sc-hero-title {
    font-size: 26px;
    line-height: 1.25;
    letter-spacing: -0.02em;
    -webkit-line-clamp: 2;
    margin-bottom: 10px;
}
.sc-hero-excerpt {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    line-height: 1.5;
    margin: 0 0 14px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.sc-hero-meta {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.85);
}
.sc-hero-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
.sc-hero-meta-item svg {
    opacity: 0.7;
    flex-shrink: 0;
}
.sc-hero-meta-author {
    font-weight: 600;
    color: #fff;
}
.sc-hero-featured .sc-hero-meta { font-size: 13px; }

@media (max-width: 768px) {
    .sc-hero-editorial {
        grid-template-columns: 1fr;
        min-height: 0;
    }
    .sc-hero-featured { min-height: 360px; }
    .sc-hero-side { min-height: 220px; }
    .sc-hero-featured .sc-hero-title { font-size: 22px; }
    .sc-hero-featured .sc-hero-content { padding: 24px; }
}

/* =============================================
   SITE BLOCKS — Author Hero (pagina de autor)
   ============================================= */
.sc-author-hero {
    display: grid;
    grid-template-columns: 96px 1fr;
    gap: 28px;
    padding: 0 0 32px;
    border-bottom: 1px solid #e1e8ed;
    margin: 0 0 40px;
    align-items: flex-start;
}
.sc-author-hero-avatar {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    overflow: hidden;
    background: #f2f5f7;
    flex-shrink: 0;
}
.sc-author-hero-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.sc-author-hero-info { min-width: 0; }
.sc-author-hero-eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: var(--theme-palette-color-1, #2872fa);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
}
.sc-author-hero-name {
    font-size: 32px;
    font-weight: 800;
    color: #192a3d;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin: 0 0 4px;
}
.sc-author-hero-meta {
    font-size: 13px;
    color: #5b6c80;
    margin: 0 0 16px;
}
.sc-author-hero-bio {
    font-size: 16px;
    color: #3A4F66;
    line-height: 1.6;
    margin: 0 0 18px;
    max-width: 620px;
}
.sc-author-hero-socials {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.sc-author-hero-social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: #f2f5f7;
    color: #3A4F66;
    transition: all .15s;
    text-decoration: none;
}
.sc-author-hero-social:hover {
    background: var(--theme-palette-color-1, #2872fa);
    color: #fff;
}
@media (max-width: 768px) {
    .sc-author-hero {
        grid-template-columns: 80px 1fr;
        gap: 20px;
    }
    .sc-author-hero-avatar { width: 80px; height: 80px; }
    .sc-author-hero-name { font-size: 24px; }
    .sc-author-hero-bio { font-size: 15px; }
}
@media (max-width: 480px) {
    .sc-author-hero {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .sc-author-hero-avatar { margin: 0 auto; }
    .sc-author-hero-socials { justify-content: center; }
}

/* =============================================
   SITE BLOCKS — Posts with Author (split layout)
   ============================================= */
.sc-pwa-wrap {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 32px;
    margin: 1.5rem 0;
    align-items: flex-start;
}
.sc-pwa-posts { min-width: 0; }
.sc-pwa-posts .sc-posts-grid { margin: 0; }
.sc-pwa-sidebar {
    position: sticky;
    top: 96px;
}

.sc-pwa-author-card {
    background: #fff;
    border-radius: 16px;
    padding: 28px 24px;
    text-align: left;
    box-shadow:
        0 1px 2px rgba(15, 23, 42, 0.04),
        0 4px 16px rgba(15, 23, 42, 0.04);
}
.sc-pwa-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 16px;
    background: #f2f5f7;
}
.sc-pwa-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.sc-pwa-name {
    font-size: 17px;
    font-weight: 700;
    color: #192a3d;
    margin: 0 0 4px;
    line-height: 1.3;
}
.sc-pwa-count {
    font-size: 12px;
    font-weight: 700;
    color: #1d4ed8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0 12px;
}
.sc-pwa-bio {
    font-size: 14px;
    color: #3A4F66;
    line-height: 1.55;
    margin: 0 0 18px;
}
.sc-pwa-socials {
    display: flex;
    gap: 8px;
    margin-bottom: 18px;
    flex-wrap: wrap;
}
.sc-pwa-social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: #f2f5f7;
    color: #3A4F66;
    transition: all .15s;
    text-decoration: none;
}
.sc-pwa-social:hover {
    background: var(--theme-palette-color-1, #2872fa);
    color: #fff;
}
.sc-pwa-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 18px;
    background: #192a3d;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: background .15s;
    width: 100%;
    justify-content: center;
    box-sizing: border-box;
}
.sc-pwa-cta:hover {
    background: var(--theme-palette-color-1, #2872fa);
    color: #fff;
}

@media (max-width: 1024px) {
    .sc-pwa-wrap { grid-template-columns: 1fr 240px; gap: 24px; }
}
@media (max-width: 768px) {
    .sc-pwa-wrap { grid-template-columns: 1fr; }
    .sc-pwa-sidebar { position: static; }
    .sc-pwa-author-card { padding: 24px; }
}

/* =============================================
   SITE BLOCKS — Categories Cards (editorial style)
   ============================================= */
.sc-cats-cards-eyebrow {
    font-size: 13px;
    font-weight: 500;
    color: #3A4F66;
    margin: 0 0 16px;
}
.sc-cats-cards {
    display: grid;
    gap: 16px;
    margin: 1.5rem 0;
}
.sc-cats-cards-cols-2 { grid-template-columns: repeat(2, 1fr); }
.sc-cats-cards-cols-3 { grid-template-columns: repeat(3, 1fr); }
.sc-cats-cards-cols-4 { grid-template-columns: repeat(4, 1fr); }
.sc-cats-cards-cols-5 { grid-template-columns: repeat(5, 1fr); }
.sc-cats-cards-cols-6 { grid-template-columns: repeat(6, 1fr); }

.sc-cats-card {
    display: flex;
    flex-direction: column;
    gap: 14px;
    background: #fff;
    border-radius: 12px;
    padding: 24px 20px;
    text-decoration: none;
    color: inherit;
    transition: box-shadow .2s, transform .2s;
}
.sc-cats-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    transform: translateY(-3px);
}
.sc-cats-cards-align-center .sc-cats-card { align-items: center; text-align: center; }
.sc-cats-cards-align-left .sc-cats-card { align-items: flex-start; text-align: left; }

.sc-cats-card-img {
    width: 72px;
    height: 72px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
    background: #f2f5f7;
}
.sc-cats-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.sc-cats-card-img-fallback {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -0.5px;
}
.sc-cats-card-body { flex: 1; min-width: 0; }
.sc-cats-card-title {
    font-size: 16px;
    font-weight: 700;
    color: #192a3d;
    margin: 0 0 6px;
    line-height: 1.3;
}
.sc-cats-card-desc {
    font-size: 13px;
    color: #3A4F66;
    line-height: 1.5;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* =============================================
   SITE BLOCKS — Posts Grid (magazine style)
   ============================================= */
.sc-posts-grid {
    display: grid;
    gap: 20px;
    margin: 1.5rem 0;
}
.sc-posts-grid-cols-1 { grid-template-columns: 1fr; }
.sc-posts-grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
.sc-posts-grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
.sc-posts-grid-cols-4 { grid-template-columns: repeat(4, 1fr); }

.sc-posts-card {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: transform .2s;
}
.sc-posts-card:hover { transform: translateY(-2px); color: inherit; }

.sc-posts-card-img-wrap {
    position: relative;
    aspect-ratio: var(--sc-aspect, 16/10);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 14px;
    background: #f2f5f7;
}
.sc-posts-card-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform .4s ease;
    display: block;
}
.sc-posts-card:hover .sc-posts-card-bg { transform: scale(1.05); }
.sc-posts-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.4) 0%, rgba(0,0,0,.05) 35%, rgba(0,0,0,0) 60%);
}
.sc-posts-card-pill {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    display: inline-flex;
    background: rgba(255, 255, 255, 0.95);
    color: #192a3d;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    backdrop-filter: blur(4px);
}

.sc-posts-card-body {
    padding: 0 4px;
}
.sc-posts-card-title {
    font-size: 17px;
    font-weight: 700;
    color: #192a3d;
    line-height: 1.35;
    letter-spacing: -0.01em;
    margin: 0 0 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color .15s;
}
.sc-posts-card:hover .sc-posts-card-title { color: var(--theme-palette-color-1, #2872fa); }
.sc-posts-card-meta {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    font-size: 12px;
    color: #5b6c80;
}
.sc-posts-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
.sc-posts-meta-item svg {
    opacity: 0.7;
    flex-shrink: 0;
}

@media (max-width: 1024px) {
    .sc-cats-cards-cols-4,
    .sc-cats-cards-cols-5,
    .sc-cats-cards-cols-6 { grid-template-columns: repeat(3, 1fr); }
    .sc-posts-grid-cols-3,
    .sc-posts-grid-cols-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    .sc-cats-cards { grid-template-columns: repeat(2, 1fr) !important; }
    .sc-posts-grid { grid-template-columns: 1fr !important; }
    .sc-cats-card-img { width: 56px; height: 56px; }
    .sc-cats-card { padding: 18px 16px; }
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 768px) {
    .sc-card-solo, .sc-card-featured, .sc-app-sidebyside { flex-direction: column; }
    .sc-card-solo-image { width: 100%; height: 180px; min-height: auto; }
    .sc-card-featured-img { width: 100%; height: 160px; }
    .sc-cards-grid { grid-template-columns: 1fr; }
    .sc-cards-compact { grid-template-columns: 1fr; }
    .sc-benefits-a-grid { grid-template-columns: 1fr; }
    .sc-benefits-b { grid-template-columns: repeat(2, 1fr); }
    .sc-app-banner { flex-direction: column; }
    .sc-app-banner-left { flex-direction: column; text-align: center; }
    .sc-app-banner .sc-app-badges { justify-content: center; }
    .sc-app-vertical { max-width: none; }
}
@media (max-width: 480px) {
    .sc-benefits-b { grid-template-columns: 1fr; }
    .sc-app-inline { flex-wrap: wrap; }
}
@media (max-width: 640px) {
    .sc-cta-split { flex-direction: column; text-align: center; padding: 20px; }
    .sc-cta-split-btn { width: 100%; }
    .sc-cta-badge { flex-direction: column; padding: 16px; border-radius: 16px; }
    .sc-cta-notification { flex-direction: column; text-align: center; }
    .sc-cta-notif-btn { width: 100%; justify-content: center; }
    .sc-cta-box-btns { max-width: none; }
    .sc-btn-stack { max-width: none !important; }
    .sc-cta-list-item { padding: 14px 16px; gap: 12px; }
    .sc-cta-list-icon { width: 36px; height: 36px; }

}

/* =============================================
   AFILIADO — lista / card de produto / comparador
   ============================================= */
.sc-aff-list, .sc-aff-product, .sc-aff-cmp { margin: 1.75rem 0; }
.sc-aff-list, .sc-aff-list *, .sc-aff-product, .sc-aff-product *,
.sc-aff-cmp, .sc-aff-cmp * { box-sizing: border-box; }
.sc-aff-secttl { font-size: 18px; font-weight: 700; color: var(--foreground, #1e293b); margin-bottom: 14px; }
.sc-aff-img { width: 100%; height: 100%; object-fit: contain; }
.sc-aff-ph { display: flex; align-items: center; justify-content: center;
    width: 100%; height: 100%; background: linear-gradient(135deg,#eef0f4,#dfe3ea);
    color: #9aa1ad; font-size: 10px; border-radius: 6px; }
.sc-aff-btn { background: #16a34a; color: #fff; border-radius: 7px;
    padding: 9px 18px; font-size: 13.5px; font-weight: 700; text-decoration: none;
    display: inline-block; text-align: center; white-space: nowrap; transition: background .15s; }
.sc-aff-btn:hover { background: #15803d; color: #fff; }
.sc-aff-tagl { color: var(--muted-foreground, #6b7280); font-size: 13.5px; }
.sc-aff-store { font-size: 11.5px; color: var(--muted-foreground, #6b7280); margin-top: 5px; }

/* ---- Lista (compacta densa) ---- */
.sc-aff-row { display: flex; align-items: center; gap: 12px;
    padding: 9px 6px; border-bottom: 1px solid var(--border, #e5e7eb); }
.sc-aff-row:last-child { border-bottom: 0; }
.sc-aff-thumb { width: 38px; height: 38px; flex-shrink: 0; }
.sc-aff-mid { flex: 1; min-width: 0; }
.sc-aff-row .sc-aff-name { font-size: 14px; font-weight: 700; color: var(--foreground,#1e293b); }
.sc-aff-row .sc-aff-tagl { font-size: 12px; }
.sc-aff-act { text-align: right; flex-shrink: 0; }
.sc-aff-act .sc-aff-btn { padding: 6px 14px; font-size: 12.5px; }
.sc-aff-act .sc-aff-store { text-align: right; white-space: nowrap; }

/* ---- Card de produto (imagem no topo) ---- */
.sc-aff-product { border: 1px solid var(--border,#e5e7eb); border-radius: 10px;
    padding: 22px; text-align: center; background: #fff; }
.sc-aff-badge-rank { width: 30px; height: 30px; margin: 0 auto 8px;
    background: #eef0f4; color: var(--muted-foreground,#6b7280); font-weight: 800;
    border-radius: 6px; display: flex; align-items: center; justify-content: center; font-size: 14px; }
.sc-aff-product .sc-aff-name { font-weight: 700; font-size: 18px; color: var(--foreground,#1e293b); }
.sc-aff-rate { display: inline-block; margin: 10px auto; background: #fff;
    border: 1px solid var(--border,#e5e7eb); border-radius: 30px; padding: 5px 12px;
    font-size: 13px; font-weight: 700; box-shadow: 0 1px 3px rgba(0,0,0,.06); }
.sc-aff-stars { color: #f5a623; letter-spacing: 1px; }
.sc-aff-figure { width: 100%; height: 180px; margin: 14px 0; }
.sc-aff-stores { border: 1px solid var(--border,#e5e7eb); border-radius: 7px;
    overflow: hidden; text-align: left; }
.sc-aff-srow { display: flex; align-items: center; justify-content: space-between;
    gap: 14px; padding: 10px 14px; border-bottom: 1px solid var(--border,#e5e7eb); }
.sc-aff-srow:last-child { border-bottom: 0; }
.sc-aff-slogo { font-weight: 800; font-size: 13px; color: var(--muted-foreground,#6b7280); }
.sc-aff-proscons { display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
    margin-top: 18px; text-align: left; }
.sc-aff-pc { border: 1px solid var(--border,#e5e7eb); border-radius: 7px; overflow: hidden; }
.sc-aff-pc h4 { font-size: 13px; padding: 9px 14px; margin: 0;
    background: var(--muted,#f8fafc); border-bottom: 1px solid var(--border,#e5e7eb); }
.sc-aff-pc ul { list-style: none; padding: 12px 14px; margin: 0; }
.sc-aff-pc li { font-size: 13.5px; padding: 4px 0 4px 22px; position: relative; }
.sc-aff-pros li::before { content: "✓"; color: #16a34a; position: absolute; left: 0; font-weight: 800; }
.sc-aff-cons li::before { content: "✕"; color: #dc2626; position: absolute; left: 0; font-weight: 800; }

/* ---- Comparador (scroll horizontal + vencedor) ---- */
.sc-aff-cmp-scroll { overflow-x: auto; }
.sc-aff-cmp table { border-collapse: collapse; min-width: 680px; width: 100%; font-size: 13.5px; }
.sc-aff-cmp td { border: 1px solid var(--border,#e5e7eb); padding: 12px;
    text-align: center; vertical-align: top; }
.sc-aff-cmp-thumb { display: block; width: 90px; height: 74px; margin: 0 auto 8px; }
.sc-aff-pcell b { display: block; margin: 4px 0; color: var(--foreground,#1e293b); }
.sc-aff-pcell .sc-aff-btn { padding: 7px 12px; font-size: 12px; margin: 3px 0; width: 100%; }
.sc-aff-spec { background: var(--muted,#f8fafc); font-size: 12.5px; }
.sc-aff-spec b { display: block; color: var(--muted-foreground,#6b7280); font-weight: 600; font-size: 11px; }
.sc-aff-cmp .sc-aff-wincol { border-left: 3px solid #16a34a; border-right: 3px solid #16a34a; }
.sc-aff-cmp .sc-aff-wintop { border-top: 3px solid #16a34a; }
.sc-aff-cmp .sc-aff-winbot { border-bottom: 3px solid #16a34a; }
.sc-aff-badge { background: #16a34a; color: #fff; font-size: 10px; font-weight: 800;
    padding: 3px 10px; border-radius: 20px; display: inline-block; margin-bottom: 6px; }

/* ---- Mobile ---- */
@media (max-width: 600px) {
    .sc-aff-row { display: grid; grid-template-columns: auto 1fr;
        column-gap: 14px; row-gap: 8px; align-items: center; }
    .sc-aff-row .sc-aff-thumb { grid-row: 1 / span 2; width: 70px; height: 70px; align-self: start; }
    .sc-aff-mid { grid-column: 2; }
    .sc-aff-act { grid-column: 2; text-align: left; }
    .sc-aff-act .sc-aff-store { text-align: left; }
    .sc-aff-proscons { grid-template-columns: 1fr; }
}
