/*
 * olostep-overrides.css
 * --------------------
 * Manual fixes layered ON TOP of the Webflow-exported olostep.webflow.css.
 *
 * Why this file exists: the homepage at /public/index.html is a Webflow
 * export. If we patch olostep.webflow.css directly, the next Webflow
 * re-export wipes our changes. Anything we put HERE survives that.
 *
 * Loaded in index.html AFTER olostep.webflow.css.
 *
 * Keep edits scoped, small, and commented.
 */

/* ---------------------------------------------------------------------------
 * Fix: "Deep Search" use-cases slider card was bleeding off the left edge
 * on desktop viewports.
 *
 * Cause: .card-slider_item.second.initial has margin-left: 0 in the
 * Webflow CSS, and the slider track sits flush with the viewport's left
 * edge, so the first visible card had its text clipped.
 *
 * Fix: give the .second.initial card a left margin matching the
 * surrounding section padding so it lines up with the rest of the
 * content. Scoped to desktop only — the mobile rule (≤991px) already
 * sets margin-left: 0 deliberately for the narrower stack.
 * ------------------------------------------------------------------------- */

@media (min-width: 992px) {
  .section-usecases .card-slider_item.second.initial {
    margin-left: 20px;
  }
}
