/* Custom Style Fixes - Aligned with Corporate CSS */

/* =====================================================
   Filters and Sort Row Container
   ===================================================== */

.filters-and-sort-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  margin-left: 10px;
  margin-right: 10px;
}

/* =====================================================
   Sort Toggle Styling
   ===================================================== */

.sort-container {
  flex-shrink: 0;
  padding: 10px 0;
  margin-left: auto; /* Always anchor to the right */
}

.sort-toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-family: 'Proxima Nova', Proximanova, sans-serif;
  font-size: 14px;
  color: var(--black-31, #1f1f1f);
  user-select: none;
}

.sort-toggle input[type="checkbox"] {
  display: none;
}

.sort-toggle-slider {
  position: relative;
  width: 44px;
  height: 24px;
  background-color: var(--white-smoke, #f0f0f0);
  border-radius: 12px;
  transition: background-color 0.3s ease;
  border: 1px solid var(--dim-grey, #6f6f6f);
}

.sort-toggle-slider::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  width: 18px;
  height: 18px;
  background-color: var(--white, #fff);
  border-radius: 50%;
  transition: transform 0.3s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.sort-toggle input[type="checkbox"]:checked + .sort-toggle-slider {
  background-color: var(--baptist-green, #00b140);
  border-color: var(--baptist-green, #00b140);
}

.sort-toggle input[type="checkbox"]:checked + .sort-toggle-slider::after {
  transform: translateX(20px);
}

.sort-toggle-label {
  font-weight: 500;
  white-space: nowrap;
}

/* =====================================================
   Mobile Filter Toggle
   ===================================================== */

.mobile-filter-toggle-container {
  display: none; /* Hidden on desktop */
  padding: 0 10px;
  margin-bottom: 15px;
}

.mobile-filter-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 12px 20px;
  background-color: var(--baptist-blue, #001a72);
  color: var(--white, #fff);
  border: none;
  border-radius: 8px;
  font-family: 'Proxima Nova', Proximanova, sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.mobile-filter-toggle:hover {
  background-color: #001459;
}

.mobile-filter-toggle svg {
  flex-shrink: 0;
}

.mobile-filter-chevron {
  transition: transform 0.3s ease;
  margin-left: auto;
}

.mobile-filter-toggle[aria-expanded="true"] .mobile-filter-chevron {
  transform: rotate(180deg);
}

/* Mobile sticky wrapper - no special styling on desktop */
.mobile-sticky-wrapper {
  /* No styling on desktop - just a pass-through container */
}

/* Mobile filter close button - hidden on desktop */
.mobile-filter-close {
  display: none;
}

/* =====================================================
   Active Filter Tags
   ===================================================== */

.active-filters-container {
  display: none;
  flex-wrap: wrap;
  gap: 10px;
  padding: 15px;
  background-color: var(--white-smoke-2, #f8f9fc);
  border-radius: 8px;
  align-items: center;
  flex: 1;
  min-width: 0;
}

.active-filters-container.has-filters {
  display: flex;
}

.filter-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: var(--white, #fff);
  border: 1px solid var(--deep-sky-blue, #00afd7);
  border-radius: 20px;
  padding: 5px 10px 5px 12px;
  font-family: 'Proxima Nova', Proximanova, sans-serif;
  font-size: 13px;
  line-height: 1;
  color: var(--black-31, #1f1f1f);
  transition: all 0.2s ease;
}

.filter-tag:hover {
  background-color: var(--deep-sky-blue-2, #00afd70f);
  border-color: var(--baptist-blue, #001a72);
}

.filter-tag-label {
  font-weight: 600;
  color: var(--baptist-blue, #001a72);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.filter-tag-text {
  color: var(--black-31, #1f1f1f);
  max-width: 180px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 13px;
}

.filter-tag-remove {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  min-width: 16px;
  min-height: 16px;
  max-width: 16px;
  max-height: 16px;
  background-color: var(--dim-grey, #6f6f6f);
  color: var(--white, #fff);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.2s ease;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  flex-shrink: 0;
}

.filter-tag-remove svg {
  display: block;
  width: 8px;
  height: 8px;
}

.filter-tag-remove:hover {
  background-color: var(--baptist-blue, #001a72);
}

/* Clear All button styling */
.filter-tag.clear-all-filters {
  background-color: var(--baptist-blue, #001a72);
  border-color: var(--baptist-blue, #001a72);
  color: var(--white, #fff);
  cursor: pointer;
  font-weight: 600;
  padding: 6px 14px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.filter-tag.clear-all-filters:hover {
  background-color: #001459;
  border-color: #001459;
}

/* Responsive adjustments for filter tags and sort */
@media screen and (max-width: 767px) {
  /* Create a sticky container for the mobile header elements */
  .div-block-143 {
    position: relative;
  }

  /* Sticky wrapper for filter bubbles and toggle - sticks together as one unit */
  .mobile-sticky-wrapper {
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: var(--white, #fff);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  }

  .div-block-150 {
    padding: 12px 10px 5px;
    background-color: var(--white, #fff);
  }

  .filters-and-sort-row {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
    padding: 10px;
    margin-left: 0;
    margin-right: 0;
    background-color: var(--white, #fff);
    border-bottom: 1px solid var(--white-smoke, #f0f0f0);
  }

  .sort-container {
    padding: 5px 0;
    margin-left: auto;
  }

  .active-filters-container {
    padding: 10px;
    gap: 8px;
    width: 100%;
    order: 2; /* Move filter tags below sort on mobile */
  }

  /* Show mobile filter toggle */
  .mobile-filter-toggle-container {
    display: block;
    padding: 10px;
    background-color: var(--white, #fff);
  }

  /* Remove default Webflow column padding on mobile only */
  .w-col-small-small-stack {
    padding-left: 0px !important;
    padding-right: 0px !important;
  }

  /* Hide filter column by default on mobile */
  #filter-column {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 0;
    overflow: visible;
  }

  #filter-column.mobile-expanded {
    display: flex;
    flex-direction: column;
  }

  #filter-column #filter-panel {
    position: relative;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    overflow-x: visible;
    background-color: var(--white, #fff);
    border-radius: 0 0 16px 16px;
    padding: 20px;
    padding-bottom: 30px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    animation: slideDown 0.3s ease;
  }

  @keyframes slideDown {
    from {
      transform: translateY(-20px);
      opacity: 0;
    }
    to {
      transform: translateY(0);
      opacity: 1;
    }
  }

  /* Mobile close button styling */
  .mobile-filter-close {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 6px;
    width: 100%;
    padding: 10px 0 12px 0;
    margin-bottom: 12px;
    background: none;
    border: none;
    border-bottom: 1px solid var(--white-smoke, #f0f0f0);
    color: var(--baptist-blue, #001a72);
    font-family: 'Proxima Nova', Proximanova, sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    position: relative;
    z-index: 10;
  }

  .mobile-filter-close:hover,
  .mobile-filter-close:active {
    color: var(--deep-sky-blue, #00afd7);
  }

  .mobile-filter-close svg {
    flex-shrink: 0;
    pointer-events: none;
  }

  .mobile-filter-close span {
    pointer-events: none;
  }

  /* Add close indicator at bottom of panel */
  #filter-column #filter-panel::after {
    content: 'Tap outside to close';
    display: block;
    text-align: center;
    color: var(--dim-grey, #6f6f6f);
    font-size: 12px;
    padding-top: 15px;
    margin-top: 15px;
    border-top: 1px solid var(--white-smoke, #f0f0f0);
  }

  /* Make dropdowns work properly in mobile panel */
  #filter-panel .dropdown-2 {
    width: 100%;
    position: relative;
  }

  #filter-panel .dropdown-2 .w-dropdown-list {
    position: relative !important;
    max-height: none;
    overflow: visible;
  }

  #filter-panel .dropdown-list-2 {
    position: relative !important;
    width: 100% !important;
    left: 0 !important;
    top: 0 !important;
    transform: none !important;
  }

  /* Ensure dropdown content shows fully */
  #filter-panel .w-dropdown {
    overflow: visible;
  }

  .filter-tag {
    font-size: 12px;
    padding: 4px 8px 4px 10px;
  }

  .filter-tag-text {
    max-width: 120px;
    font-size: 12px;
  }

  .filter-tag-label {
    font-size: 9px;
  }

  .sort-toggle {
    font-size: 13px;
    gap: 8px;
  }

  .sort-toggle-slider {
    width: 40px;
    height: 22px;
  }

  .sort-toggle-slider::after {
    width: 16px;
    height: 16px;
  }

  .sort-toggle input[type="checkbox"]:checked + .sort-toggle-slider::after {
    transform: translateX(18px);
  }
}

@media screen and (max-width: 479px) {
  .div-block-150 {
    padding: 10px 8px 5px;
  }

  .div-block-150 h1 {
    font-size: 22px;
  }

  .filters-and-sort-row {
    padding: 8px;
  }

  .mobile-filter-toggle-container {
    padding: 8px;
  }

  .mobile-filter-toggle {
    padding: 10px 15px;
    font-size: 14px;
  }

  .filter-tag {
    font-size: 11px;
    padding: 4px 6px 4px 8px;
    gap: 4px;
  }

  .filter-tag-text {
    max-width: 90px;
    font-size: 11px;
  }

  .filter-tag-remove {
    width: 14px;
    height: 14px;
    min-width: 14px;
    min-height: 14px;
    max-width: 14px;
    max-height: 14px;
  }

  .filter-tag-remove svg {
    width: 7px;
    height: 7px;
  }

  .filter-tag.clear-all-filters {
    font-size: 10px;
    padding: 5px 10px;
  }

  .sort-toggle {
    font-size: 12px;
    gap: 6px;
  }

  .sort-toggle-slider {
    width: 36px;
    height: 20px;
  }

  .sort-toggle-slider::after {
    width: 14px;
    height: 14px;
  }

  .sort-toggle input[type="checkbox"]:checked + .sort-toggle-slider::after {
    transform: translateX(16px);
  }

  #filter-column #filter-panel {
    padding: 15px;
    max-height: 90vh;
  }

  .mobile-filter-close {
    font-size: 13px;
    padding-bottom: 10px;
    margin-bottom: 10px;
  }
}

/* CSS Variables from corporate.css */
:root {
  --baptist-blue: #001a72;
  --white: white;
  --white-smoke: #f0f0f0;
  --black: black;
  --baptist-green: #00b140;
  --dim-grey: #6f6f6f;
  --black-31: #1f1f1f;
  --orange: #ffa300;
  --deep-sky-blue: #00afd7;
  --deep-sky-blue-2: #00afd70f;
  --dark-magenta: #93328e;
  --white-smoke-2: #f8f9fc;
  --black-30: #0000004d;
}

/* =====================================================
   FIX: Job Title Overflow/Bleeding Issues
   ===================================================== */

/* Fix job title container to prevent overflow */
.div-block-151 {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0;
  max-width: calc(100% - 120px);
  overflow: hidden;
  flex: 1;
  min-width: 0;
}

/* Fix job title text overflow */
.heading-59.jobtitle,
.heading-59-copy.jobtitle {
  display: inline;
  word-wrap: break-word;
  overflow-wrap: break-word;
  white-space: normal;
  max-width: 100%;
  line-height: 1.4;
  margin-right: 6px;
  margin-top: 0;
  margin-bottom: 0;
}

.heading-59.job-info.jobtitle,
.heading-59-copy.job-info.jobtitle {
  display: block;
  word-wrap: break-word;
  overflow-wrap: break-word;
  white-space: normal;
  max-width: 100%;
  line-height: 1.3;
}

/* Job metadata inline with title */
.heading-59.dash,
.heading-59-copy.dash {
  display: inline;
  white-space: nowrap;
  margin: 0 4px;
}

.heading-59.jobrequisition,
.heading-59-copy.jobrequisition {
  display: inline;
  white-space: nowrap;
}

/* Job object card improvements */
.div-block-144.margin-bottom.job-object {
  overflow: hidden;
  padding: 0;
}

.div-block-144.margin-bottom.job-object.show {
  display: block;
}

.link-block-11.hash-key {
  display: block;
  overflow: hidden;
  padding: 15px 20px;
}

/* Fix for job info row layout */
.div-block-146 {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 15px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--white-smoke, #f0f0f0);
}

/* Ensure button doesn't get squished */
.div-block-146 .button-5 {
  flex-shrink: 0;
  white-space: nowrap;
  margin-left: auto;
}

/* =====================================================
   Typography Alignment with Corporate CSS
   ===================================================== */

/* Main page heading */
.div-block-150 h1 {
  font-family: Merriweather, serif;
  color: var(--baptist-blue);
  font-weight: 700;
  margin-bottom: 10px;
}

/* Section headings */
.div-block-144 h3,
h3 {
  font-family: Merriweather, serif;
  color: var(--baptist-blue);
  font-weight: 700;
}

/* Filter section headings */
.div-block-144 h3 {
  font-size: 18px;
  line-height: 24px;
  margin-top: 15px;
  margin-bottom: 10px;
}

/* Job title styling - aligned with corporate */
.heading-59,
.heading-59-copy {
  font-family: 'Proxima Nova', Proximanova, sans-serif;
  color: var(--baptist-blue);
  margin-top: 0;
  margin-bottom: 0;
}

.heading-59.jobtitle,
.heading-59-copy.jobtitle {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--baptist-blue);
}

.heading-59.job-info.jobtitle,
.heading-59-copy.job-info.jobtitle {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
}

/* Job metadata text - department, req ID */
.heading-59.dash,
.heading-59.jobrequisition,
.heading-59-copy.dash,
.heading-59-copy.jobrequisition,
.heading-59.hrorganizationunit,
.heading-59-copy.hrorganizationunit {
  font-size: 13px;
  font-weight: 400;
  color: var(--dim-grey);
  display: inline;
}

.heading-59.dash,
.heading-59-copy.dash {
  margin-left: 0;
  margin-right: 0;
}

/* Body text styling */
.paragraph-34,
.paragraph-36,
.department-filter-content.description {
  font-family: Proximanova, 'Proxima Nova', sans-serif;
}

.paragraph-34 {
  font-size: 14px;
  line-height: 1.4;
  margin-bottom: 0;
  color: var(--black-31, #1f1f1f);
}

/* =====================================================
   Button Styling - Corporate Alignment
   ===================================================== */

.button-5 {
  background-color: var(--baptist-green);
  color: var(--white);
  font-family: 'Proxima Nova', Proximanova, sans-serif;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 12px;
  transition: background-color 0.2s ease, transform 0.1s ease;
  display: inline-block;
}

.button-5:hover {
  background-color: #009930;
  transform: translateY(-1px);
}

.button-5.blue {
  background-color: var(--baptist-blue);
}

.button-5.blue:hover {
  background-color: #001459;
}

/* =====================================================
   Job Card Styling Improvements
   ===================================================== */

/* Job card container */
.div-block-144.margin-bottom.job-object {
  background-color: var(--white);
  border: 1px solid var(--white-smoke);
  border-radius: 8px;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
  margin-bottom: 15px;
}

.div-block-144.margin-bottom.job-object:hover {
  box-shadow: 0 4px 12px rgba(0, 26, 114, 0.1);
  border-color: var(--deep-sky-blue);
}

/* Job card link styling */
.link-block-11 {
  color: var(--black-31);
  text-decoration: none;
}

.link-block-11:hover {
  text-decoration: none;
}

.link-block-11:hover .heading-59.jobtitle,
.link-block-11:hover .heading-59-copy.jobtitle {
  color: var(--deep-sky-blue);
}

/* Job metadata grid */
.grid-34 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 12px;
}

.div-block-145 {
  display: flex;
  align-items: center;
  gap: 8px;
}

.html-embed-11 {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* =====================================================
   Filter Styling Improvements
   ===================================================== */

/* Filter containers */
.dropdown-2 {
  border: 1px solid var(--white-smoke);
  border-radius: 4px;
  margin-bottom: 10px;
}

.dropdown-toggle-3 {
  font-family: 'Proxima Nova', Proximanova, sans-serif;
  font-weight: 600;
  color: var(--baptist-blue);
  padding: 12px 15px;
}

/* Filter item styling */
.department-filter,
.location-filter,
.worktype-filter {
  padding: 8px 10px;
  border-radius: 4px;
  transition: background-color 0.15s ease;
}

.department-filter:hover,
.location-filter:hover,
.worktype-filter:hover {
  background-color: var(--white-smoke-2);
}

.department-filter.selected,
.location-filter.selected,
.worktype-filter.selected {
  background-color: var(--deep-sky-blue-2);
  color: var(--deep-sky-blue);
  font-weight: 600;
}

/* Job count badge */
.job-count {
  background-color: var(--deep-sky-blue);
  color: var(--white);
  font-family: 'Proxima Nova', Proximanova, sans-serif;
  font-size: 12px;
  font-weight: 600;
  padding: 2px 10px;
  border-radius: 12px;
  min-width: 30px;
  text-align: center;
}

/* =====================================================
   Job Detail Page Styling
   ===================================================== */

/* Back button styling */
.link-block-10 {
  color: var(--baptist-blue);
  font-family: 'Proxima Nova', Proximanova, sans-serif;
  font-weight: 600;
  transition: color 0.2s ease;
}

.link-block-10:hover {
  color: var(--deep-sky-blue);
}

/* Job details content */
.job-info.positiondescription_translation {
  font-family: Proximanova, 'Proxima Nova', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--black-31);
}

.job-info.positiondescription_translation p {
  margin-bottom: 15px;
}

.job-info.positiondescription_translation ul,
.job-info.positiondescription_translation ol {
  margin-bottom: 15px;
  padding-left: 25px;
}

.job-info.positiondescription_translation li {
  margin-bottom: 8px;
  line-height: 1.6;
}

/* Notice banner styling */
.div-block-152 {
  background-color: var(--orange);
  border-radius: 8px;
  padding: 15px 20px;
}

.heading-61 {
  font-family: 'Proxima Nova', Proximanova, sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--black-31);
  margin: 0;
}

/* Video testimonial section */
.video-testimonial-parent {
  margin-top: 30px;
  margin-bottom: 30px;
}

.heading-60 {
  font-family: Merriweather, serif;
  color: var(--baptist-blue);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

/* =====================================================
   Search Input Styling
   ===================================================== */

.text-field-5 {
  font-family: Proximanova, 'Proxima Nova', sans-serif;
  border: 1px solid var(--white-smoke);
  border-radius: 4px;
  padding: 12px 15px;
  font-size: 16px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.text-field-5:focus {
  border-color: var(--deep-sky-blue);
  box-shadow: 0 0 0 3px var(--deep-sky-blue-2);
  outline: none;
}

/* =====================================================
   Loading State Styling
   ===================================================== */

.loading-jobs {
  background-color: var(--white-smoke-2);
  border: 1px dashed var(--white-smoke);
  border-radius: 8px;
}

.loading-jobs .heading-59 {
  color: var(--dim-grey);
}

/* Jobs Loading Indicator - for appending more jobs */
.jobs-loading-indicator {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 20px;
  margin: 15px 0;
  background-color: var(--white-smoke-2, #f8f9fc);
  border-radius: 8px;
  font-family: 'Proxima Nova', Proximanova, sans-serif;
  font-size: 14px;
  color: var(--dim-grey, #6f6f6f);
}

.jobs-loading-indicator.visible {
  display: flex;
}

.loading-spinner {
  width: 20px;
  height: 20px;
  border: 2px solid var(--white-smoke, #f0f0f0);
  border-top-color: var(--baptist-blue, #001a72);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* =====================================================
   Responsive Adjustments
   ===================================================== */

@media screen and (max-width: 991px) {
  .grid-34 {
    grid-template-columns: repeat(2, 1fr);
  }

  .heading-59.jobtitle,
  .heading-59-copy.jobtitle {
    font-size: 15px;
  }

  .heading-59.job-info.jobtitle,
  .heading-59-copy.job-info.jobtitle {
    font-size: 18px;
  }

  .div-block-151 {
    max-width: calc(100% - 100px);
  }
}

@media screen and (max-width: 767px) {
  /* Job title container - stack vertically on mobile */
  .div-block-151 {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    max-width: 100%;
    width: 100%;
  }

  /* Hide the dash separator on mobile */
  .heading-59.dash,
  .heading-59-copy.dash {
    display: none;
  }

  /* Job requisition styling */
  .heading-59.jobrequisition,
  .heading-59-copy.jobrequisition {
    margin-left: 0;
    font-size: 12px;
    display: block;
    color: var(--dim-grey, #6f6f6f);
  }

  /* Organization unit on mobile */
  .heading-59.hrorganizationunit,
  .heading-59-copy.hrorganizationunit {
    display: block;
    font-size: 12px;
    color: var(--dim-grey, #6f6f6f);
    margin-bottom: 2px;
  }

  /* Job info row - stack on mobile */
  .div-block-146 {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .div-block-146 .button-5 {
    margin-left: 0;
    text-align: center;
    width: 100%;
  }

  /* Job metadata grid - single column on mobile */
  .grid-34 {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  /* Job card padding adjustment for mobile */
  .link-block-11.hash-key {
    padding: 12px 15px;
  }

  .button-5 {
    text-align: center;
    width: 100%;
    padding: 10px 16px;
  }
}

@media screen and (max-width: 479px) {
  .heading-59.jobtitle,
  .heading-59-copy.jobtitle {
    font-size: 14px;
  }

  .heading-59.job-info.jobtitle,
  .heading-59-copy.job-info.jobtitle {
    font-size: 16px;
  }

  .paragraph-34 {
    font-size: 13px;
  }

  /* Even smaller padding on very small screens */
  .link-block-11.hash-key {
    padding: 10px 12px;
  }

  /* Reduce icon size on very small screens */
  .html-embed-11 {
    width: 16px;
    height: 16px;
  }

  .div-block-145 {
    gap: 6px;
  }
}
