/* ================================================================
   SEOT Article Visual Kit v1.0
   SEO Tactical LLC
   ================================================================ */

/* ── BADGES ─────────────────────────────────────────────────── */
.seot-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 20px 0 28px;
}
.seot-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 1;
}
.seot-badge__label {
    text-transform: uppercase;
    font-size: 0.7rem;
    letter-spacing: 0.05em;
    opacity: 0.75;
    margin-right: 2px;
}
.seot-badge__value {
    font-size: 0.9rem;
}
.seot-badge--difficulty {
    background: #eef2ff;
    color: #3730a3;
    border: 1px solid #c7d2fe;
}
.seot-badge--time {
    background: #f0fdf4;
    color: #14532d;
    border: 1px solid #bbf7d0;
}
.seot-badge--cost {
    background: #fefce8;
    color: #713f12;
    border: 1px solid #fde68a;
}

/* ── CALLOUTS ────────────────────────────────────────────────── */
.seot-callout {
    margin: 28px 0;
    border-radius: 6px;
    overflow: hidden;
    border-left: 5px solid #ccc;
}
.seot-callout__header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.seot-callout__icon {
    font-size: 1.1rem;
}
.seot-callout__body {
    padding: 14px 18px;
    font-size: 0.95rem;
    line-height: 1.7;
}
.seot-callout__body p:last-child {
    margin-bottom: 0;
}

/* Warning */
.seot-callout--warning {
    border-left-color: #ef4444;
    background: #fef2f2;
}
.seot-callout--warning .seot-callout__header {
    background: #fee2e2;
    color: #991b1b;
}
/* Tip */
.seot-callout--tip {
    border-left-color: #22c55e;
    background: #f0fdf4;
}
.seot-callout--tip .seot-callout__header {
    background: #dcfce7;
    color: #14532d;
}
/* Tools */
.seot-callout--tools {
    border-left-color: #3b82f6;
    background: #eff6ff;
}
.seot-callout--tools .seot-callout__header {
    background: #dbeafe;
    color: #1e3a8a;
}
.seot-callout--tools .seot-callout__body ul {
    margin: 0;
    padding-left: 1.4em;
}
.seot-callout--tools .seot-callout__body li {
    margin-bottom: 6px;
}
/* Summary */
.seot-callout--summary {
    border-left-color: #f59e0b;
    background: #fffbeb;
}
.seot-callout--summary .seot-callout__header {
    background: #fef3c7;
    color: #78350f;
}

/* ── STEPS ───────────────────────────────────────────────────── */
.seot-step {
    margin: 28px 0;
    padding: 0;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
}
.seot-step__header {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 18px;
    background: #1e293b;
}
.seot-step__number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #22c55e;
    color: #fff;
    font-weight: 800;
    font-size: 1rem;
    flex-shrink: 0;
}
.seot-step__title {
    color: #f1f5f9;
    font-weight: 700;
    font-size: 1rem;
}
.seot-step__body {
    padding: 16px 20px;
    font-size: 0.95rem;
    line-height: 1.75;
    background: #fff;
}
.seot-step__body p:last-child {
    margin-bottom: 0;
}

/* ── BEFORE / AFTER ──────────────────────────────────────────── */
.seot-before-after {
    margin: 28px 0;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
}
.seot-before-after__inner {
    display: flex;
    gap: 0;
}
.seot-before-after__inner img {
    width: 50%;
    height: auto;
    display: block;
    object-fit: cover;
}
.seot-before-after__labels {
    display: flex;
}
.seot-ba-label {
    flex: 1;
    text-align: center;
    padding: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.seot-ba-label--before {
    background: #fee2e2;
    color: #991b1b;
}
.seot-ba-label--after {
    background: #dcfce7;
    color: #14532d;
}

/* ── PULL QUOTE ──────────────────────────────────────────────── */
.seot-pullquote {
    margin: 32px 20px;
    padding: 20px 28px;
    border-left: 5px solid #22c55e;
    background: #f8fafc;
    font-size: 1.2rem;
    font-style: italic;
    line-height: 1.6;
    color: #334155;
    border-radius: 0 6px 6px 0;
}

/* ── RESPONSIVE ──────────────────────────────────────────────── */
@media ( max-width: 640px ) {
    .seot-badges {
        flex-direction: column;
        gap: 8px;
    }
    .seot-before-after__inner {
        flex-direction: column;
    }
    .seot-before-after__inner img {
        width: 100%;
    }
    .seot-before-after__labels {
        flex-direction: column;
    }
    .seot-pullquote {
        margin: 24px 0;
        font-size: 1.05rem;
    }
}
