/* -------------------------------------------------
   Career Listings
   ------------------------------------------------- */
.sifency-career-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 30px;
}
.sifency-career-item {
  display: flex;
  flex-direction: column;
  padding: 30px;
  border: 1px solid #e9ecef;
  border-left: 4px solid #6c757d;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.sifency-career-item.even-item {
  border-left-color: var(--sifency-addons-themecolor);
}

/* === Header === */
.sifency-career-item__header {
  margin-bottom: 20px;
}

/* Title */
.sifency-career-item__title {
  margin: 0 0 15px;
}

.sifency-career-item__title a {
  text-decoration: none;
  transition: color 0.3s ease;
}

.sifency-career-item__title a:hover {
  color: var(--sifency-addons-themecolor);
}

/* === Meta Info === */
.sifency-career-item__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.sifency-career-item__location,
.sifency-career-item__type {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  font-size: 0.8em;
  font-weight: 500;
  color: #495057;
  background: #f8f9fa;
  border-radius: 20px;
  line-height: 1;
}

.sifency-career-item__location::before {
  margin-right: 6px;
}

.sifency-career-item__type::before {
  margin-right: 6px;
}

/* === Excerpt === */
.sifency-career-item__excerpt {
  flex-grow: 1;
  margin-bottom: 25px;
  line-height: 1.6;
}

/* === Footer / Button === */
.sifency-career-item__footer {
  margin-top: auto;
}
.sifency-career-item__button {
  display: inline-block;
  padding: 12px 25px;
  background: var(--sifency-addons-themecolor);
  color: #fff;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  border-radius: 5px;
  transition: all 0.3s ease;
}
.sifency-career-item__button:hover {
  background: var(--sifency-addons-themecolor);
  transform: translateY(-2px);
  color: #fff;
}