/* Shared job card list (jobs search, saved jobs, etc.) */
.jw-joblist-card[data-aos] {
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
}

.jw-joblist-stack {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.jw-joblist-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid #eef0f3;
  box-shadow: 0 1px 3px rgba(16, 24, 40, 0.06);
  width: 100%;
  position: relative;
  transition: box-shadow 0.15s ease, border-color 0.15s ease;
}

.jw-joblist-card:hover {
  border-color: #e2e5ea;
  box-shadow: 0 4px 14px rgba(16, 24, 40, 0.08);
}

.jw-joblist-logo-link {
  flex: 0 0 auto;
  text-decoration: none;
}

.jw-joblist-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 12px;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
}

.jw-joblist-main {
  flex: 1 1 auto;
  min-width: 0;
  padding-right: 76px;
}

.jw-joblist-title-link {
  display: block;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.35;
  color: #111827;
  text-decoration: none;
  margin: 0 0 6px;
}

.jw-joblist-title-link:hover {
  color: #0a65cc;
}

.jw-joblist-company-row {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
  min-width: 0;
}

.jw-joblist-company-link {
  font-size: 15px;
  font-weight: 600;
  color: #374151;
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.jw-joblist-company-link:hover {
  color: #0a65cc;
}

.jw-joblist-verified {
  flex: 0 0 auto;
  display: inline-flex;
  line-height: 0;
}

.jw-joblist-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 14px;
}

.jw-joblist-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
}

.jw-joblist-meta-icon {
  flex-shrink: 0;
  color: #9ca3af;
}

.jw-joblist-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.jw-joblist-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: #374151;
  background: #f1f2f4;
  line-height: 1.2;
}

.jw-joblist-tag-icon {
  flex-shrink: 0;
  color: #9ca3af;
}

.jw-joblist-aside {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.jw-joblist-time {
  font-size: 13px;
  color: #9ca3af;
  white-space: nowrap;
}

.jw-joblist-bookmark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 36px;
  padding: 8px 12px;
  color: #175cd3;
  background: #fff;
  border: 1px solid #d0d5dd;
  text-decoration: none;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  transition: color 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}

.jw-joblist-bookmark:hover {
  color: #175cd3;
  background: #f8faff;
  border-color: #b4c6e8;
}

.jw-joblist-bookmark.is-saved {
  color: #175cd3;
  background: #f8faff;
  border-color: #b4c6e8;
}

.jw-joblist-bookmark .jb-save-label {
  line-height: 1;
}

.jw-joblist-bookmark.is-saved svg path {
  fill: currentColor;
}

@media (max-width: 575.98px) {
  .jw-joblist-card {
    flex-wrap: wrap;
    padding: 16px;
  }

  .jw-joblist-main {
    padding-right: 0;
    width: 100%;
  }

  .jw-joblist-aside {
    position: static;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-top: 4px;
  }
}
