.ats-examples {
    padding: 60px 0;
    background: var(--color-white, #FFFFFF);
}

.examples-header {
    text-align: center;
    margin-bottom: 48px;
}

.examples-eyebrow {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-primary, #4D6AFF);
    margin-bottom: 8px;
}

.examples-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--color-black, #111111);
}

.examples-subtitle {
    font-size: 0.9375rem;
    color: var(--color-text-light, #4A4A4A);
    max-width: 600px;
    margin: 0 auto;
}

.examples-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.example-card {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.example-badge {
    padding: 12px 20px;
    font-weight: 700;
    font-size: 0.875rem;
}
.example-card.bad .example-badge { background: #FEF2F2; color: #DC2626; }
.example-card.good .example-badge { background: #F0FDF4; color: #16A34A; }

.example-visual { padding: 40px; background: #F8F9FA; }
.visual-placeholder {
    background: white;
    border-radius: 12px;
    padding: 40px 20px;
    text-align: center;
    border: 2px dashed rgba(0, 0, 0, 0.1);
}
.visual-placeholder i { font-size: 48px; margin-bottom: 16px; display: block; }
.example-card.bad .visual-placeholder i { color: #DC2626; }
.example-card.good .visual-placeholder i { color: #10B981; }
.visual-placeholder span { font-size: 0.875rem; color: #4A4A4A; }

.example-details { padding: 24px; }
.example-details h4 { font-size: 0.875rem; font-weight: 700; margin-bottom: 12px; }
.example-details ul { list-style: none; padding: 0; margin: 0; }
.example-details li {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 0;
    font-size: 0.8125rem;
}
.example-details li i { font-size: 12px; }
.example-card.bad .example-details li i { color: #DC2626; }
.example-card.good .example-details li i { color: #10B981; }

@media (max-width: 991px) {
    .examples-title { font-size: 1.5rem; }
}
@media (max-width: 767px) {
    .ats-examples { padding: 40px 0; }
    .examples-grid { grid-template-columns: 1fr; }
}