/* ==========================================================================
   AL Support Home 2.0 — blue tile grid.
   Namespaced under .bsSupport so it can't collide with the site's CSS.
   Same card treatment as the Support Landing Page, fixed to the blue
   "Products" category (#0063A6). Tiles-only: no section header or page title.
   ========================================================================== */
.bsSupport {
  --sup-blue: #0063A6;
  --sup-tint-blue: #e6f0f8;
  --sup-title: #111827;
  --sup-body: #4b5563;
  --sup-chevron: #9ca3af;
  --sup-card-border: #e5e7eb;

  max-width: 1240px;
  margin: 0 auto;
  font-family: "Lato", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--sup-body);
  -webkit-font-smoothing: antialiased;
  box-sizing: border-box;
}
.bsSupport * { box-sizing: border-box; }

/* fixed to the blue (Products) category */
.bsSupport.sup-blue { --sup-accent: var(--sup-blue); --sup-tint: var(--sup-tint-blue); }

/* ---- tile grid ---- */
.bsSupport .sup-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

/* ---- tile (card) ---- */
.bsSupport .sup-tile {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #ffffff;
  border: 1px solid var(--sup-card-border);
  border-top: 3px solid var(--sup-accent);
  border-radius: 8px;
  padding: 22px;
  box-shadow: 0 1px 2px rgba(35, 31, 32, 0.04);
  color: inherit;
  text-decoration: none;
  transition: box-shadow 160ms ease, transform 160ms ease;
}
.bsSupport .sup-tile:hover {
  box-shadow: 0 6px 16px rgba(35, 31, 32, 0.09);
  transform: translateY(-1px);
  text-decoration: none;
  color: inherit;
}
.bsSupport .sup-tile:focus-visible {
  outline: 2px solid var(--sup-accent);
  outline-offset: 2px;
}

/* icon well */
.bsSupport .sup-ico {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: var(--sup-tint);
  color: var(--sup-accent);
  display: flex;
  align-items: center;
  justify-content: center;
}
.bsSupport .sup-glyph { width: 24px; height: 24px; display: block; }
/* BlueStep two-layer icons: white base + detail layer recoloured to the accent */
.bsSupport .sup-glyph .bsIcoFore { fill: #ffffff; }
.bsSupport .sup-glyph .bsIcoBack { fill: var(--sup-accent); }

/* text column */
.bsSupport .sup-text { flex: 1 1 auto; min-width: 0; display: block; }
.bsSupport .sup-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.bsSupport .sup-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--sup-title);
  line-height: 1.3;
}
.bsSupport .sup-chev { flex: 0 0 auto; width: 18px; height: 18px; color: var(--sup-chevron); }
.bsSupport .sup-desc {
  display: block;
  margin-top: 6px;
  font-size: 13.5px;
  color: var(--sup-body);
  line-height: 1.5;
}

/* ---- responsive ---- */
@media (max-width: 992px) {
  .bsSupport .sup-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 600px) {
  .bsSupport .sup-grid { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  .bsSupport .sup-tile { transition: none; }
}
