/* ============================================================
   CAREERS PAGE - Estilos específicos
   ============================================================ */

/* ===== HERO FULL VIEWPORT ===== */
.careers-hero {
  position: relative;
  background: #122f3f;
  height: 100vh;
  min-height: 600px;
  max-height: 900px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: -80px;
  padding-top: 100px;
}

.jobs-section {
    background: #f5f5f5;
}

/* Elementos de fondo eliminados */
.careers-hero__bg,
.careers-hero__overlay,
.careers-hero__pattern {
  display: none;
}

/* Grid de 2 columnas */
.careers-hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: var(--max-width, 1440px);
  width: 100%;
  padding: 0 var(--padding-x, clamp(1.5rem, 5vw, 6rem));
  align-items: center;
  animation: heroFadeIn 1s ease forwards;
  margin-top: 80px;
}

@keyframes heroFadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Columna Izquierda: Contenido */
.careers-hero__content {
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Badge */
.careers-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background:none;
  padding: 8px 20px 8px 14px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #94a3b8;
  margin-bottom: 28px;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  align-self: flex-start;
}


.careers-hero__badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2596BE;
  display: inline-block;
  animation: pulse-dot 2s ease infinite;
  box-shadow: 0 0 20px rgba(37, 150, 190, 0.3);
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}

/* Título */
.careers-hero h1 {
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 18px;
  letter-spacing: -2.5px;
  line-height: 1.1;
}

.careers-hero h1 .highlight {
  background: linear-gradient(135deg, #2596BE 0%, #4FC3F7 50%, #81D4FA 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

/* Descripción */
.careers-hero__description {
  font-size: clamp(16px, 1.5vw, 16px);
  color: #94a3b8;
  max-width: 560px;
  margin: 0 0 32px 0;
  line-height: 1.8;
  font-weight: 300;
  letter-spacing: 0.2px;
}

/* Search Bar con botón */
.careers-hero__search {
  max-width: 580px;
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
}

.careers-hero__search .search-icon {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: #94a3b8;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.careers-hero__search .search-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: #94a3b8;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke 0.3s ease;
}

.careers-hero__search input {
  flex: 1;
  padding: 18px 24px 18px 58px;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-family: inherit;
  background: #1b495f;
  color: #ffffff;
  transition: all 0.35s ease;
  outline: none;
}

.careers-hero__search input::placeholder {
  color: #7d8fa7;
  font-weight: 300;
}

.careers-hero__search input:focus {
  background: #1f5670;
}

.careers-hero__search input:focus ~ .search-icon svg,
.careers-hero__search input:focus + .search-icon svg {
  stroke: #2596BE;
}

/* Botón Search dentro del input */
.search-btn {
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  background: #2596BE;
  color: #ffffff;
  border: none;
  border-radius: 10px;
  padding: 10px 22px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  font-family: inherit;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  z-index: 1;
}

.search-btn:hover {
  background: #1a7a9e;
}

.search-btn svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.2s;
}

.search-btn:hover svg {
  transform: translateX(3px);
}

/* ===== COLUMNA DERECHA: IMAGEN + PROVE ===== */
.careers-hero__image-wrapper {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.careers-hero__image {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.careers-hero__image img {
  width: 100%;
  max-width: 650px;
  height: auto;
  border-radius: 16px;
  object-fit: contain;
  transition: transform 0.5s ease;
}


/* ===== PROVE BADGE (sobre la imagen, bottom-left) - TAMAÑO FIJO ===== */
.careers-hero__prove {
  position: absolute;
  bottom: 0px;
  right: 20px;
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 18px 14px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  z-index: 3;
  min-width: 200px;
  max-width: 250px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.careers-hero__prove:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

/* Avatar circular - TAMAÑO FIJO */
.prove__avatar {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 50%;
  background: #e8f4f8;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.prove__avatar svg {
  width: 22px;
  height: 22px;
  stroke: #2596BE;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Contenido del prove - TAMAÑO FIJO */
.prove__content {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  text-align: left;
  gap: 2px;
}

.prove__percentage {
  font-size: 18px;
  font-weight: 700;
  color: #0f172a;
  letter-spacing: -0.5px;
}

.prove__text {
  font-size: 12px;
  font-weight: 400;
  color: #64748b;
  line-height: 1.3;
}

/* ===== RESULTS META ===== */
.results-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
  flex-wrap: wrap;
  gap: 12px;
}

.results-meta h2 {
  font-size: 20px;
  font-weight: 600;
  color: var(--text, #1E2532);
}

.results-meta h2 span {
  font-weight: 400;
  color: var(--paragraph, #828BA2);
  font-size: 16px;
  margin-left: 8px;
}

/* ===== CLEAR BUTTON - con fondo blanco y border-radius 12px ===== */
.results-meta .clear-btn {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  color: var(--paragraph, #828BA2);
  font-size: 14px;
  cursor: pointer;
  padding: 8px 18px;
  border-radius: 12px;
  transition: 0.2s;
  font-family: inherit;
  display: none;
  align-items: center;
  gap: 6px;
}

.results-meta .clear-btn:hover {
  background: #f1f5f9;
  color: var(--text, #1E2532);
  border-color: #cbd5e1;
}

.results-meta .clear-btn.visible {
  display: inline-flex;
}

.results-meta .clear-btn svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ===== JOBS GRID ===== */
#jobs-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 28px;
}

/* ===== JOB CARD ===== */
.job-card {
  background: white;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow: hidden;
  opacity: 0;
  animation: cardFadeIn 0.5s ease forwards;
}

.job-card:nth-child(1) { animation-delay: 0.05s; }
.job-card:nth-child(2) { animation-delay: 0.1s; }
.job-card:nth-child(3) { animation-delay: 0.15s; }
.job-card:nth-child(4) { animation-delay: 0.2s; }
.job-card:nth-child(5) { animation-delay: 0.25s; }
.job-card:nth-child(6) { animation-delay: 0.3s; }

@keyframes cardFadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.job-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
  border-color: rgba(37, 150, 190, 0.15);
}

.job-card__body {
  padding: 24px 26px 20px;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 280px;
}

.job-card__header {
  margin-bottom: 12px;
}

.job-card__title {
  font-size: 18px;
  font-weight: 600;
  color: var(--text, #1E2532);
  margin-bottom: 8px;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.job-card__location {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--paragraph, #828BA2);
  font-weight: 500;
}

.job-card__location svg {
  width: 16px;
  height: 16px;
  stroke: #94a3b8;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.job-card__description {
  color: var(--paragraph, #828BA2);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 16px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.job-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}

.job-tag {
  display: inline-block;
  padding: 3px 12px;
  border-radius: 30px;
  font-size: 11px;
  font-weight: 500;
  background: rgba(37, 150, 190, 0.08);
  color: var(--primary, #2596BE);
  border: 1px solid rgba(37, 150, 190, 0.1);
  letter-spacing: 0.2px;
  transition: all 0.2s ease;
}

.job-tag:hover {
  background: rgba(37, 150, 190, 0.12);
  transform: translateY(-1px);
}

.job-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid rgba(0, 0, 0, 0.04);
  margin-top: auto;
  flex-shrink: 0;
}

.job-card__date {
  font-size: 12px;
  color: var(--paragraph, #828BA2);
  display: flex;
  align-items: center;
  gap: 6px;
}

.job-card__date svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: #94a3b8;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.btn-view-details {
  background: none;
  border: none;
  color: var(--primary, #2596BE);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  padding: 4px 0;
  border-radius: 6px;
  transition: all 0.2s;
  font-family: inherit;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.btn-view-details:hover {
  color: var(--vr-primary, #20749A);
  transform: translateX(4px);
}

.btn-view-details svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.2s;
}

.btn-view-details:hover svg {
  transform: translateX(4px);
}

/* ===== SKELETON ===== */
.skeleton-card {
  background: var(--card-bg, #F7F9FC);
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  overflow: hidden;
  min-height: 280px;
}

.skeleton-body {
  padding: 24px 26px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  height: 100%;
}

.skeleton-title {
  height: 24px;
  width: 85%;
  background: linear-gradient(90deg, #e2e8f0 25%, #f1f5f9 50%, #e2e8f0 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s ease infinite;
  border-radius: 6px;
}

.skeleton-location {
  height: 18px;
  width: 40%;
  background: linear-gradient(90deg, #e2e8f0 25%, #f1f5f9 50%, #e2e8f0 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s ease infinite;
  border-radius: 6px;
}

.skeleton-description {
  height: 60px;
  width: 100%;
  background: linear-gradient(90deg, #e2e8f0 25%, #f1f5f9 50%, #e2e8f0 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s ease infinite;
  border-radius: 6px;
  flex: 1;
}

.skeleton-tags {
  height: 24px;
  width: 60%;
  background: linear-gradient(90deg, #e2e8f0 25%, #f1f5f9 50%, #e2e8f0 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s ease infinite;
  border-radius: 6px;
}

.skeleton-footer {
  height: 20px;
  width: 50%;
  background: linear-gradient(90deg, #e2e8f0 25%, #f1f5f9 50%, #e2e8f0 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s ease infinite;
  border-radius: 6px;
  margin-top: auto;
}

@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ===== LOADING MORE ===== */
.loading-more {
  grid-column: 1 / -1;
  padding: 30px 20px;
  text-align: center;
  color: var(--paragraph, #828BA2);
}

.loading-more .spinner {
  display: inline-block;
  width: 30px;
  height: 30px;
  border: 3px solid rgba(37, 150, 190, 0.1);
  border-top-color: var(--primary, #2596BE);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

.loading-more p {
  margin-top: 10px;
  font-size: 14px;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ===== EMPTY / ERROR STATES ===== */
.empty-state,
.error-state {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 30px;
  background: white;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.empty-state svg {
  width: 48px;
  height: 48px;
  margin-bottom: 4px;
}

.empty-state p,
.error-state p {
  font-size: 18px;
  font-weight: 500;
  color: var(--text, #1E2532);
}

.empty-state__sub,
.error-state__sub {
  font-size: 14px;
  color: var(--paragraph, #828BA2);
  margin-top: 6px;
}

/* ===== MODAL ===== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(11, 14, 19, 0.7);
  backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 24px;
}

.modal-overlay.active {
  display: flex;
}

.modal-content {
  background: #ffffff;
  border-radius: 16px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow: hidden;
  padding: 36px 32px 0;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.2);
  position: relative;
  animation: modalSlideUp 0.3s ease;
  display: flex;
  flex-direction: column;
}

@keyframes modalSlideUp {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 18px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  border-radius: 8px;
  transition: 0.2s;
  line-height: 1;
  color: #94a3b8;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-close:hover {
  background: #f1f5f9;
  color: #0f172a;
}

.modal-close svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.modal-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--text, #1E2532);
  margin-bottom: 8px;
  padding-right: 30px;
}

.modal-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
  font-size: 14px;
  color: var(--paragraph, #828BA2);
  flex-wrap: wrap;
}

.modal-meta .dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #cbd5e1;
}

.modal-meta .modal-location {
  display: flex;
  align-items: center;
  gap: 6px;
}

.modal-meta .modal-location svg {
  width: 16px;
  height: 16px;
  stroke: #94a3b8;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.modal-meta .modal-date {
  display: flex;
  align-items: center;
  gap: 6px;
}

.modal-meta .modal-date svg {
  width: 14px;
  height: 14px;
  stroke: #94a3b8;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.modal-body-scroll {
  flex: 1 1 auto;
  overflow-y: auto;
  min-height: 0;
  padding-right: 6px;
  margin-bottom: 16px;
}

.modal-description {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text, #1E2532);
  white-space: pre-wrap;
  word-wrap: break-word;
  margin: 0;
}

.modal-footer-actions {
  position: sticky;
  bottom: 0;
  background: #ffffff;
  padding: 16px 0 28px;
  border-top: 1px solid #f1f5f9;
  margin-top: auto;
}

.modal-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.modal-tags .job-tag {
  font-size: 12px;
  padding: 4px 14px;
}

/* ===== MODAL APPLY BUTTON - sin shadow y border-radius 12px ===== */
.modal-apply {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 28px;
  background: var(--primary, #2596BE);
  color: #ffffff;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
  text-decoration: none;
}

.modal-apply:hover {
  background: var(--vr-primary, #20749A);
  transform: translateY(-2px);
}

.modal-content::-webkit-scrollbar {
  width: 10px;
}
.modal-content::-webkit-scrollbar-track {
  background: transparent;
  margin-block: 12px;
}
.modal-content::-webkit-scrollbar-thumb {
  background-color: rgba(160, 165, 180, 0.25);
  border-radius: 999px;
  border: 3px solid transparent;
  background-clip: padding-box;
}
.modal-content::-webkit-scrollbar-thumb:hover {
  background-color: rgba(160, 165, 180, 0.4);
}
.modal-content::-webkit-scrollbar-button {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
}

.modal-content {
  scrollbar-width: thin;
  scrollbar-color: rgba(160, 165, 180, 0.25) transparent;
}

/* ===== RESPONSIVE - PROVE CON TAMAÑO FIJO ===== */
@media (max-width: 1024px) {
  .careers-hero__grid {
    gap: 40px;
    margin-top: 40px;
  }
  
  .careers-hero__image img {
    max-width: 450px;
  }

  .careers-hero__prove {
    bottom: 0px;
    left: 15px;
    min-width: 200px;
    padding: 14px 18px 14px 14px;
  }

  .prove__avatar {
    width: 44px;
    height: 44px;
    min-width: 44px;
  }

  .prove__avatar svg {
    width: 22px;
    height: 22px;
  }

  .prove__percentage {
    font-size: 18px;
  }

  .prove__text {
    font-size: 12px;
  }
}

@media (max-width: 768px) {
  .careers-hero {
    min-height: 100vh;
    max-height: none;
    padding-top: 80px;
    height: auto;
  }

  .careers-hero__grid {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
    padding: 0 var(--padding-x, clamp(1.5rem, 5vw, 2rem));
    padding-top: 20px;
    padding-bottom: 40px;
    margin-top: 30px;
  }

  .careers-hero__content {
    text-align: center;
    align-items: center;
  }

  .careers-hero__badge {
    align-self: center;
  }

  .careers-hero__description {
    margin: 0 auto 32px auto;
  }

  .careers-hero__search {
    max-width: 100%;
  }

  .careers-hero__image-wrapper {
    order: 1;
    margin-top: 10px;
  }

  .careers-hero__image img {
    max-width: 100%;
    max-height: 400px;
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  .careers-hero__prove {
    bottom: 0px;
    left: 15px;
    min-width: 200px;
    padding: 14px 18px 14px 14px;
    border-radius: 12px;
  }

  .prove__avatar {
    width: 44px;
    height: 44px;
    min-width: 44px;
  }

  .prove__avatar svg {
    width: 22px;
    height: 22px;
  }

  .prove__percentage {
    font-size: 18px;
  }

  .prove__text {
    font-size: 12px;
  }

  .careers-hero h1 {
    font-size: clamp(30px, 7vw, 38px);
    letter-spacing: -1px;
  }

  .careers-hero__description {
    font-size: 15px;
    padding: 0 10px;
  }

  .careers-hero__search input {
    font-size: 15px;
    padding: 16px 20px 16px 52px;
  }

  .careers-hero__search .search-icon {
    left: 18px;
  }

  .careers-hero__search .search-icon svg {
    width: 18px;
    height: 18px;
  }

  .careers-hero__badge {
    font-size: 11px;
    padding: 6px 16px 6px 10px;
  }

  .search-btn {
    padding: 8px 16px;
    font-size: 13px;
  }
  .search-btn span {
    display: none;
  }
  .search-btn svg {
    width: 18px;
    height: 18px;
  }

  #jobs-container {
    grid-template-columns: 1fr;
  }

  .job-card__body {
    padding: 20px;
    min-height: 240px;
  }

  .modal-content {
    padding: 28px 20px 24px;
    margin: 16px;
    max-height: 90vh;
  }

  .modal-title {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .careers-hero {
    height: auto;
    min-height: 100vh;
  }

  .careers-hero__grid {
    padding-top: 30px;
    padding-bottom: 50px;
    gap: 20px;
    margin-top: 20px;
  }

  .careers-hero h1 {
    font-size: 36px;
  }

  .careers-hero__description {
    font-size: 13px;
  }

  .careers-hero__search input {
    font-size: 14px;
    padding: 14px 16px 14px 46px;
  }

  .careers-hero__search .search-icon {
    left: 14px;
  }

  .careers-hero__search .search-icon svg {
    width: 16px;
    height: 16px;
  }

  .careers-hero__image img {
    max-height: 300px;
  }

  .careers-hero__prove {
    bottom: 0px;
    left: 10px;
    min-width: 200px;
    padding: 14px 18px 14px 14px;
    border-radius: 12px;
  }

  .prove__avatar {
    width: 44px;
    height: 44px;
    min-width: 44px;
  }

  .prove__avatar svg {
    width: 22px;
    height: 22px;
  }

  .prove__percentage {
    font-size: 18px;
  }

  .prove__text {
    font-size: 12px;
  }

  .results-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .results-meta h2 {
    font-size: 18px;
  }

  .job-card__title {
    font-size: 16px;
  }
}