.jobrf-live {
  scroll-margin-top: 88px;
  padding: 72px 24px;
  color: #f5f8ff;
  background: radial-gradient(circle at 50% 0%, rgba(12, 190, 219, 0.11), transparent 42%), #02050b;
}

.jobrf-shell {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.jobrf-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 28px;
}

.jobrf-eyebrow {
  margin: 0 0 8px;
  color: #12bedb;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.jobrf-heading h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.08;
}

.jobrf-heading > p {
  max-width: 430px;
  margin: 0;
  color: #8b9ab4;
  font-size: 16px;
  line-height: 1.6;
}

.jobrf-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.jobrf-card {
  display: flex;
  min-height: 250px;
  flex-direction: column;
  padding: 24px;
  border: 1px solid rgba(123, 159, 195, 0.18);
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(10, 23, 40, 0.95), rgba(4, 10, 20, 0.98));
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.24);
}

.jobrf-card__top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 20px;
}

.jobrf-card__company {
  margin: 0 0 7px;
  color: #7f90ab;
  font-size: 13px;
}

.jobrf-card h3 {
  margin: 0;
  color: #fff;
  font-size: 21px;
  line-height: 1.3;
}

.jobrf-card__salary {
  flex: 0 0 auto;
  color: #13c8e5;
  font-size: 14px;
  font-weight: 700;
}

.jobrf-card__meta,
.jobrf-card__description {
  margin: 16px 0 0;
  color: #9dabc1;
  font-size: 14px;
  line-height: 1.55;
}

.jobrf-card__description {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.jobrf-card__footer {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-top: auto;
  padding-top: 22px;
}

.jobrf-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.jobrf-tags button {
  min-height: 34px;
  padding: 6px 10px;
  border: 1px solid rgba(18, 190, 219, 0.25);
  border-radius: 999px;
  color: #9eddea;
  background: rgba(18, 190, 219, 0.08);
  cursor: pointer;
}

.jobrf-card__action,
.jobrf-retry {
  display: inline-flex;
  min-height: 44px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 17px;
  border: 0;
  border-radius: 12px;
  color: #001017;
  background: #12bedb;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 180ms ease, box-shadow 180ms ease;
}

.jobrf-card__action:hover,
.jobrf-card__action:focus-visible,
.jobrf-retry:hover,
.jobrf-retry:focus-visible {
  background: #50d6ed;
  box-shadow: 0 0 0 4px rgba(18, 190, 219, 0.16);
  outline: none;
}

.jobrf-skeleton {
  height: 250px;
  margin-top: 24px;
  border-radius: 22px;
  background: linear-gradient(100deg, rgba(19, 43, 68, 0.45) 20%, rgba(29, 65, 95, 0.65) 45%, rgba(19, 43, 68, 0.45) 70%);
  background-size: 200% 100%;
  animation: jobrf-shimmer 1.4s ease-in-out infinite;
}

@keyframes jobrf-shimmer {
  from { background-position: 200% 0; }
  to { background-position: -200% 0; }
}

@media (prefers-reduced-motion: reduce) {
  .jobrf-skeleton { animation: none; }
  .jobrf-card__action, .jobrf-retry { transition: none; }
}

@media (max-width: 760px) {
  .jobrf-live { padding: 48px 16px; }
  .jobrf-heading, .jobrf-card__top, .jobrf-card__footer { align-items: stretch; flex-direction: column; }
  .jobrf-grid { grid-template-columns: 1fr; }
  .jobrf-card { padding: 20px; }
  .jobrf-card__action { width: 100%; }
}
