/* =========================================================
   REMOTE JOBS PAGE (Conflict-free)
   Scope: only inside .remote-page
   No background colors used
========================================================= */

.remote-page{
  padding: 26px 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: #0f172a;
  line-height: 1.7;
}

.remote-page .remote-container{
  width: min(980px, calc(100% - 32px));
  margin: 0 auto;
}

/* HERO */
.remote-page .remote-hero h1{
  font-size: clamp(26px, 3.2vw, 42px);
  line-height: 1.15;
  margin: 0 0 12px;
  letter-spacing: -0.4px;
}

.remote-page .remote-hero p{
  margin: 0 0 10px;
  color: #334155;
  font-size: 16px;
}

/* CONTENT BLOCKS */
.remote-page .remote-content .block{
  padding: 18px 0;
  border-top: 1px solid #e2e8f0;
}

.remote-page .remote-content .block:first-child{
  border-top: 0;
  padding-top: 8px;
}

.remote-page .remote-content h2{
  margin: 0 0 8px;
  font-size: 22px;
  line-height: 1.25;
}

.remote-page .remote-content h3{
  margin: 14px 0 6px;
  font-size: 18px;
  line-height: 1.3;
}

.remote-page .remote-content p{
  margin: 0 0 10px;
  color: #334155;
}

/* LIST GRID */
.remote-page .list-grid{
  list-style: disc;
  padding-left: 18px;
  margin: 10px 0 12px;

  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 26px;

  color: #334155;
}

@media (max-width: 720px){
  .remote-page .list-grid{ grid-template-columns: 1fr; }
}

.remote-page .bullet-list{
  padding-left: 18px;
  margin: 10px 0 12px;
  color: #334155;
}
.remote-page .bullet-list li{ margin: 8px 0; }

/* CHECK LIST */
.remote-page .check-list{
  list-style: none;
  padding-left: 0;
  margin: 10px 0 12px;
}

.remote-page .check-list li{
  position: relative;
  padding-left: 26px;
  margin: 8px 0;
  color: #334155;
}

.remote-page .check-list li::before{
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 700;
}

/* NOTE */
.remote-page .note{
  border-left: 3px solid #94a3b8;
  padding-left: 12px;
  color: #334155;
  margin-top: 8px;
}

/* FAQ */
.remote-page .remote-faq{
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid #e2e8f0;
}

.remote-page .remote-faq h2{
  margin: 0 0 12px;
  font-size: 22px;
  line-height: 1.25;
}

.remote-page .faq-wrap{
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  overflow: hidden;
}

.remote-page .faq-item + .faq-item{
  border-top: 1px solid #e2e8f0;
}

.remote-page .faq-q{
  width: 100%;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 14px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  text-align: left;
  font-weight: 700;
  color: #0f172a;
}

.remote-page .faq-q span{ flex: 1; }

.remote-page .faq-q:focus{
  outline: 2px solid #94a3b8;
  outline-offset: 2px;
}

.remote-page .faq-icon{
  width: 14px;
  height: 14px;
  border-right: 2px solid #64748b;
  border-bottom: 2px solid #64748b;
  transform: rotate(45deg);
  transition: transform .2s ease;
  flex: 0 0 auto;
}

.remote-page .faq-q[aria-expanded="true"] .faq-icon{
  transform: rotate(-135deg);
}

.remote-page .faq-a{
  padding: 0 14px 14px;
}

.remote-page .faq-a p{
  margin: 0;
  color: #334155;
}