/* ==========================================================================
   Allied Wholesale Electrical Supply — Employment page (page-specific)
   Loads after allied-site.css (tokens, header/nav, footer, .page-hero,
   .story-panel, .cta-band, etc.). This file only has the one thing unique
   to this page: two labeled lists ("What we look for" / "Areas of
   opportunity") side by side as cards.
   ========================================================================== */

.list-columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.list-card {
  background: var(--allied-white);
  border: 1px solid var(--allied-border);
  border-radius: 14px;
  box-shadow: var(--allied-shadow-soft);
  padding: 26px 28px;
}
.list-card h3 {
  font-size: 1.1rem;
  margin-bottom: 14px;
}
.list-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.list-card li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 12px;
  color: var(--allied-steel);
  line-height: 1.6;
}
.list-card li:last-child {
  margin-bottom: 0;
}
.list-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--allied-blue);
}

.cta-band .cta-address {
  color: #b7cbec;
  font-size: 0.88rem;
  margin-top: 18px;
}

@media (max-width: 680px) {
  .list-columns {
    grid-template-columns: 1fr;
  }
}
