/* === MORE OPPORTUNITIES SECTION ===
   Shared component (inc/more-opps.php): white band, centered heading, 3x2 grid of
   position cards — per-position line-art icon, slate title/body, orange pill button.
   Values measured on the live Wix position pages at 1440. */
.more-opps {
  background: var(--white);
  padding: 57px 24px 88px;
}
.more-opps-heading {
  font-family: var(--body-font);
  font-size: 40px;
  font-weight: 700;
  line-height: 56px;
  color: var(--ink);
  text-align: center;
  margin-bottom: 78px;
}
.more-opps-grid {
  display: grid;
  grid-template-columns: repeat(3, 298px);
  column-gap: 42px;
  row-gap: 40px;
  justify-content: center;
  max-width: 978px;
  margin: 0 auto;
}
.more-opps-card {
  display: flex;
  flex-direction: column;
  width: 298px;
  height: 343px;
  padding: 29px 36px 30px;
  border: 1px solid rgba(87, 99, 113, 0.23);  /* card slate @ 23% */
  border-radius: 5px;
  background: var(--white);
}
.more-opps-icon {
  width: 101px;
  height: 75px;
  fill: var(--orange);                     /* rgb(189,81,23) */
  margin-bottom: 16px;
}
.more-opps-title {
  font-family: var(--body-font);
  font-size: 20px;
  font-weight: 700;
  color: #576371;                          /* slate — measured card title (not black) */
  margin-bottom: 14px;
}
.more-opps-body {
  font-family: var(--body-font);
  font-size: 18px;
  font-weight: 400;
  line-height: 25.2px;
  color: #576371;                          /* slate */
  text-align: left;
}
.more-opps-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 154px;
  height: 38px;
  margin-top: auto;
  box-sizing: border-box;
  background: var(--orange);               /* rgb(189,81,23) */
  border: 3px solid transparent;           /* base 0px; kept transparent so hover 3px border adds no reflow */
  border-radius: 25px;
  color: var(--white);
  font-family: var(--body-font);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.4px;
  cursor: pointer;
  transition: all 0.2s ease;               /* measured live: all 0.2s ease */
}
/* Hover — intentional deviation from Wix (approved 2026-07-15): live turns the button
   white-on-white, invisible against the white card. Instead the fill empties and the
   border, label, and chevron take the button's own orange. */
.more-opps-btn:hover {
  background: transparent;
  border: 3px solid var(--orange);
  color: var(--orange);
}
.more-opps-btn-chevron {
  font-weight: 400;
  letter-spacing: 0;
}

/* --- responsive: 3 columns -> 2 --- */
@media (max-width: 1024px) {
  .more-opps { padding: 48px 24px 64px; }
  .more-opps-heading { margin-bottom: 48px; }
  .more-opps-grid {
    grid-template-columns: repeat(2, 298px);
    max-width: 638px;               /* 2*298 + 42 gap */
  }
}
/* --- responsive: 2 columns -> 1; card height frees up so copy can't clip --- */
@media (max-width: 768px) {
  .more-opps { padding: 40px 20px 56px; }
  .more-opps-heading { font-size: 30px; line-height: 40px; margin-bottom: 36px; }
  .more-opps-grid {
    grid-template-columns: minmax(0, 298px);
    max-width: 298px;
    row-gap: 24px;
  }
  .more-opps-card { width: 100%; height: auto; min-height: 343px; }
}
