/* Hero header */
.hero{
  border-radius: var(--r18);
  overflow:hidden;
  /*border:1px solid rgba(226,232,240,.9);*/
  box-shadow: var(--shadow3);
  background:#fff;
}
.hero-media{
  cursor: zoom-in;
  max-height: var(--heroMaxH);
  overflow:hidden;
}
.hero-top{
  padding:22px 12px 12px 12px;
  display:flex;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
  align-items:flex-start;
}
.co-left{
  display:flex;
  gap:12px;
  align-items:center;
  min-width:0;
}
.co-logo{
  width:100px;height:100px;border-radius:18px;
  overflow:hidden;background:#fff;
  border:1px solid rgba(226,232,240,.95);
  flex:0 0 auto;
}
.co-logo img{width:100%;height:100%;object-fit:contain}
.co-meta{min-width:0}
.co-meta b{
  display:block;
  font-size:2em;
  /*white-space:nowrap;*/
  overflow:hidden;
  /*text-overflow:ellipsis;*/
  font-weight: 700;
}
.co-meta span{
  display:block;
  margin-top:3px;
  font-size:12px;
  color:var(--muted);
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
.co-ctas{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  align-items:center;
}
.pill{
  font-size:11px;
  color:#334155;
  padding:6px 9px;
  border-radius:999px;
  background:#fff;
  border:1px solid rgba(226,232,240,.95);
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
  max-width:100%;
}
.pill.good{border-color: rgba(16,185,129,.40); color:#0f172a}
.pill.blue{border-color: rgba(14,165,233,.35); color:#0f172a}
.pill.warn{border-color: rgba(245,158,11,.40); color:#0f172a}

.hero-stats{
  padding:0 12px 12px;
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  align-items:center;
}

/* Tabs */
.tabs{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  padding: 0 12px 12px;
}
.tab{
  font-size:12px;
  padding:8px 10px;
  border-radius:999px;
  border:1px solid rgba(226,232,240,.95);
  background:#fff;
  color:var(--muted);
  cursor:pointer;
}
.tab.active{
  background: linear-gradient(135deg, rgba(16,185,129,.12), rgba(14,165,233,.08));
  border-color: rgba(16,185,129,.35);
  color: var(--text);
  font-weight:900;
}

/* Main content blocks */
.stack{display:flex; flex-direction:column; gap: var(--gap);}

.about{
  font-size:14px;
  color:#0f172a;
  line-height:1.42;
  margin:0;
}

.about a{
  font-weight: 500;
  color: #07c;
  text-decoration: none;
  cursor: pointer;
}

.about a:hover{
  text-decoration: underline;
}

/* Tours grid */
.grid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap:10px;
}
.tour{
  border:1px solid rgba(226,232,240,.9);
  border-radius:16px;
  overflow:hidden;
  background:#fff;
  box-shadow: var(--shadow2);
}
.tour .media{cursor: zoom-in;}
.tour .body{padding:10px}
.tour b{
  display:block;
  font-size:14px;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
.tour .sub{
  margin-top:3px;
  font-size:12px;
  color:var(--muted);
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
.tour .row{
  margin-top:10px;
  display:flex;
  justify-content:space-between;
  gap:10px;
  align-items:flex-start;
}
.tour .tags{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  min-width:0;
}
.hidden-tours{
  /*overflow: hidden;*/
  display: none;
  margin-top: 10px;
}
.tour-show-all{
  overflow: hidden;
  text-align: center;
  margin-top: 20px;
}
.tour-show-all a{
  display: inline-block;
  padding: 10px 20px;
  font-weight: bold;
  font-size: 1.1em;
  color: #07c;
  margin:auto;
  border-radius: 15px;
}
.tour-show-all a:hover{
  cursor: pointer;
  background: #ddd;
}
.tour .actions{
  padding:10px;
  border-top:1px solid rgba(226,232,240,.85);
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  background:#fbfbfd;
}
.tiny{
  font-size: 12px;
  padding: 8px 15px;
  border-radius: 999px;
  border: 1px solid rgba(226, 232, 240, .95);
  background: #fff;
  color: var(--muted);
  cursor: pointer;
  font-weight: 650;
  margin: auto;
}
.tiny:hover{background:#f8fafc;color:var(--text)}
.tiny.primary{
  background: rgba(16,185,129,.14);
  border-color: rgba(16,185,129,.45);
  color: var(--text);
}

.button-list{
  padding: 10px;
  /*border-bottom: 1px solid var(--line);*/
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  background: linear-gradient(180deg, #fff 0%, #fbfbfc 100%);
}

.button{
  border: 1px solid #eee;
  background: #f3f4f6;
  color: #374151;
  border-radius: 12px;
  padding: 9px 12px;
  font-size: 13px;
  font-weight: 650;
  cursor: pointer;
}
.button:hover{
  background: #ddd;
  border: 1px #d1d1d1 solid;
  cursor: pointer;
}

.button.active {
  background: #ecfdf5;
  border-color: #bbf7d0;
  color: #065f46;
}

:root{
  /*--bg:#f5f5f5;*/
  --card:#fff;
  /*--text:#0f172a;*/
  /*--muted:#64748b;*/
  /*--line:#e2e8f0;*/
  /*--brand:#0ea5e9;*/
  --good:#16a34a;
  --warn:#f59e0b;
  /*--shadow:0 10px 28px rgba(2,6,23,.08);*/
  /*--r16:16px;*/
  --r12:12px;
}

.jobsWrap{
  background:var(--bg);
  padding:14px;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  color:var(--text);
}
.jobsContainer{max-width:820px;margin:0 auto;}
.jobsTop{
  display:flex; align-items:center; justify-content:space-between; gap:10px;
  margin-bottom:12px;
}

/* mini nav like your screenshots */
.jobsNav{
  display:flex; gap:14px; align-items:center; flex-wrap:wrap;
  font-size:13px;
}
.jobsNav a{
  color:#2563eb; text-decoration:none; padding:6px 2px;
  border-bottom:3px solid transparent;
  font-weight:700;
}
.jobsNav a.active{ border-bottom-color: var(--good); }
.jobsNav a:hover{ opacity:.85; }

.jobsActions{display:flex; gap:8px; align-items:center; flex-wrap:wrap;}
.jBtn{
  border:1px solid var(--line);
  background:#fff;
  padding:9px 12px;
  border-radius:12px;
  cursor:pointer;
  font-size:13px;
  font-weight:800;
}
.jBtn.primary{
  border:none;
  background:#84cc16; /* similar to your green button */
  color:#0f172a;
}

.card{
  /*background:var(--card);
  border-radius:var(--r16);
  box-shadow:var(--shadow3);
  overflow:hidden;*/
  /*border:1px solid rgba(226,232,240,.85);*/
}
.cardPad{padding:14px;}

.hTitle{
  margin:0;
  font-size:22px;
  letter-spacing:.2px;
}
.subtle{color:var(--muted); font-size:13px; margin-top:6px;}

.kv{
  display:grid;
  grid-template-columns: 140px minmax(0,1fr);
  gap:8px 14px;
  margin-top:12px;
  font-size:14px;
}
.kv b{font-weight:900;}
.kv span{color:var(--text);}

.sectionTitle{
  margin:18px 0 8px;
  font-size:14px;
  font-weight:1000;
}
.para{
  margin:0;
  font-size:14px;
  line-height:1.45;
  color:var(--text);
}

.rowLine{height:1px;background:var(--line);margin:14px 0;}

/* list view */
.jobList{display:flex; flex-direction:column; gap:12px;}
.jobItem{
  background:#fff;
  border:1px solid rgba(226,232,240,.9);
  border-radius:16px;
  padding:12px;
}
.jobItemTop{
  display:flex; justify-content:space-between; gap:10px; align-items:flex-start;
}
.jobName{
  margin:0;
  font-size:16px;
  font-weight:1000;
}
.jobMeta{
  margin-top:6px;
  display:flex; gap:10px; flex-wrap:wrap;
  color:var(--muted);
  font-size:13px;
}
.pill{
  font-size:12px;
  padding:6px 9px;
  border-radius:999px;
  border:1px solid rgba(226,232,240,.95);
  background:#fff;
  color:#334155;
  font-weight:800;
}
.pill.good{border-color: rgba(22,163,74,.35)}
.pill.warn{border-color: rgba(245,158,11,.40)}
.jobItemActions{
  display:flex; gap:8px; align-items:center; flex-wrap:wrap;
  margin-top:10px;
}
.linkBtn{
  display:inline-flex; align-items:center; gap:6px;
  font-size:13px;
  color:#2563eb;
  font-weight:900;
  text-decoration:none;
}
.linkBtn:hover{opacity:.85;}

/* detail view actions */
.detailActions{
  display:flex; gap:14px; flex-wrap:wrap;
  margin-top:16px;
  font-size:13px;
}
.detailActions a{color:#2563eb; text-decoration:none; font-weight:900;}
.detailActions a:hover{opacity:.85;}

/* applicants */
.appList{margin:10px 0 0; padding-left:18px;}
.appList li{margin:6px 0; font-size:14px;}
.appList a{color:#2563eb; text-decoration:none; font-weight:900;}
.appList a:hover{opacity:.85;}

/* create/edit form */
.formGrid{
  display:grid;
  grid-template-columns: 1fr;
  gap:12px;
  margin-top:10px;
}
.fieldRow{
  display:grid;
  grid-template-columns: 160px minmax(0,1fr);
  gap:10px;
  align-items:center;
}
label{
  font-size:13px;
  font-weight:900;
  color:#0f172a;
}
.job-form-input{
  width:100%;
  border:1px solid rgba(226,232,240,.95);
  border-radius:10px;
  padding:10px 10px;
  font-size:14px;
  outline:none;
  background:#fff;
}
textarea{min-height:90px; resize:vertical; line-height:1.4;}
.inline3{
  display:grid;
  grid-template-columns: 120px 1fr 1fr;
  gap:8px;
}
.formActions{
  display:flex; justify-content:flex-end; gap:12px; align-items:center;
  margin-top:14px;
}
.cancelLink{color:var(--muted); text-decoration:none; font-weight:900;}
.cancelLink:hover{color:var(--text);}
.saveBtn{
  border:none;
  background:#84cc16;
  padding:10px 18px;
  border-radius:10px;
  font-weight:1000;
  cursor:pointer;
}

/* responsive */
@media (max-width: 620px){
  .kv{grid-template-columns: 120px minmax(0,1fr);}
  .fieldRow{grid-template-columns: 1fr; gap:6px;}
  .inline3{grid-template-columns: 1fr 1fr; }
  .jobsTop{flex-direction:column; align-items:flex-start;}
  @media (max-width: 560px){
    .grid {grid-template-columns: repeat(1, minmax(0, 1fr));}
  }
}


  :root{
    --yl-bg:#fff;
    --yl-page:#f5f5f5;
    --yl-text:#0f172a;
    --yl-muted:#64748b;
    --yl-line:#e2e8f0;
    --yl-shadow:0 10px 30px rgba(2,6,23,.08);
    --yl-r18:18px;
    --yl-r16:16px;
  }

  .yl-wrap{margin: 10px 0px;}
  .yl-panel{
    background:var(--yl-bg);
    border-radius:var(--yl-r18);
    box-shadow:var(--shadow3);
    overflow:hidden;
  }
  .yl-head{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:12px;
    padding:14px 14px 10px;
  }
  .yl-title{
    margin: 0;
    font-size: 20px;
    letter-spacing: .35px;
    font-weight: 700;
    /* text-transform: uppercase; */
    color: var(--yl-muted);
  }
  .yl-link{
    font-size:12px;
    color:var(--yl-muted);
    text-decoration:none;
    white-space:nowrap;
  }
  .yl-link:hover{color:var(--yl-text)}
  .yl-grid{
    display:grid;
    grid-template-columns:repeat(3, minmax(0, 1fr));
    gap:12px;
    padding:0 14px 14px;
  }

  /* Card */
  .yl-card{
    background:#fff;
    border:1px solid rgba(226,232,240,.9);
    border-radius:var(--yl-r16);
    overflow:hidden;
    display:flex;
    flex-direction:column;
    min-width:0;
  }
  .yl-media{
    aspect-ratio: 3 / 2;
    background:#f1f5f9;
    position:relative;
    overflow:hidden;
  }
  .yl-media img{
    position:absolute; inset:0;
    width:100%; height:100%;
    object-fit:cover;
  }
  .yl-body{
    padding:10px 10px 12px;
    display:flex;
    flex-direction:column;
    gap:8px;
    flex:1;
    min-width:0;
  }
  .yl-name{
    font-size:14px;
    font-weight:900;
    margin:0;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
    color:var(--yl-text);
  }
  .yl-sub{
    font-size:12px;
    color:var(--yl-muted);
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
  }
  .yl-chips{
    display:flex;
    flex-wrap:wrap;
    gap:6px;
  }
  .yl-chip{
    font-size:11px;
    padding:6px 8px;
    border-radius:999px;
    border:1px solid rgba(226,232,240,.95);
    color:#334155;
    background:#fff;
    max-width:100%;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
  }
  .yl-row{
    margin-top:auto;
    /*display:flex;*/
    align-items:center;
    justify-content:space-between;
    gap:10px;
    padding-top:2px;
  }
  .yl-price{
    font-size: 12px;
    color: var(--yl-text);
    font-weight: 900;
    white-space: nowrap;
    text-align: center;
    margin-bottom: 10px;
  }
  .yl-cta{
    font-size: 14px;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 999px;
    border: none;
    background: #090;
    cursor: pointer;
    /* white-space: nowrap; */
    color: #fff;
    margin: 0px 20px;
    text-align: center;
    width: calc(100% - 40px);
}
  }
  .yl-cta:hover{background:#0b0}

  /* Compact variant (for Rooms) */
  .yl-card.compact .yl-media{aspect-ratio: 4 / 3;}
  .yl-card.compact .yl-body{gap:6px}
  .yl-card.compact .yl-name{font-size:13px}

  /* Responsive */
  @media (max-width: 980px){
    .yl-grid{grid-template-columns:repeat(2, minmax(0, 1fr))}
  }
  @media (max-width: 560px){
    .yl-grid{grid-template-columns:1fr}
    .yl-panel{border-radius:unset}
    .yl-card{border-radius:16px}
  }


 /* .to-related-wrap{
    margin:10px 0px;
  }
  .to-related{
    background:#fff;
    border-radius:18px;
    box-shadow:0 10px 28px rgba(2,6,23,.08);
    /*border:1px solid rgba(226,232,240,.9);*/
    /*overflow:hidden;*
    box-shadow: var(--shadow3);
  }*/
.to-related-head{
  padding:14px 14px 10px;
  display:flex;
  justify-content:space-between;
  align-items:center;
}
.to-related-head h3{
  margin:0;
  font-size:13px;
  letter-spacing:.35px;
  font-weight:900;
  text-transform:uppercase;
  color:#64748b;
}
.to-related-grid{
  padding:0 14px 14px;
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:12px;
}

/* Card */
.to-card{
  border:1px solid rgba(226,232,240,.9);
  border-radius:16px;
  padding:12px;
  display:flex;
  flex-direction:column;
  gap:10px;
  background:#fff;
}

.to-top{
  display:flex;
  gap:10px;
  align-items:center;
  min-width:0;
}

.to-logo{
  width:44px;
  height:44px;
  border-radius:14px;
  background:linear-gradient(135deg, rgba(14,165,233,.18), rgba(16,185,129,.14));
  border:1px solid rgba(226,232,240,.95);
  display:grid;
  place-items:center;
  font-weight:900;
  font-size:14px;
  color:#0f172a;
  flex:0 0 auto;
  overflow: hidden;
}

.to-meta{
  min-width:0;
}
.to-meta b{
  display:block;
  font-size:14px;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
.to-meta span{
  display:block;
  font-size:12px;
  color:#64748b;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
  margin-top:2px;
}

.to-chips{
  display:flex;
  flex-wrap:wrap;
  gap:6px;
}
.to-chip{
  font-size:11px;
  padding:6px 8px;
  border-radius:999px;
  border:1px solid rgba(226,232,240,.95);
  background:#f8fafc;
  color:#334155;
  white-space:nowrap;
  max-width:100%;
  overflow:hidden;
  text-overflow:ellipsis;
}
.to-chip.good{
  background:rgba(16,185,129,.12);
  border-color:rgba(16,185,129,.35);
  font-weight:800;
}
.to-chip.blue{
  background:rgba(14,165,233,.10);
  border-color:rgba(14,165,233,.30);
}

.to-bottom{
  margin-top:auto;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:10px;
}
.to-stat{
  font-size:12px;
  color:#64748b;
  white-space:nowrap;
}
.to-btn{
  font-size: 14px;
  font-weight: 700;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px #d90 solid;
  background: #e90;
  cursor: pointer;
  white-space: nowrap;
  margin: auto;
}
.to-btn:hover{background:#ffbb00}

/* Responsive */
@media (max-width: 980px){
  .to-related-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
}
@media (max-width: 560px){
  :root{--pad:10px; --gap:20px;}
  .to-related-grid{grid-template-columns:1fr}
  .hero{border-radius:unset;}
}

.partner-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 28px;
}

.partner-card{
  background: #f9fafb;
  border: 1px solid #e4e7ec;
  border-radius: 14px;
  padding: 24px 18px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  transition: transform .18s ease, box-shadow .18s ease;
  font-size: .9em;
}

.partner-img{
  width: 100%;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.partner-img img{
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  border-radius: 6px;
}

.partner-name{
  font-weight: 500;
  margin-top: 40px;
  text-align: center;
}


@media (max-width:980px){
  .partner-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
}
@media (max-width:560px){
  .partner-grid{grid-template-columns:1fr}
}
