.career-job-left { grid-area: left; }
.career-job-features { grid-area: features; }
.career-job-salary { grid-area: salary; }
.career-job-cta { grid-area: cta; }

/* Desktop: 4 columnas (con salario) */
.career-job-card {
  display: grid;
  grid-template-columns: 350px 2.5fr 150px 180px;
  grid-template-areas: "left features salary cta";
  align-items: center;
  column-gap: 2rem;
  border-radius: 6px;
  padding: 3.8rem 3.2rem;
  padding-right: 3.2rem;
  margin-bottom: 1.8rem;
  position: relative;
}

/* Desktop: 3 columnas (sin salario) */
.career-job-card.no-salary {
  grid-template-columns: 450px 1fr 200px;
  grid-template-areas: "left features cta";
}

.career-job-card.is-blue {
  background: #0389D0;
  color: #fff;
}

.career-job-card.is-red {
  background: #174768;
  color: #fff;
}

/* Left Section */
.career-job-left {
  min-width: 0;
}

.career-job-left {
  min-width: 0;
}

.career-job-title {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.3;
  color: #fff;
  margin-bottom: 1rem;
}

.career-job-header {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.career-job-sub {
  font-size: 1.4rem;
  font-weight: 600;
  opacity: 0.95;
  margin-top: 0.5rem;
  color: rgba(255, 255, 255, 0.9);
}

/* Features List */
.career-job-features {
  flex: 1;
  list-style: none;
  padding: 0;
  margin: 0;
}

.career-job-features li {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  padding: 0.35rem 0;
  font-size: 1.4rem;
  font-weight: 600;
}

.career-job-check {
  width: 22px;
  height: 22px;
  min-width: 22px;
  min-height: 22px;
  aspect-ratio: 1 / 1;
  flex: 0 0 22px;
  box-sizing: border-box;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
  line-height: 1;
}

.career-job-check i {
  font-size: 12px;
  line-height: 1;
  display: block;
}

/* Salary Section */
.career-job-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-left: 5rem;
}

.career-job-salary {
  min-width: 220px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  color: #FFFFFF;
}

.career-job-salary .salary-label {
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.2;
  margin: 0;
  letter-spacing: 1px;
}

.career-job-salary .salary-from,
.career-job-salary .salary-up-to {
  font-size: 0.95rem;
  line-height: 1.1;
  margin: 0;
  opacity: 0.9;
}

.career-job-salary .salary-amount {
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1;
  margin: 6px 0 0 0;
  color: #FFFFFF;
}

/* Range salary styles */
.career-job-salary.is-range {
  gap: 8px;
}

.salary-range-row {
  display: flex;
  gap: 0.5rem;
  align-items: baseline;
  justify-content: center;
}

.salary-range-label {
  font-size: 0.75rem;
  line-height: 1.1;
  margin: 0;
  opacity: 0.9;
}

.salary-currency {
  font-size: 0.9rem;
  opacity: 0.9;
}

.salary-number {
  font-size: 1.3rem;
  font-weight: 800;
}

/* CTA Section */
.career-job-cta {
  min-width: 220px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 10;
}

.career-job-btn {
  background: #fff;
  color: #111;
  padding: 14px 18px;
  font-weight: 800;
  border-radius: 4px;
  text-decoration: none;
  display: inline-block;
  width: 190px;
  text-align: center;
  transition: transform 0.2s;
}

.career-job-btn:hover {
  transform: translateY(-2px);
}

/* TABLET: 2 columnas (576px - 1024px) */
@media (min-width: 576px) and (max-width: 1024px) {
  .career-job-card {
    grid-template-columns: 1fr 240px;
    grid-template-rows: auto auto;
    grid-template-areas: 
      "left salary"
      "features cta";
    column-gap: 2rem;
    row-gap: 1.4rem;
    align-items: start;
    padding: 2.2rem 1.8rem;
    padding-right: 50px;
    position: relative;
  }
  
  /* Sin salario en tablet */
  .career-job-card.no-salary {
    grid-template-columns: 1fr;
    grid-template-areas: 
      "left"
      "features"
      "cta";
    row-gap: 1.2rem;
    padding-right: 1.8rem;
  }
  
  .career-job-left {
    min-width: 0;
  }
  
  .career-job-features {
    margin-top: 0;
  }
  
  .career-job-features li {
    gap: 1rem;
    align-items: center;
  }
  
  .career-job-salary {
    text-align: right;
    min-width: auto;
    align-self: center;
    padding-right: 0.5rem;
    margin-left: 0;
  }
  
  .career-job-salary .salary-label {
    font-size: 1.1rem;
    font-weight: 700;
  }
  
  .career-job-salary .salary-from,
  .career-job-salary .salary-up-to {
    font-size: 0.9rem;
  }
  
  .career-job-salary .salary-amount {
    font-size: 2.5rem;
    font-weight: 900;
  }
  
  /* Salary range en tablet */
  .career-job-salary.is-range {
    gap: 4px;
  }
  
  .salary-range-row {
    justify-content: flex-end;
    gap: 0.4rem;
  }
  
  .salary-range-label {
    font-size: 0.7rem;
  }
  
  .salary-currency {
    font-size: 0.8rem;
  }
  
  .salary-number {
    font-size: 1.15rem;
  }
  
  .career-job-cta {
    text-align: center;
    min-width: auto;
    align-self: center;
    margin-right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .career-job-btn {
    width: auto;
    max-width: 260px;
    padding: 14px 24px;
  }
  
  .career-job-title {
    font-size: 3rem;
  }
  
  .career-job-sub {
    font-size: 1.8rem;
  }
  
  .career-job-features li {
    font-size: 2rem;
    padding: 0.35rem 0;
  }
  
  .career-job-check {
    width: 24px;
    height: 24px;
    min-width: 24px;
    min-height: 24px;
    flex: 0 0 24px;
  }
  
  .career-job-check i {
    font-size: 13px;
  }
}

/* MÓVIL: 1 columna (max-width: 575px) */
@media (max-width: 575px) {
  .pt-55 {
    padding-top: 10rem !important;
  }
  
  .career-jobs-wrap {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  
  .career-job-card,
  .career-job-card.no-salary {
    grid-template-columns: 1fr;
    grid-template-areas: 
      "left"
      "features"
      "salary"
      "cta";
    row-gap: 1.8rem;
    padding: 2rem 1.5rem;
    position: relative;
  }
  
  /* Sin salario en móvil */
  .career-job-card.no-salary {
    grid-template-areas: 
      "left"
      "features"
      "cta";
  }
  
  .career-job-left {
    min-width: 0;
  }
  
  .career-job-features {
    margin-top: 0;
    padding-top: 0;
  }
  
  .career-job-features li {
    gap: 1rem;
  }
  
  .career-job-salary {
    text-align: center;
    min-width: auto;
    padding: 0;
    margin-left: 0;
  }
  
  .career-job-salary .salary-label {
    font-size: 1.2rem;
    margin-bottom: 8px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    font-weight: 800;
  }
  
  .career-job-salary .salary-from,
  .career-job-salary .salary-up-to {
    font-size: 1rem;
    margin-bottom: 6px;
  }
  
  .career-job-salary .salary-amount {
    font-size: 2.8rem;
    font-weight: 900;
  }
  
  /* Salary range en móvil */
  .career-job-salary.is-range {
    gap: 6px;
  }
  
  .salary-range-row {
    justify-content: center;
    gap: 0.4rem;
  }
  
  .salary-range-label {
    font-size: 0.7rem;
  }
  
  .salary-currency {
    font-size: 0.8rem;
  }
  
  .salary-number {
    font-size: 1.2rem;
  }
  
  .career-job-cta {
    text-align: center;
    min-width: auto;
    margin-right: 0;
    padding-top: 0;
  }
  
  .career-job-footer {
    margin-left: 0;
  }
  
  .career-job-btn {
    padding: 1rem 2rem;
    font-size: 1rem;
    width: 100%;
    max-width: 280px;
    font-weight: 700;
  }
  
  .career-job-title {
    font-size: 1.6rem;
    line-height: 1.25;
    font-weight: 800;
  }
  
  .career-job-sub {
    font-size: 1.6rem;
  }
  
  .career-job-features li {
    font-size: 1.6rem;
    gap: 0.9rem;
  }
  
  .career-job-check {
    width: 22px;
    height: 22px;
    min-width: 22px;
    min-height: 22px;
    flex: 0 0 22px;
  }
  
  .career-job-check i {
    font-size: 12px;
  }
}

/* Hero Section Styles */
.hero-section {
  background: #FAFAFA;
  padding: 80px 20px;
  text-align: center;
}

.hero-tag {
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: #888;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.hero-title {
  font-size: 4.5rem;
  font-weight: 900;
  color: #000;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  text-transform: capitalize;
  padding: 0 100px;
}

.hero-description {
  font-size: 1.5rem;
  color: #555;
  max-width: 85%;
  margin: 0 auto;
  line-height: 1.8;
  font-family: 'fontello';
}

@media (max-width: 768px) {
  .hero-section {
    padding: 60px 15px;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-description {
    font-size: 1rem;
    max-width: 95%;
  }
}
