.remote-hero-section {
  background: #fff;
  padding: 100px 0 40px; 
}

.remote-hero {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
}

.remote-hero__title {
  font-size: 42px;
  font-weight: 700;
  color: #0b3b5a;
  line-height: 1.15;
  margin-bottom: 14px;
  font-family: var(--primary-font);
}

.remote-hero__highlight {
  position: relative;
  color: #0b3b5a;
}

.remote-hero__highlight::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 100%;
  height: 4px;
  background: #e53935;
  border-radius: 4px;
  opacity: 0.9;
}

.remote-hero__desc {
  color: #4b5563;
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 18px;
  max-width: 640px;
}

.remote-hero__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
  margin: 18px 0 22px;
}

.remote-hero__feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #111827;
  font-size: 15px;
  line-height: 1.5;
}

.remote-hero__check {
  width: 22px;
  height: 22px;
  min-width: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(25, 103, 210, 0.12);
  color: #1967d2;
  font-weight: 700;
  font-size: 14px;
  margin-top: 2px;
}

.remote-hero__btn {
  display: inline-block;
  background: #ff6b3d;
  color: #fff;
  padding: 12px 22px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.2s ease;
}

.remote-hero__btn:hover {
  background: #ff5522;
  color: #fff;
}

.remote-hero__image-wrap {
  width: 100%;
  display: flex;
  justify-content: flex-end;
}

.remote-hero__image {
  width: 100%;
  max-width: 520px;
  border-radius: 10px;
  object-fit: cover;
}

/* ===== Stats Strip ===== */
.remote-stats-strip {
  background: #f3f7ff;
  padding: 34px 0;
  border-top: 1px solid rgba(0,0,0,0.03);
}

.remote-stats {
  text-align: center;
}

.remote-stats__title {
  font-size: 30px;
  font-weight: 700;
  margin: 0 0 8px;
  color: #111827;
  font-family: var(--primary-font);
}

.remote-stats__number {
  position: relative;
  display: inline-block;
  font-weight: 800;
}

.remote-stats__number::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 100%;
  height: 4px;
  background: #ff6b3d;
  border-radius: 4px;
  opacity: 0.7;
}

.remote-stats__subtitle {
  margin: 0;
  color: #4b5563;
  font-size: 14px;
}

.remote-stats__link {
  color: #1967d2;
  text-decoration: none;
  font-weight: 600;
}

.remote-stats__link:hover {
  text-decoration: underline;
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
  .remote-hero {
    grid-template-columns: 1fr;
  }
  .remote-hero__image-wrap {
    justify-content: center;
  }
  .remote-hero__title {
    font-size: 34px;
  }
  .remote-stats__title {
    font-size: 24px;
  }
}

@media (max-width: 576px) {
  .remote-hero__features {
    grid-template-columns: 1fr;
  }
}

/* ===== Remote Jobs Sections (cards like screenshot) ===== */
.remote-jobs-section{
  background:#f8fbff;
  padding: 26px 0;
}

.remote-jobs-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom: 14px;
}

.remote-jobs-title{
  font-size: 22px;
  font-weight: 700;
  margin: 0;
  color:#111827;
  font-family: var(--primary-font);
}

.remote-jobs-link{
  font-size: 14px;
  font-weight: 600;
  color: #1967d2;
  text-decoration: none;
}

.remote-jobs-link:hover{
  text-decoration: underline;
}

.remote-jobs-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.remote-job-card{
  display:block;
  background:#fff;
  border:1px solid rgba(0,0,0,0.06);
  border-radius:10px;
  padding: 18px 18px 16px;
  text-decoration:none;
  transition: 0.2s ease;
  min-height: 150px;
}

.remote-job-card:hover{
  transform: translateY(-2px);
  border-color: rgba(25,103,210,0.25);
  box-shadow: 0 10px 24px rgba(16,24,40,0.08);
}

.remote-job-top{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom: 10px;
}

.remote-job-date{
  font-size: 13px;
  color:#6b7280;
}

.remote-job-new{
  font-size: 12px;
  font-weight: 700;
  color:#ff3b30;
}

.remote-job-name{
  font-size: 16px;
  font-weight: 700;
  line-height: 1.25;
  color:#111827;
  margin: 0 0 14px;
}

.remote-job-tags{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.remote-job-tag{
  font-size: 12px;
  font-weight: 700;
  color:#1f2937;
  background:#eef4ff;
  border-radius: 999px;
  padding: 7px 12px;
}

.remote-job-loc{
  display:flex;
  align-items:center;
  gap: 8px;
  font-size: 13px;
  color:#6b7280;
}

.remote-job-loc i{
  font-size: 14px;
  color:#9ca3af;
}

/* Responsive */
@media (max-width: 992px){
  .remote-jobs-grid{ grid-template-columns: 1fr; }
  .remote-jobs-head{ flex-direction: column; align-items:flex-start; gap: 6px; }
}