: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: 0px;
  --borderRadiusButton: 0px;
  --transitionFast: all 0.25s ease-in-out;
}

/* MAIN 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: 0px;
  border: none;
  background-image: none !important;
}

.ashby-job-board-heading::before {
  display: none !important;
}

/* JOB CARDS */
.ashby-job-posting-brief {
  font-family: var(--fontText);
  background-color: #ffffff;

  border: 2px solid rgba(0, 0, 0, 0.22);

  border-radius: 0px;
  padding: 2rem;
  margin: 0 auto 1.5rem auto;

  cursor: pointer;
  color: #000000;
  position: relative;
  box-shadow: none !important;

  transform: none !important;
}

/* Hover state */
.ashby-job-posting-brief:hover {
  border: 2px solid rgba(0, 0, 0, 0.32);
  transform: none !important;
  box-shadow: none !important;
}

/* Kill overlays */
.ashby-job-posting-brief::before {
  display: none !important;
}

/* TITLE */
.ashby-job-posting-brief-title {
  font-family: var(--fontTitle);
  font-size: 1.5rem;
  font-weight: 300;
  margin-bottom: 0.5rem;
  color: #000000;
}

/* META */
.ashby-job-posting-brief-department-heading-level {
  font-family: var(--fontText);
  font-size: 0.95rem;
  font-weight: 300;
  color: #000000;
}

/* TEXT */
p,
.ashby-job-posting-brief p {
  font-family: var(--fontText);
  font-weight: 300;
  color: #000000;
  line-height: 1.65;
  margin-bottom: 1rem;
}

/* BUTTON */
.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: 2px solid #000000;

  border-radius: 0px;
  padding: 0.9rem 1.5rem;
  width: 100%;
  margin-top: 1rem;

  box-shadow: none !important;
}

/* BUTTON HOVER */
.ashby-application-form-submit-button:hover,
.ashby-application-form-submit-button:focus,
.ashby-application-form-submit-button:active {
  background-color: #000000;
  color: #ffffff;
  border-color: #000000;
  transform: none !important;
  box-shadow: none !important;
}

/* SUCCESS STATE */
.ashby-application-form-success-container {
  font-family: var(--fontText);
  background-color: #ffffff;
  border-radius: 0px;
  padding: 2rem;
  color: #000000;
  text-align: center;
  border: 2px solid rgba(0, 0, 0, 0.18);
  box-shadow: none !important;
}

/* GLOBAL SAFETY OVERRIDE */
.ashby-job-board-heading,
.ashby-job-posting-brief,
.ashby-job-posting-brief *,
.ashby-application-form-submit-button {
  color: #000000 !important;
}

/* REMOVE ALL SHADOWS ANYWHERE */
* {
  box-shadow: none !important;
}

/* SCROLLBAR */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 0px;
}