:root {
  --colorPrimary900: #000000;
  --colorPrimary600: #000000;
  --colorAccent: #000000;
  --colorBackground: #ffffff;
  --colorText: #000000;
  --colorMutedText: #000000;
  --colorSubText: #000000;

  /* Fonts */
  --fontTitle: "Canela", serif;
  --fontText: "Cormorant Garamond", serif;
  --fontButton: "Canela", serif;

  --borderRadiusContainer: 8px;
  --borderRadiusButton: 6px;
  --transitionFast: all 0.25s ease-in-out;
}

/* Main heading (TITLE) */
.ashby-job-board-heading {
  font-family: var(--fontTitle);
  font-size: 2.25rem;
  font-weight: 300;
  color: #000000;
  margin-bottom: 2rem;
  padding: 2rem;
  background-color: #ffffff;
  border-radius: var(--borderRadiusContainer);
  box-shadow: none;
}

/* Remove overlay */
.ashby-job-board-heading::before {
  display: none;
}

/* Job cards */
.ashby-job-posting-brief {
  font-family: var(--fontText);
  background-color: #ffffff;
  border: 1px solid #000000;
  border-radius: var(--borderRadiusContainer);
  padding: 2rem;
  margin: 0 auto 1.5rem auto;
  transition: var(--transitionFast);
  cursor: pointer;
  color: #000000;
  position: relative;
  box-shadow: none;
  max-width: 100%;
}

/* Remove overlay */
.ashby-job-posting-brief::before {
  display: none;
}

/* Hover effect */
.ashby-job-posting-brief:hover {
  border-color: #000000;
  transform: translateY(-2px);
  box-shadow: none;
}

/* Job title */
.ashby-job-posting-brief-title {
  font-family: var(--fontTitle);
  font-size: 1.5rem;
  font-weight: 300;
  margin-bottom: 0.5rem;
  color: #000000;
}

/* Department heading + meta text */
.ashby-job-posting-brief-department-heading-level {
  font-family: var(--fontText);
  font-size: 0.95rem;
  font-weight: 300;
  color: #000000;
}

/* Paragraphs */
p,
.ashby-job-posting-brief p {
  font-family: var(--fontText);
  font-weight: 300;
  color: #000000;
  line-height: 1.65;
  margin-bottom: 1rem;
}

/* Buttons */
.ashby-application-form-submit-button {
  font-family: var(--fontButton);
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: #ffffff;
  background-color: #000000;
  border-radius: var(--borderRadiusButton);
  border: none;
  padding: 0.9rem 1.5rem;
  width: 100%;
  margin-top: 1rem;
  transition: var(--transitionFast);
}

/* Hover on buttons */
.ashby-application-form-submit-button:hover {
  background-color: #000000;
  transform: translateY(-1px);
}

/* Success container */
.ashby-application-form-success-container {
  font-family: var(--fontText);
  background-color: #ffffff;
  border-radius: var(--borderRadiusContainer);
  padding: 2rem;
  color: #000000;
  text-align: center;
}

/* Scrollbar styling */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-thumb {
  background-color: #000000;
  border-radius: 3px;
}

/* Fade in animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Alternate row backgrounds (all white now) */
.ashby-job-posting-brief:nth-child(odd),
.ashby-job-posting-brief:nth-child(even) {
  background-color: #ffffff;
}

/* GLOBAL HARD RESET FOR ASHBY OVERRIDES */
.ashby-job-board-heading,
.ashby-job-posting-brief,
.ashby-job-posting-brief * ,
.ashby-application-form-submit-button {
  color: #000000 !important;
}

/* Heading */
.ashby-job-board-heading {
  background-color: #ffffff !important;
  background-image: none !important;
  box-shadow: none !important;
}

/* Cards */
.ashby-job-posting-brief {
  background-color: #ffffff !important;
  border: 1px solid #000000 !important;
  box-shadow: none !important;
}

.ashby-job-posting-brief:hover {
  background-color: #ffffff !important;
  border-color: #000000 !important;
  box-shadow: none !important;
  transform: translateY(-2px);
}

/* Remove ANY pseudo-element overlays that might carry color */
.ashby-job-board-heading::before,
.ashby-job-posting-brief::before {
  display: none !important;
  background: none !important;
}

/* Titles + text */
.ashby-job-posting-brief-title,
.ashby-job-posting-brief-department-heading-level,
p,
.ashby-job-posting-brief p {
  color: #000000 !important;
}

/* BUTTON — full override (this is usually where beige hides) */
.ashby-application-form-submit-button {
  background-color: #000000 !important;
  color: #ffffff !important;
  border: 1px solid #000000 !important;
}

/* BUTTON HOVER — kill all inherited tones */
.ashby-application-form-submit-button:hover,
.ashby-application-form-submit-button:focus,
.ashby-application-form-submit-button:active {
  background-color: #000000 !important;
  color: #ffffff !important;
  border-color: #000000 !important;
  box-shadow: none !important;
}

/* Scrollbar */
::-webkit-scrollbar-thumb {
  background-color: #000000 !important;
}