/* Jobs/Ofertes — extret de hero.css per /trabaja-con-nosotros i /ofertas/{slug} */

.t-jobs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
  padding: 20px 0 40px;
  width: 100%;
}

.t-job-box {
  display: block;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0,0,0,.06);
  transition: box-shadow .2s, transform .2s;
}

.t-job-box:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,.12);
  transform: translateY(-2px);
}

.t-job-box-inner {
  padding: 24px;
}

.t-job-icon-wrap {
  font-size: 40px;
  color: #FF7517;
  margin-bottom: 16px;
  line-height: 1;
}

.t-job-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 14px;
}

.t-job-tag {
  font-family: 'Rubik', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .05em;
  text-transform: uppercase;
  background: #fff4ec;
  color: #FF7517;
  border: 1px solid #ffd4b0;
  border-radius: 3px;
  padding: 2px 8px;
}

.t-job-title {
  font-family: 'Rajdhani', sans-serif !important;
  font-size: 22px !important;
  font-weight: 700 !important;
  color: #1e1e1e !important;
  margin: 0 0 10px !important;
  line-height: 1.2 !important;
}

.t-job-summary {
  font-family: 'Rubik', sans-serif;
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin: 0 0 18px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.t-job-cta {
  font-family: 'Rubik', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #FF7517;
}

/* Detall d'oferta */


.t-job-detail-wrap {
  max-width: 860px;
  margin: 0 auto;
  padding: 40px 20px 80px;
  font-family: 'Rubik', sans-serif;
}

.t-job-back {
  display: inline-block;
  color: #FF7517;
  font-size: 14px;
  text-decoration: none;
  margin-bottom: 32px;
}

.t-job-back:hover { opacity: .7; }

.t-job-detail-header {
  border-bottom: 2px solid #f0f0f0;
  padding-bottom: 28px;
  margin-bottom: 32px;
}

.t-job-detail-title {
  font-family: 'Rajdhani', sans-serif !important;
  font-size: 42px !important;
  font-weight: 700 !important;
  color: #1e1e1e !important;
  margin: 0 0 12px !important;
  line-height: 1.1 !important;
}

.t-job-detail-summary {
  font-size: 16px;
  color: #555;
  line-height: 1.7;
  margin: 0 0 14px;
}

.t-job-detail-deadline,
.t-job-detail-salary {
  font-size: 14px;
  color: #888;
  margin: 4px 0;
}

.t-job-detail-body {
  font-size: 15px;
  color: #444;
  line-height: 1.8;
}

.t-job-detail-body p { margin: 0 0 14px; }

.t-job-detail-body ul, .t-job-detail-body ol { padding-left: 20px; margin: 0 0 14px; }

.t-job-detail-body li { margin-bottom: 6px; }

.t-job-apply {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid #f0f0f0;
}

.t-job-apply-btn {
  display: inline-block;
  background: #FF7517;
  color: #fff;
  font-family: 'Rubik', sans-serif;
  font-size: 15px;
  font-weight: 500;
  padding: 14px 36px;
  border-radius: 50px;
  text-decoration: none;
  transition: background .2s;
}

.t-job-apply-btn:hover { background: #e06610; }
