/* Cartesia AI - Job Board CSS - Last Updated: 10/22/25  */

:root {
  --borderRadiusContainer: 4px;
  --borderRadiusControl: 4px;
  --borderRadiusButton: 4px;
  --borderWidthBold: 2px;
  --widthMaxJobBoard: 800px;
  --colorAppBackground: #ffffff;
  --colorPrimary900: #000000;
  --colorPrimary600: #181818;
  --colorNegative200: #fce8e8;
  --colorPositive200: #eafcec;
  --colorWarning800: #8c6d1f;
  --colorWarning600: #f4ca64;
  --colorNegative600: #dc3030;
  --colorPositive600: #29b458;
  --colorWarning900: #5c4813;
}

@font-face {
   font-family: 'Tiempos Text';
   src: url('https://framerusercontent.com/assets/ZQbZBPUlYAJMEfaS8ycHNAeYvHo.woff2') format('woff2');
   font-weight: regular;
   font-style: normal;
}
 
@font-face {
   font-family: 'Tiempos Text Medium';
   src: url('https://framerusercontent.com/assets/OH8al6lg0DnsfgPu4ymseN1q8s.woff2') format('woff2');
   font-weight: medium;
   font-style: medium;
}
 
@font-face {
   font-family: 'Inter Display';
   src: url('https://framerusercontent.com/assets/bHYNJqzTyl2lqvmMiRRS6Y16Es.woff2') format('woff2');
   font-weight: regular;
   font-style: regular;
}

/*/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/

/*TARGET MAIN JOB BOARD*/

/*Target Open Positions Header on Main Job Board*/
@media (max-width: 768px) {
  .ashby-job-board-heading {
    padding: 1.25rem 1rem;
  }
}

.ashby-job-board-heading {
  color: #181818;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: -12px;
  padding-bottom: 16px;
  letter-spacing: -0.01em;
  background: white;
  border-bottom: 1.5px solid #181818;
  font-family: 'Tiempos Text';
}
/*END Target Open Positions Header on Main Job Board*/

/*Target Number of Open Positions on Top of Main Job Board*/
.ashby-job-board-heading-count {
  color: #cccccc;
  font-size: 14px;
  font-weight: 400;
  font-family: 'Inter Display';
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/*Target Header Title of Job Filter Dropdown Menu*/
.ashby-job-board-filters-label {
  width: 100%;
  font-size: 14px;
  color: #7d8699;
  background-color: white;
  transition: all 0.15s ease;
  cursor: pointer;
  font-family: 'Tiempos Text';
}

/*Target Job Board Filter Dropdown Menu*/
.ashby-job-board-filter {
  width: 100%;
  padding: 0.625rem 0.75rem;
  border: 1px solid #cccccc;
  border-radius: 4px;
  font-size: 16px;
  color: #181818;
  background-color: white;
  transition: all 0.15s ease;
  cursor: pointer;
  font-family: 'Inter Display';
}

.ashby-job-board-filter:focus {
  outline: none;
  border-color: #181818;
  box-shadow: 0 0 0 1px #181818;
}

.ashby-job-board-filter:hover {
  border-color: #181818;
}
/*END Target Job Board Filter Dropdown Menu*/

/*Target Department Header on Main Job Board (e.g. 'Engineering')*/
.ashby-department-heading-level {
  color: #181818;
  font-size: 18px;
  font-weight: 500;
  font-family: 'Tiempos Text';
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/*Target CONTAINER of Department Header on Main Job Board (e.g. 'Engineering')*/
.ashby-department-heading {
  color: #181818;
  font-weight: 600;
  margin-bottom: 4px;
  padding-bottom: 16px;
  border-bottom: 1.5px solid #181818;
  letter-spacing: -0.01em;
  font-family: 'Tiempos Text';
}

/*Target Title of Individual Jobs on the Main Job Board*/
.ashby-job-posting-brief-title {
  color: #181818;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 0.75rem;
  text-decoration: none;
  display: block;
  transition: color 0.15s ease;
  font-family: 'Tiempos Text Medium';
  letter-spacing: -0.01em;
}

.ashby-job-posting-brief-title:hover {
  color: #000000;
}
/*END Target Title of Specific Jobs on the Main Job Board*/

/*Target Details of Individual Jobs on Main Job Board*/
.ashby-job-posting-brief-details {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 0.75rem;
  font-size: 14px;
  color: #666666;
  font-family: 'Inter Display';
}

/*Target CONTAINER of Jobs Grouped by Dept on Main Job Board*/
.ashby-job-posting-brief-list {
  margin: 0 auto;
  flex-direction: column;
  gap: 1rem;
}

/*Target CONTAINER of Individual Jobs Grouped within the Brief List, including Job Title and Details*/
.ashby-job-posting-brief {
  background: white;
  border: 0px solid #181818;
  border-radius: 4px;
  padding-top: 1rem;
  padding-bottom: 1rem;
  padding-left: 1rem;
  padding-right: 1rem;
  margin-left: -4px;
  transition: all 0.15s ease;
  box-sizing: border-box;
}

.ashby-job-posting-brief:hover {
  background: #fafafa;
}
/*END Target CONTAINER of Individual Jobs Grouped within the Brief List, including Job Title and Details*/

/*THESE MAY BE DUPLICATIVE OR NOT NEEDED?*/
.ashby-job-posting-brief-department-heading {
  display: inline-block;
  background: #181818;
  color: white;
  padding: 0.25rem 0.625rem;
  border-radius: 2px;
  font-size: 0.75rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
  font-family: var(--fontFamily);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.ashby-job-posting-brief-department-heading-level {
  display: inline-block;
  background: #f5f5f5;
  color: #666666;
  padding: 0.25rem 0.625rem;
  border-radius: 2px;
  font-size: 0.75rem;
  font-weight: 500;
  margin-left: 0.5rem;
  margin-bottom: 0.75rem;
  font-family: 'Tiempos Text';
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
/*END THESE MAY BE DUPLICATIVE OR NOT NEEDED?*/

/*END TARGET MAIN JOB BOARD*/

/*/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/

/* INDIVIDUAL JOB PAGES */

/* The heading/title of an individual job post (i.e. "Security Engineer" on the main page for the same role) */
.ashby-job-posting-heading {
  color: #181818;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
  line-height: 1.2;
  font-family: 'Tiempos Text Medium';
}

/* target headings (e.g. 'location', 'employment type') in the left pane */
.ashby-job-posting-left-pane h2 {
  font-family: 'Inter Display';
}

/* target paragraphs <p> & unordered lists <ul> (e.g. compenastion range) in the left pane */
.ashby-job-posting-left-pane p,
.ashby-job-posting-left-pane ul {
  font-family: 'Tiempos Text';
}

/* Target the "Application" tab in the right pane of the job posting */
.ashby-job-posting-right-pane-application-tab {
  font-family: 'Inter Display';
}

/* Target the "Overview" tab in the right pane of the job posting */
.ashby-job-posting-right-pane-overview-tab {
  font-family: 'Inter Display';
}

/* target paragraphs <p> in the right pane */
.ashby-job-posting-right-pane p {
  font-family: 'Tiempos Text';
}

/* target <strong> (and <b>) inside paragraphs in the right pane of a job description */
.ashby-job-posting-right-pane p strong,
.ashby-job-posting-right-pane p b {
  font-family: 'Tiempos Text Medium';
  color: #181818;
  font-weight: 700;
  letter-spacing: 0.03em;
}

/* target H1 & H2 in the right pane of a job description */
.ashby-job-posting-right-pane h2,
.ashby-job-posting-right-pane h1 {
  font-family: 'Inter Display';
  color: #181818;
  font-weight: 900;
  font-size: 1.2081rem;
  letter-spacing: 0.03em;
}

/*Target Ashby Survey Form??*/
.ashby-survey-form-container {
  background: #fafafa;
  border: 1px solid #e5e5e5;
  border-radius: 4px;
  padding: 1.5rem;
  margin-top: 2rem;
}

/*Target the CONTAINER for the Entire 'Application' Tab in an individual Job Posting*/
/*Target Ashby Application Form Container*/
.ashby-application-form-container {
  background-color: white;
  border-radius: 4px;
  border: 1px solid #e5e5e5;
  padding: 2rem;
  font-family: 'Tiempos Text';
}

.ashby-application-form-failure-container {
  background-color: #fce8e8;
  border-left: 2px solid #dc3030;
  padding: 1rem 1.5rem;
  border-radius: 4px;
  margin-bottom: 1.5rem;
  color: #991b1b;
  font-family: var(--fontFamily);
  font-size: 0.875rem;
}

.ashby-application-form-field-entry {
  margin-bottom: 1.5rem;
}

.ashby-application-form-question-description {
  color: #666666;
  font-size: 0.813rem;
  margin-top: 0.25rem;
  line-height: 1.5;
  font-family: 'Tiempos Text';
}

.ashby-application-form-question-title {
  color: #181818;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  display: block;
  font-family: 'Inter Display';
  text-transform: capitalize;
  letter-spacing: 0.05em;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="url"],
textarea,
select {
  border: 1px solid #cccccc;
  border-radius: 4px;
  padding: 0.625rem 0.75rem;
  font-size: 0.938rem;
  width: 100%;
  transition: all 0.15s ease;
  background-color: white;
  color: #181818;
  font-family: 'Tiempos Text';
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus,
input[type="url"]:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: #181818;
  box-shadow: 0 0 0 1px #181818;
}

.ashby-application-form-section-container {
  margin-bottom: 2.5rem;
}

.ashby-application-form-section-header {
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #181818;
}

.ashby-application-form-section-header-description {
  color: #666666;
  font-size: 0.875rem;
  margin-top: 0.5rem;
  line-height: 1.6;
  font-family: 'Inter Display';
}

.ashby-application-form-section-header-title {
  color: #181818;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  font-family: 'Tiempos Text Medium';
}

.ashby-application-form-submit-button {
  background: #181818;
  color: white;
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 4px;
  font-weight: 500;
  font-size: 0.938rem;
  cursor: pointer;
  transition: all 0.15s ease;
  width: 100%;
  margin-top: 1rem;
  font-family: 'Inter Display';
  text-transform: capitalize;
  letter-spacing: 0.05em;
}

.ashby-application-form-submit-button:hover {
  background: #000000;
}

.ashby-application-form-submit-button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.ashby-application-form-success-container {
  background: #eafcec;
  border-left: 2px solid #29b458;
  padding: 1.5rem;
  border-radius: 4px;
  margin-bottom: 1.5rem;
  color: #065f46;
  font-weight: 500;
  font-family: var(--fontFamily);
  font-size: 0.875rem;
}