body {
  background-color: #f8f9fa;
}
.job-list-container {
  display: flex;
  gap: 2rem;
}
.job-list {
  width: 35%;
  max-height: 75vh;
  overflow-y: auto;
  border-right: 1px solid #dee2e6;
}
.job-details {
  width: 65%;
}
.job-list-item {
  background: #fff;
  padding: 1rem;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
  cursor: pointer;
  border-left: 4px solid transparent;
  transition: all 0.3s ease;
}
.job-list-item.active {
  border-left: 4px solid #0d6efd;
  background: #e9f2ff;
}
.job-list-item:hover {
  background: #f1f1f1;
}
.person-icon {
  color: #0d6efd;
  margin-left: 8px;
}
.job-full-details {
  background: white;
  padding: 2rem;
  border-radius: 0.5rem;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}
@media (max-width: 768px) {
  .job-list-container {
    flex-direction: column;
  }
  .job-list,
  .job-details {
    width: 100%;
  }
}


.job-banner {
  width: 100%;
  height: 75vh; /* altura adaptable a la pantalla */
  overflow: hidden;
  margin-bottom: -50px;
  position: relative;
}

.banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;         /* recorte elegante */
  object-position: center center; /* siempre centrado */
  display: block;
}

@media (max-width: 768px) {
  .job-banner {
    height: 20vh;
  }
}

.job-intro {
  margin-top: -1rem;
  margin-bottom: 3rem;
}

.job-headline {
  font-family: "szto-variable", sans-serif;
  font-size: 2.75rem;
  font-weight: 800;
  color: #595959;
  line-height: 1.2;
  padding-top: 5%;
}

.job-subtext {
  font-size: 1.125rem;
  color: #6c757d; /* gris claro elegante */
  margin-top: 0.5rem;
}

.job-cv {
  font-weight: 700;
  color: #0d6efd; /* azulito Bootstrap */
}
@media (max-width: 576px) {
  .job-headline {
    font-size: 1.5rem;
  }
  .job-subtext {
    font-size: 1rem;
  }
}


@media (max-width: 768px) {
  .job-list {
    display: none;
  }

  .job-details .job-full-details {
    display: block !important;
    margin-bottom: 2rem;
  }
}
#ubicacionFiltro {
  border-radius: 0.5rem;
  padding: 0.5rem 1rem;
}

