:root {
  color-scheme: dark;
  --background: #050607;
  --surface: #0b0d10;
  --surface-soft: #111419;
  --surface-raised: #15191e;
  --border: #252b32;
  --border-bright: #343c45;
  --text: #f7f7f5;
  --muted: #9ba2aa;
  --orange: #ff4b0b;
  --orange-light: #ff713c;
  --orange-soft: rgba(255, 75, 11, 0.12);
  --green: #6bdd95;
  --red: #ff7474;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  background:
    radial-gradient(circle at 18% 10%, rgba(255, 75, 11, 0.12), transparent 30rem),
    linear-gradient(180deg, #070809 0, var(--background) 38rem);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.page-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.topbar {
  width: min(1440px, calc(100% - 3rem));
  min-height: 104px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  flex: none;
}

.brand-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--orange);
  color: #170803;
  font-size: 1.35rem;
  font-weight: 900;
  box-shadow: 0 0 28px rgba(255, 75, 11, 0.23);
}

.brand > span:last-child {
  display: grid;
  gap: 0.25rem;
}

.brand strong {
  font-size: 0.95rem;
  letter-spacing: 0.28rem;
}

.brand small {
  color: var(--muted);
  font-size: 0.56rem;
  letter-spacing: 0.18rem;
}

.topnav {
  display: flex;
  align-items: center;
  gap: clamp(0.9rem, 2.5vw, 2.35rem);
}

.topnav a {
  color: #c6cbd0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.11rem;
  text-transform: uppercase;
  transition: color 160ms ease, border-color 160ms ease;
}

.topnav a:hover,
.topnav a:focus-visible,
.topnav a.active {
  color: var(--orange-light);
}

.topnav .account-link {
  max-width: 180px;
  padding: 0.8rem 1rem;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--text);
  text-overflow: ellipsis;
  white-space: nowrap;
}

main {
  flex: 1;
}

.hero {
  width: min(1240px, calc(100% - 3rem));
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 7.5rem) 0 clamp(3.5rem, 6vw, 5.5rem);
}

.eyebrow {
  color: var(--orange-light);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.24rem;
}

.hero-copy {
  max-width: 920px;
}

.hero h1 {
  margin-top: 1rem;
  font-size: clamp(3rem, 7vw, 6.6rem);
  font-weight: 300;
  letter-spacing: -0.055em;
  line-height: 0.95;
}

.hero h1 span {
  color: var(--orange);
  font-weight: 800;
}

.hero-copy > p:last-child {
  max-width: 660px;
  margin-top: 1.5rem;
  color: var(--muted);
  font-size: clamp(0.95rem, 1.4vw, 1.1rem);
  line-height: 1.75;
}

.main-search {
  max-width: 960px;
  min-height: 76px;
  margin-top: clamp(2.25rem, 5vw, 4rem);
  padding: 0.48rem;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.4rem;
  background: rgba(11, 13, 16, 0.96);
  border: 1px solid var(--border-bright);
  border-radius: 22px;
  box-shadow: 0 26px 90px rgba(0, 0, 0, 0.42);
}

.main-search:focus-within {
  border-color: rgba(255, 75, 11, 0.7);
  box-shadow: 0 26px 90px rgba(0, 0, 0, 0.42), 0 0 0 3px rgba(255, 75, 11, 0.1);
}

.search-icon {
  padding-left: 1.15rem;
  color: var(--orange-light);
  font-size: 1.65rem;
}

.main-search input {
  min-width: 0;
  height: 58px;
  padding: 0 0.8rem;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--text);
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
}

.main-search input::placeholder {
  color: #707881;
}

.main-search button {
  height: 58px;
  padding: 0 1.8rem;
  border: 0;
  border-radius: 16px;
  background: var(--orange);
  color: #fff;
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08rem;
  text-transform: uppercase;
  transition: background 160ms ease, transform 160ms ease;
}

.main-search button:hover,
.main-search button:focus-visible {
  background: var(--orange-light);
  transform: translateY(-1px);
}

.quick-links {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  align-items: center;
  color: #737b84;
  font-size: 0.72rem;
}

.quick-links a {
  padding: 0.45rem 0.7rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: #bec4ca;
  transition: border-color 160ms ease, color 160ms ease;
}

.quick-links a:hover,
.quick-links a:focus-visible {
  border-color: rgba(255, 75, 11, 0.55);
  color: var(--orange-light);
}

.results-section {
  padding: clamp(3.5rem, 7vw, 6rem) max(1.5rem, calc((100% - 1240px) / 2));
  background: rgba(8, 10, 12, 0.88);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.results-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
}

.results-head h2 {
  max-width: 900px;
  margin-top: 0.65rem;
  font-size: clamp(2rem, 4vw, 3.75rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.05;
  overflow-wrap: anywhere;
}

.result-count {
  flex: none;
  color: var(--muted);
  font-size: 0.8rem;
}

.result-count strong {
  color: var(--text);
  font-size: 1.45rem;
}

.category-tabs {
  margin: 2.25rem 0 2rem;
  display: flex;
  gap: 0.55rem;
  overflow-x: auto;
  scrollbar-width: thin;
  padding-bottom: 0.25rem;
}

.category-tabs a {
  flex: none;
  padding: 0.72rem 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: #b4bac1;
  font-size: 0.75rem;
  font-weight: 700;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.category-tabs a:hover,
.category-tabs a:focus-visible,
.category-tabs a.active {
  border-color: rgba(255, 75, 11, 0.62);
  background: var(--orange-soft);
  color: var(--orange-light);
}

.section-shortcut {
  margin-bottom: 1.35rem;
  padding: 1rem 1.15rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  border: 1px solid rgba(255, 75, 11, 0.3);
  border-radius: 16px;
  background: linear-gradient(90deg, var(--orange-soft), rgba(255, 75, 11, 0.025));
}

.section-shortcut > div {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.shortcut-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex: none;
  border-radius: 12px;
  background: rgba(255, 75, 11, 0.14);
  color: var(--orange-light);
  font-size: 1.2rem;
}

.section-shortcut p {
  display: grid;
  gap: 0.3rem;
  font-size: 0.86rem;
}

.section-shortcut small {
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.45;
}

.section-shortcut > a {
  flex: none;
  color: var(--orange-light);
  font-size: 0.73rem;
  font-weight: 800;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.result-card {
  min-width: 0;
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--surface);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.16);
  transition: border-color 170ms ease, transform 170ms ease, box-shadow 170ms ease;
}

.result-card:hover {
  border-color: rgba(255, 75, 11, 0.46);
  transform: translateY(-2px);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.3);
}

.card-visual {
  position: relative;
  min-height: 260px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.055), transparent 48%),
    #15191e;
  color: #77808a;
}

.card-visual::after {
  content: "";
  position: absolute;
  width: 160px;
  height: 160px;
  top: -90px;
  right: -85px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.035);
}

.card-visual.category-job,
.card-visual.category-event {
  background:
    linear-gradient(145deg, rgba(255, 75, 11, 0.18), transparent 55%),
    #171311;
  color: var(--orange-light);
}

.card-visual.category-person {
  background:
    linear-gradient(145deg, rgba(107, 221, 149, 0.12), transparent 55%),
    #111714;
  color: var(--green);
}

.card-visual > span {
  font-size: 2.6rem;
  font-weight: 300;
}

.card-visual > p {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.16rem;
}

.card-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-visual:has(img)::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.75));
}

.card-visual:has(img) > p {
  z-index: 2;
}

.card-body {
  min-width: 0;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
}

.card-topline {
  min-height: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.category-label {
  color: var(--orange-light);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.09rem;
  text-transform: uppercase;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
  color: var(--muted);
  font-size: 0.62rem;
  white-space: nowrap;
}

.status i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 9px currentColor;
}

.status.open,
.status.upcoming {
  color: var(--green);
}

.status.closed {
  color: var(--red);
}

.status.past {
  color: #838b94;
}

.card-body h3 {
  margin-top: 0.7rem;
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.subtitle {
  margin-top: 0.35rem;
  color: #c0c5ca;
  font-size: 0.75rem;
  line-height: 1.45;
}

.card-meta {
  min-height: 20px;
  margin-top: 0.7rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  color: var(--muted);
  font-size: 0.69rem;
}

.card-meta span:first-child {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.card-meta .rating {
  color: #ffbf69;
}

.description {
  margin-top: 0.8rem;
  color: #9299a1;
  display: -webkit-box;
  overflow: hidden;
  font-size: 0.74rem;
  line-height: 1.6;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.card-footer {
  margin-top: auto;
  padding-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.card-footer > span {
  color: #69717a;
  font-size: 0.63rem;
}

.card-footer a {
  color: var(--text);
  font-size: 0.7rem;
  font-weight: 800;
  white-space: nowrap;
}

.card-footer a b {
  margin-left: 0.25rem;
  color: var(--orange-light);
}

.card-footer a:hover,
.card-footer a:focus-visible {
  color: var(--orange-light);
}

.pagination {
  max-width: 700px;
  margin: 2.25rem auto 0;
  padding: 0.75rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface);
}

.pagination a {
  padding: 0.55rem 0.75rem;
  color: var(--orange-light);
  font-size: 0.72rem;
  font-weight: 800;
}

.pagination a:last-child {
  text-align: right;
}

.pagination p {
  color: var(--muted);
  font-size: 0.69rem;
}

.empty-state {
  min-height: 370px;
  padding: 3rem 1.5rem;
  display: grid;
  place-content: center;
  justify-items: center;
  border: 1px solid var(--border);
  border-radius: 20px;
  background:
    radial-gradient(circle at 50% 0, rgba(255, 75, 11, 0.09), transparent 18rem),
    var(--surface);
  text-align: center;
}

.empty-state > span {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 1.25rem;
  border: 1px solid rgba(255, 75, 11, 0.45);
  border-radius: 50%;
  color: var(--orange-light);
  font-size: 1.45rem;
}

.empty-state h2 {
  font-size: 1.55rem;
}

.empty-state p {
  max-width: 520px;
  margin-top: 0.6rem;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.65;
}

.empty-state a {
  margin-top: 1.25rem;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(255, 75, 11, 0.5);
  border-radius: 999px;
  color: var(--orange-light);
  font-size: 0.72rem;
  font-weight: 800;
}

.error-state > span {
  border-color: rgba(255, 116, 116, 0.45);
  color: var(--red);
}

.site-footer {
  width: min(1440px, calc(100% - 3rem));
  min-height: 180px;
  margin: 0 auto;
  padding: 2.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.footer-brand .brand-icon {
  width: 38px;
  height: 38px;
  font-size: 1rem;
}

.footer-brand strong {
  font-size: 0.8rem;
}

.site-footer > p {
  color: var(--muted);
  font-size: 0.75rem;
}

@media (max-width: 1040px) {
  .topnav {
    gap: 1rem;
  }

  .topnav a:not(.account-link) {
    display: none;
  }

  .results-grid {
    grid-template-columns: 1fr;
  }

  .result-card {
    grid-template-columns: 180px minmax(0, 1fr);
  }
}

@media (max-width: 720px) {
  .topbar {
    width: min(100% - 2rem, 1440px);
    min-height: 86px;
  }

  .brand strong {
    font-size: 0.8rem;
    letter-spacing: 0.2rem;
  }

  .brand small {
    display: none;
  }

  .topnav .account-link {
    max-width: 110px;
    padding: 0.65rem 0.8rem;
  }

  .hero {
    width: calc(100% - 2rem);
    padding-top: 3.5rem;
  }

  .hero h1 {
    font-size: clamp(2.65rem, 14vw, 4.75rem);
  }

  .main-search {
    min-height: 66px;
    border-radius: 18px;
  }

  .main-search input,
  .main-search button {
    height: 50px;
  }

  .main-search button {
    padding: 0 1.15rem;
  }

  .search-icon {
    padding-left: 0.75rem;
  }

  .results-section {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .results-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.75rem;
  }

  .category-tabs {
    margin-top: 1.6rem;
  }

  .section-shortcut {
    align-items: flex-start;
    flex-direction: column;
  }

  .result-card {
    grid-template-columns: 118px minmax(0, 1fr);
  }

  .card-visual {
    min-height: 285px;
  }

  .card-body {
    padding: 1rem;
  }

  .card-topline,
  .card-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.5rem;
  }

  .card-footer {
    margin-top: 1rem;
  }

  .site-footer {
    width: calc(100% - 2rem);
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .brand-icon {
    width: 39px;
    height: 39px;
    font-size: 1.05rem;
  }

  .topnav .account-link {
    max-width: 86px;
    font-size: 0.62rem;
  }

  .main-search {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .main-search button {
    grid-column: 1 / -1;
    width: 100%;
  }

  .quick-links span {
    width: 100%;
  }

  .result-card {
    grid-template-columns: 1fr;
  }

  .card-visual {
    min-height: 150px;
  }

  .card-topline,
  .card-footer {
    flex-direction: row;
    align-items: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}

/* ORACLE / BUS TRACKER DIRECTORY REDESIGN */
body{background:radial-gradient(circle at 82% 7%,rgba(255,75,11,.13),transparent 30rem),radial-gradient(circle at 15% 52%,rgba(120,185,255,.035),transparent 25rem),linear-gradient(180deg,#08090a 0,var(--background) 44rem)}
.hero{position:relative;padding-top:clamp(4.5rem,9vw,8.5rem);padding-bottom:clamp(4rem,8vw,7rem)}.hero-copy{position:relative;z-index:1}.search-mark{position:absolute;right:3%;top:clamp(4rem,8vw,7rem);width:clamp(130px,18vw,230px);aspect-ratio:1;display:grid;place-items:center;border:1px solid rgba(255,75,11,.25);border-radius:50%;color:var(--orange-light);opacity:.58}.search-mark::before,.search-mark::after{content:"";position:absolute;border-radius:50%}.search-mark::before{inset:12%;border:1px dashed rgba(255,75,11,.32)}.search-mark::after{inset:31%;border:1px solid rgba(255,75,11,.45)}.search-mark span{position:relative;z-index:1;font-size:clamp(2.5rem,6vw,5.2rem);font-weight:200}.search-mark i{position:absolute;top:11%;width:7px;height:7px;border-radius:50%;background:var(--orange);box-shadow:0 0 17px var(--orange)}
.hero h1{max-width:880px}.main-search{position:relative;z-index:2;max-width:none;margin-top:clamp(2.5rem,5vw,4.5rem);padding:.7rem;border-radius:24px;background:rgba(11,13,16,.97);box-shadow:0 30px 100px rgba(0,0,0,.46)}.main-search::after{content:"DIRECTORY SEARCH";position:absolute;right:1.2rem;top:-1.55rem;color:#69717a;font-size:.55rem;font-weight:900;letter-spacing:.15rem}.quick-links{position:relative;z-index:2}
.results-section{padding-top:clamp(4rem,7vw,6.5rem);background:linear-gradient(180deg,rgba(8,10,12,.92),rgba(5,6,7,.98));border-top-color:var(--border)}.results-head{padding-bottom:2rem;border-bottom:1px solid var(--border)}.result-count{padding:.75rem 1rem;border:1px solid var(--border);border-radius:999px;background:var(--surface)}.category-tabs{margin:1.3rem 0 2rem;padding:.45rem;gap:.35rem;border:1px solid var(--border);border-radius:18px;background:var(--surface);scrollbar-width:none}.category-tabs a{min-height:44px;flex:1;justify-content:center;border-color:transparent;border-radius:13px}.category-tabs a:hover,.category-tabs a:focus-visible,.category-tabs a.active{border-color:rgba(255,75,11,.35);background:var(--orange-soft)}
.section-shortcut{padding:1.15rem 1.25rem;border-radius:18px;background:linear-gradient(100deg,var(--orange-soft),var(--surface))}
.results-grid{grid-template-columns:repeat(3,minmax(0,1fr));gap:1rem}.result-card{display:flex;flex-direction:column;border-radius:22px;background:linear-gradient(145deg,var(--surface-soft),var(--surface));box-shadow:0 20px 55px rgba(0,0,0,.2)}.card-visual{min-height:175px;border-bottom:1px solid var(--border)}.card-visual::before{content:"";position:absolute;inset:0;background-image:linear-gradient(rgba(255,255,255,.045) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.045) 1px,transparent 1px);background-size:32px 32px;opacity:.34}.card-visual:has(img)::before{z-index:1;opacity:1;background:linear-gradient(180deg,transparent 40%,rgba(0,0,0,.8))}.card-visual>span{position:relative;z-index:1;width:58px;height:58px;display:grid;place-items:center;border:1px solid currentColor;border-radius:17px;background:rgba(0,0,0,.18);font-size:1.8rem}.card-body{min-height:310px;padding:1.35rem}.card-body h3{font-size:1.25rem}.description{font-size:.77rem}.card-footer{padding-top:1.1rem}.card-footer a{padding:.55rem .7rem;border:1px solid var(--border);border-radius:10px}.card-footer a:hover{border-color:rgba(255,75,11,.45)}
.pagination{margin-top:2.8rem;border-radius:17px}.empty-state{border-radius:24px}.site-footer{border-top:1px solid var(--border)}
@media(max-width:1120px){.results-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.result-card{display:flex}.card-visual{min-height:170px}}
@media(max-width:760px){.search-mark{opacity:.22;right:-20px}.category-tabs a{flex:none}.results-grid{grid-template-columns:1fr}.card-body{min-height:0}.result-card{display:flex}.card-visual{min-height:180px}.main-search::after{display:none}}
@media(max-width:480px){.result-card{display:flex}.card-visual{min-height:145px}.card-topline,.card-footer{flex-direction:row}.search-mark{display:none}}
