.ats-tips {
    padding: 60px 0;
    background: var(--color-background, #F8F9FA);
}

.tips-header {
    text-align: center;
    margin-bottom: 48px;
}

.tips-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;
}

.tips-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--color-black, #111111);
}

.tips-subtitle {
    font-size: 0.9375rem;
    color: var(--color-text-light, #4A4A4A);
    max-width: 600px;
    margin: 0 auto;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.tip-card {
    background: white;
    border-radius: 16px;
    padding: 24px;
    display: flex;
    gap: 16px;
    transition: all 0.3s ease;
}
.tip-card:hover { transform: translateX(5px); box-shadow: 0 4px 15px rgba(77, 106, 255, 0.1); }

.tip-number {
    font-size: 2rem;
    font-weight: 700;
    color: rgba(77, 106, 255, 0.2);
    line-height: 1;
}
.tip-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.tip-card p { font-size: 0.8125rem; color: #4A4A4A; margin: 0; }

@media (max-width: 991px) {
    .tips-title { font-size: 1.5rem; }
}
@media (max-width: 767px) {
    .ats-tips { padding: 40px 0; }
    .tips-grid { grid-template-columns: 1fr; }
    .tip-card { flex-direction: column; text-align: center; }
}