:root{
  --bg:#ffffff;
  --text:#0f172a;
  --muted:#64748b;
  --soft:#94a3b8;
  --line:#e2e8f0;

  --brand:#0ea5e9;
  --brand2:#10b981;
  --brand3:#f59e0b;
  --brand4:#8b5cf6;

  --shadow: 0 10px 30px rgba(2,6,23,.08);
  --shadow2: 0 8px 18px rgba(2,6,23,.06);
  --shadow3: 0 5px 12px rgba(0,0,0,.3);

  --r16:16px;
  --r14:14px;

  --max:1280px;
  --gap:20px;
  --gap1:10px;
  --pad:12px;

  /* 3:2 images */
  --ratioW:3;
  --ratioH:2;

  /* Post media max heights */
  --postMediaMaxH: 420px;
  --tileMediaMaxH: 180px;
  --adMediaH: 76px;

  /* NEW Home */
  --page:#f4f6f8;
  --brand2:#10b981;

  --r18:18px;

}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  background: #f5f5f5;
  color: var(--text);
}
a{color:inherit;text-decoration:none}
button,input{font-family:inherit}
img{display:block;max-width:100%}

/* True centering: page is centered to viewport, regardless of columns */
.container{
  width:min(var(--max), calc(100% - 24px));
  margin:0 auto;
}

/* Top bar */
.topbar{
  position:fixed; top:0; z-index:50;width:100%;
  background: #060;
  backdrop-filter: blur(10px) saturate(140%);
  /*border-bottom: 1px solid var(--line);*/
}
.topbar-inner{
  display:flex; align-items:center; gap:10px;
  padding:10px 0;
  position:relative;
}
.brand{
  display:flex; align-items:center; /*gap:10px*/;
  /*min-width:170px;*/
}
.logo{
  max-width: 90px;
  border-radius: 35px;
  box-shadow: 0 10px 18px rgba(14, 165, 233, .16);
  flex: 0 0 auto;
}
.logo img{
  max-width: calc(100% - 10px);
  margin: 9px 5px 5px 5px;
}
.brand b{font-size:14px; letter-spacing:.6px;color: #fff;}
.brand span{display:block;font-size:12px;color:var(--muted);margin-top:1px}

.search{
  flex:1;
  display:flex; align-items:center; gap:10px;
  border:1px solid var(--line);
  background:#f8fafc;
  border-radius:999px;
  padding:9px 12px;
  min-width: 160px;
}
.search input{
  flex:1; border:0; outline:0; background:transparent;
  color:var(--text); font-size:14px;
}

.nav{
  display:flex; gap:6px; align-items:center;
  white-space:nowrap;
}
.nav a{
  font-size:13px;color:#fff;
  padding:8px 10px;border-radius:12px;
}
.nav a:hover{background:#f1f5f9;color:var(--text)}

.actions{
  display:flex; gap:8px; align-items:center;
  white-space:nowrap;
}
.btn{
  border:1px solid var(--line);
  background:#fff;
  padding:9px 11px;
  border-radius:12px;
  cursor:pointer;
  font-size:13px;
  color:var(--text);
}
.btn:hover{background:#f8fafc}
.btn.primary{
  /*border-color: rgba(16,185,129,.55);*/
  border: none;
  background: #f59e0b;
  font-weight:500;
}
.btn.primary:hover{
  background: #f59e0b;
}
.btn.ghost{
  background:#fff;
  border-color: rgba(226,232,240,.9);
  color: var(--muted);
}
.avatar{
  width:34px;height:34px;border-radius:999px;
  background: linear-gradient(135deg, rgba(14,165,233,.18), rgba(16,185,129,.14));
  border:1px solid var(--line);
}

/* Mobile menu */
.menu-btn{
  display:none;
  width:40px; height:40px;
  border-radius:12px;
  border:1px solid var(--line);
  background:#fff;
  cursor:pointer;
  align-items:center;
  justify-content:center;
  font-size:18px;
  color:var(--muted);
}
.menu-btn:hover{background:#f8fafc;color:var(--text)}
.menu{
  display:none;
  position:absolute;
  right:0;
  top:56px;
  width: min(320px, calc(100vw - 24px));
  background:#fff;
  border:1px solid var(--line);
  border-radius:16px;
  box-shadow: var(--shadow);
  overflow:hidden;
}
.menu.open{display:block}
.menu .vbar{
  height:3px;
  background: linear-gradient(90deg, var(--brand2), var(--brand), var(--brand3), var(--brand4));
}
.menu .section{padding:10px}
.menu a, .menu button{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  padding:10px 12px;
  border-radius:12px;
  font-size:14px;
  border:1px solid rgba(226,232,240,.9);
  background:#fff;
  color:var(--text);
  cursor:pointer;
  margin-bottom:8px;
}
.menu a:hover, .menu button:hover{background:#f8fafc}
.menu .muted{color:var(--muted); font-size:12px; margin:8px 2px 10px}

/* Layout */
/*.layout{
  display:grid;
  grid-template-columns: 280px minmax(0, 1fr) 340px; /* minmax prevents overflow overlap *
  gap: var(--gap);
  padding: 14px 0 22px;
  align-items:start;
}*/


.layout{
  display:grid;
  grid-template-columns: 260px minmax(0,1fr) 320px;
  gap: var(--gap);
  align-items:start;
}


/* Panels: remove overlap by consistent border + no negative margins */
.panel-updates{
  /*overflow:hidden;*/
  margin-top: 20px;
}
.panel-updates h3{
  margin: 0 0 10px 10px;
  font-size: 12px;
  letter-spacing: .35px;
  color: var(--muted);
  font-weight: 800;
  text-transform: uppercase;
}
.panel{
  background:#fff;
  /*border:1px solid rgba(226,232,240,.85);*/
  border-radius: var(--r16);
  box-shadow: var(--shadow3);
  overflow:hidden;
  margin-top: 1px;
}
.panel.pad{padding: var(--pad)}

/* Vibrant bar */
.vbar{
  height:3px;
  background: linear-gradient(90deg, var(--brand2), var(--brand), var(--brand3), var(--brand4));
}

.panel-head{
  display:flex; align-items:center; justify-content:space-between; gap:10px;
  margin: 10px 0px;
}
.panel h3{
  margin:0 0 10px;
  font-size:12px;
  letter-spacing:.35px;
  color:var(--muted);
  font-weight:800;
  text-transform:uppercase;
}
.panel-head a{font-size:12px;color:var(--muted);margin-bottom: 10px;}
.panel-head a:hover{color:var(--text)}

.stack{display:flex; flex-direction:column; gap: var(--gap);margin: 0px 10px 0px 10px;}

/* Left column */
.quick{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:10px;
}
.qa{
  padding:10px;
  border-radius:14px;
  background: linear-gradient(135deg, rgba(14,165,233,.06), rgba(16,185,129,.06));
  border:1px solid rgba(226,232,240,.9);
  cursor:pointer;
}
.qa b{display:block;font-size:13px}
.qa span{display:block;font-size:12px;color:var(--muted);margin-top:2px}
.chips{display:flex;flex-wrap:wrap;gap:8px}
.chip{
  font-size:12px;
  padding:8px 10px;
  border-radius:999px;
  background:#f8fafc;
  border:1px solid rgba(226,232,240,.9);
  color:var(--muted);
  cursor:pointer;
}
.chip.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);
}

/* Middle: composer */
.composer{
  display:flex; gap:10px; align-items:flex-start;
  padding: var(--pad);
  /*margin-bottom: 12px;*/
}
.composer .avatar{flex:0 0 auto;border-radius:10px;overflow:hidden;}
.composer-box{
  flex:1;
  background:#fff;
  border:1px solid rgba(226,232,240,.9);
  border-radius: 14px;
  padding:10px;
  min-width:0;
}
.composer-box .hint{margin:0;font-size:13px;color:var(--muted)}
.composer-actions{
  display:flex; flex-wrap:wrap; gap:8px;
  margin-top:8px;
}
.mini{
  font-size:12px;
  padding:8px 10px;
  border-radius:999px;
  border:1px solid rgba(226,232,240,.95);
  background:#fff;
  color:var(--muted);
  cursor:pointer;
}
.mini.primary{
  border-color: rgba(16,185,129,.45);
  background: rgba(16,185,129,.10);
  color:var(--text);
  font-weight:700;
}

/* People you may know */
.pymk{
  border-radius: var(--r16);
  overflow:hidden;
  border:1px solid rgba(226,232,240,.85);
  box-shadow: var(--shadow2);
  background:#fff;
}
.pymk .head{
  display:flex; justify-content:space-between; gap:10px; align-items:center;
  padding:10px 12px;
}
.pymk .head h3{margin:0;font-size:12px;letter-spacing:.35px;color:var(--muted);font-weight:800;text-transform:uppercase}
.pymk .head a{font-size:12px;color:var(--muted)}
.pymk .row{
  display:flex; gap:10px;
  overflow-x:auto;
  padding:0 12px 12px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.pymk .row::-webkit-scrollbar{height:10px}
.pymk .row::-webkit-scrollbar-thumb{background:#e2e8f0;border-radius:999px}
.pymk .row::-webkit-scrollbar-track{background:#f8fafc;border-radius:999px}

.pymk-card{
  flex:0 0 210px;
  scroll-snap-align:start;
  border-radius:16px;
  overflow:hidden;
  border:1px solid rgba(226,232,240,.9);
  background: linear-gradient(135deg, rgba(14,165,233,.06), rgba(16,185,129,.06));
}

/* 3:2 cover, but height capped by container; landscape-friendly */
.ratio32{
  /*aspect-ratio: var(--ratioW) / var(--ratioH); */
  width: 100%;
  height: 100%;
  background: #f1f5f9;
  overflow: hidden;
  /* position: relative; */
}
.ratio32 img{
  /* position: absolute; */
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: 500px;
}

.pymk-body{display:flex;gap:10px;align-items:center;padding:10px}
.pymk-avatar{
  width:42px;height:42px;border-radius:14px;overflow:hidden;
  border:1px solid rgba(226,232,240,.95);background:#fff;
  flex:0 0 auto;
}
.pymk-avatar img{width:100%;height:100%;object-fit:cover}
.pymk-meta{min-width:0}
.pymk-meta b{
  display:block;font-size:13px;
  white-space:nowrap;overflow:hidden;text-overflow:ellipsis;
}
.pymk-meta span{
  display:block;font-size:12px;color:var(--muted);
  white-space:nowrap;overflow:hidden;text-overflow:ellipsis;
  margin-top:2px;
}
.pymk-btn{
  width: calc(100% - 20px);
  margin: 0 10px 10px;
  padding:10px 12px;
  border-radius:12px;
  border:1px solid rgba(16,185,129,.50);
  background: rgba(16,185,129,.12);
  cursor:pointer;
  font-size:13px;
  font-weight:800;
  color:var(--text);
}
.pymk-btn:hover{background: rgba(16,185,129,.16);border-color: rgba(16,185,129,.70)}

/* Meals tiles */
.tiles{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:10px;
}
.tile{
  border-radius:8px;
  overflow:hidden;
  border:1px solid rgba(226,232,240,.9);
  background:#fff;
  box-shadow: var(--shadow2);
  cursor:pointer;
}
.tile .media{
  max-height: var(--tileMediaMaxH);
}
.tile .body{padding:10px}
.tile b{
  display:block;font-size:13px;margin-bottom:2px;
  white-space:nowrap;overflow:hidden;text-overflow:ellipsis;
}
.tile .meta{
  font-size:12px;color:var(--muted);
  white-space:nowrap;overflow:hidden;text-overflow:ellipsis;
}
.tile .meta2{margin-top:7px;display:flex;gap:8px;flex-wrap:wrap}
.pill2{
  font-size:11px;color:var(--muted);
  padding:6px 8px;border-radius:999px;
  background:#fff;border:1px solid rgba(226,232,240,.95);
}
.pill2.warn{border-color: rgba(245,158,11,.40);color:#0f172a}
.pill2.blue{border-color: rgba(14,165,233,.35);color:#0f172a}

/* Feed */
.feed{display:flex;flex-direction:column;gap: var(--gap)}
.post{
  background:#fff;
  border-radius: var(--r16);
  box-shadow: var(--shadow3);
  overflow:hidden;
  /*border:1px solid rgba(226,232,240,.85);*/
}
.post-head{
  display:flex;align-items:center;justify-content:space-between;gap:10px;
  padding:10px 12px 8px;
}
.who{display:flex;gap:10px;align-items:center;min-width:0}
.who .pic{
  width:34px;height:34px;border-radius:12px;
  overflow:hidden;background:#f1f5f9;border:1px solid rgba(226,232,240,.95);
  flex:0 0 auto;
}
.who .pic img{width:100%;height:100%;object-fit:cover}
.who .meta{min-width:0}
.who .meta b{
  display:block;font-size:13px;
  white-space:nowrap;overflow:hidden;text-overflow:ellipsis;
}
.who .meta span{
  display:block;font-size:12px;color:var(--muted);
  white-space:nowrap;overflow:hidden;text-overflow:ellipsis;
  margin-top:1px;
}
.kebab{
  width:34px;height:34px;border-radius:12px;
  border:1px solid rgba(226,232,240,.95);
  background:#fff;cursor:pointer;
  display:grid;place-items:center;
  color:var(--muted);
}
.kebab:hover{background:#f8fafc;color:var(--text)}

.post-body{padding:0 12px 10px}
.post-body p{
  margin:0;
  font-size:14px;
  line-height:1.42;
  color:var(--text);
}

/* User-generated images: show full width, 3:2, cap height */
.post-media{
  margin-top:10px;
  border-radius: 7px;
  overflow:hidden;
  background:#f1f5f9;
  cursor: zoom-in;
  max-height: var(--postMediaMaxH);
}
.post-media .ratio32{height:auto}
.media-badges{
  position:absolute; left:10px; bottom:10px;
  display:flex; gap:8px; flex-wrap:wrap;
  pointer-events:none;
}
.badge{
  font-size:12px;color:#fff;
  background: rgba(2,6,23,.55);
  border:1px solid rgba(255,255,255,.28);
  padding:7px 9px;border-radius:999px;
  display:inline-flex;align-items:center;gap:8px;
  backdrop-filter: blur(8px);
  white-space:nowrap;
}
.dot{width:8px;height:8px;border-radius:999px;background:var(--brand2)}
.dot.blue{background:var(--brand)}
.dot.warn{background:var(--brand3)}

/* Embedded listing preview, compact */
.embed{
  margin-top:10px;
  display:grid;
  grid-template-columns: 150px minmax(0, 1fr);
  /*gap:10px;*/
  align-items:stretch;
  border-radius: 7px;
  overflow: hidden;
}
.embed .thumb{
  /*border-radius:14px;*/
  overflow:hidden;
  background:#f1f5f9;
  /*border:1px solid rgba(226,232,240,.95);*/
  cursor: zoom-in;
}
.embed .thumb .ratio32{width:100%;height:100%}
.embed .info{
  border-radius: 0px 7px 7px 0px;
  border: 1px solid rgba(226, 232, 240, .95);
  background: #fbfdff;
  padding: 10px;
  min-width: 0;
}
.embed .info b{display:block;font-size:14px;margin-bottom:3px}
.embed .info .sub{font-size:12px;color:var(--muted)}
.embed .info .row{
  display:flex;justify-content:space-between;gap:10px;align-items:flex-start;
  margin-top:8px;
}
.price{
  font-size: 12px;
  padding: 7px 10px;
  border-radius: 7px;
  background: #090;
  /*border: 1px solid rgba(226, 232, 240, .95);*/
  white-space: nowrap;
  color: #fff;
}
.price span{
  font-weight: bold;
}
.tags{display:flex;gap:8px;flex-wrap:wrap;margin-top:8px;min-width:0}
.tag{
  font-size:11px;padding:6px 8px;border-radius:999px;
  background:#fff;border:1px solid rgba(226,232,240,.95);
  color:var(--muted);
}
.tag.good{border-color: rgba(16,185,129,.35);color:#0f172a}
.tag.blue{border-color: rgba(14,165,233,.35);color:#0f172a}
.tag.warn{border-color: rgba(245,158,11,.40);color:#0f172a}

.post-actions{
  display:flex;justify-content:space-between;align-items:center;gap:10px;
  padding:8px 12px 10px;
  border-top:1px solid rgba(226,232,240,.75);
  background:#fff;
}
.acts{display:flex;gap:8px;flex-wrap:wrap}
.act{
  padding:8px 10px;border-radius:999px;
  border:1px solid rgba(226,232,240,.95);
  background:#fff;color:var(--muted);
  font-size:12px;cursor:pointer;
}
.act:hover{background:#f8fafc;color:var(--text)}
.act.primary{
  background: rgba(16,185,129,.10);
  border-color: rgba(16,185,129,.45);
  color: var(--text);
  font-weight:700;
}
.counts{font-size:12px;color:var(--muted);white-space:nowrap}

.comments{
  padding:10px 12px 12px;
  border-top:1px solid rgba(226,232,240,.75);
  background:#fbfbfd;
}
.comment{display:flex;gap:10px;padding:7px 0}
.comment .mini-pic{
  width:28px;height:28px;border-radius:10px;
  overflow:hidden;background:#f1f5f9;
  border:1px solid rgba(226,232,240,.95);
  flex:0 0 auto;
}
.comment .mini-pic img{width:100%;height:100%;object-fit:cover}
.comment b{font-size:12px}
.comment span{/*display:block;*/font-size:12px;color:var(--muted);margin-top:2px}

.commentbox{
  margin-top:8px;
  display:flex;gap:10px;align-items:center;
  border:1px solid rgba(226,232,240,.95);
  background:#fff;border-radius:999px;
  padding:8px 10px;
}
.commentbox input{
  flex:1;border:0;outline:0;background:transparent;
  font-size:13px;color:var(--text);
  min-width:0;
}
.send{
  border:1px solid rgba(16,185,129,.45);
  background: rgba(16,185,129,.12);
  padding:8px 10px;border-radius:999px;
  cursor:pointer;font-size:12px;font-weight:800;
  float: right;
  margin: 5px;
}
.send:hover{background: rgba(16,185,129,.16)}

/* Right: Sponsored ads (4 vertical) */
.ads{display:flex;flex-direction:column;gap:10px}
.ad{
  overflow: hidden;
  /*display:grid;*/
  grid-template-columns: 96px minmax(0,1fr);
  gap:10px;
  /*padding:10px;*/
  border-radius:16px;
  /*background: linear-gradient(135deg, rgba(139,92,246,.05), rgba(14,165,233,.04), rgba(16,185,129,.04));*/
  /*border:1px solid rgba(226,232,240,.9);*/
  box-shadow: var(--shadow3);
}
.ad .img{
  /*border-radius:14px;*/
  overflow:hidden;
  background:#f1f5f9;
  /*border:1px solid rgba(226,232,240,.95);*/
  cursor: zoom-in;
}
.ad .text_wrap{
  padding: 10px 10px 15px 10px;
  background: #fff;
}
.ad .img .ratio32{/*aspect-ratio: var(--ratioW)/var(--ratioH);*/ /*max-height: var(--adMediaH)*/}
.ad b{
  display:block;font-size:13px;
  white-space:nowrap;overflow:hidden;text-overflow:ellipsis;
}
.ad .sub{
  font-size: 12px;
  color: var(--muted);
  margin-top: 5px;
  white-space: nowrap;
  overflow: hidden;
  font-weight: 800;
}
.ad .txt{
  font-size:12px;color:#334155;margin-top:6px;line-height:1.3;
  display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;
  overflow:hidden;
}

/* Live updates */
.notifs{display:flex;flex-direction:column;gap:8px}
.notif{
  display:flex;gap:10px;align-items:flex-start;
  padding:10px;border-radius:14px;
  border:1px solid rgba(226,232,240,.9);
  /*box-shadow: var(--shadow3);*/
  background:#fff;
}
.ico{
  width:34px;height:34px;border-radius:12px;
  display:grid;place-items:center;
  border:1px solid rgba(226,232,240,.95);
  background: linear-gradient(135deg, rgba(16,185,129,.10), rgba(14,165,233,.08));
  flex:0 0 auto;
}
.nb{min-width:0}
.nb b{display:block;font-size:12px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.nb span{display:block;font-size:12px;color:var(--muted);margin-top:2px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.t{font-size:11px;color:var(--soft);margin-top:4px}

/* Sticky right */
.sticky{position:sticky; top:76px; display:flex; flex-direction:column; /*gap: var(--gap)*/min-width:320px;padding-bottom:20px;}

/* Footer */
.footer{
  border-top:1px solid var(--line);
  padding:16px 0 30px;
  color:var(--muted);
  font-size:12px;
  display: none;
}
.footer .cols{
  display:flex; flex-wrap:wrap; gap:14px;
  justify-content:space-between;
}
.footer a{color:var(--muted)}
.footer a:hover{color:var(--text)}

.layout{
  display:grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: var(--gap);
  align-items:start;
}

/* Desktop: inside main area, show left + middle */
.maincols{
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: var(--gap1);
  min-width: 0;
  /*margin-top: 76px;*/
}

/* Right column stays on the right */
.right-col{
  min-width:0;
}

/* Then collapse right column under */
@media (max-width: 860px){
  .layout{
    grid-template-columns: 1fr;
  }
  .maincols{
    grid-template-columns: 1fr;
  }
}

/* Mobile rules */
@media (max-width: 1150px){
  .panel{width: 100%}
  .maincols{ display:block; }
}
@media (max-width: 980px){
  .layout{grid-template-columns: 1fr; gap: var(--gap)}
  .sticky{position:static}
  .nav{display:none}
  .brand{min-width:auto}
}
@media (max-width: 980px){
  .menu-btn{display:flex}
  .actions{display:none} /* use menu for actions on mobile */
}
@media (max-width: 560px){
  .container{width:100%}
  .topbar-inner{padding:9px 0}
  .brand span{display:none}
  .layout{padding:10px 0 18px}
  :root{--pad:10px; --gap:20px; --postMediaMaxH: 380px; --tileMediaMaxH: 170px;}

  .stack{width:100%;margin:0px}

  /* Post images should be full width on mobile */
  .post-body{padding-left:10px; padding-right:10px}
  .post-head{padding-left:10px; padding-right:10px}
  .post-actions{padding-left:10px; padding-right:10px}
  .comments{padding-left:10px; padding-right:10px}

  .post-media{
    border-radius: 0;
    margin-left:-10px;
    margin-right:-10px;
    max-height: var(--postMediaMaxH);
  }

  .embed{grid-template-columns: 1fr}
  .tiles{grid-template-columns: 1fr 1fr}
  .pymk-card{flex-basis: 190px}


  .embed .thumb .ratio32{width:100%;height:100%}
  .embed .info{
    border-radius: 0px 0px 14px 14px;
    border: 1px solid rgba(226, 232, 240, .95);
  }

}

/* Fullscreen image viewer */
.lightbox{
  position:fixed; inset:0;
  background: rgba(2,6,23,.92);
  display:none;
  align-items:center;
  justify-content:center;
  z-index:9999;
  padding: 14px;
}
.lightbox.open{display:flex}
.lightbox img{
  width: min(1100px, 100%);
  height: min(85vh, 100%);
  object-fit: contain;
  border-radius: 14px;
  box-shadow: 0 25px 70px rgba(0,0,0,.45);
  background: rgba(255,255,255,.02);
}
.lb-top{
  position:absolute; top:12px; right:12px; left:12px;
  display:flex; justify-content:space-between; align-items:center; gap:10px;
  color:#e2e8f0;
  pointer-events:none;
}
.lb-top .hint{
  font-size:12px;
  opacity:.9;
  pointer-events:none;
}
.lb-close{
  pointer-events:auto;
  border:1px solid rgba(226,232,240,.25);
  background: rgba(255,255,255,.08);
  color:#e2e8f0;
  padding:10px 12px;
  border-radius:12px;
  cursor:pointer;
  font-size:13px;
  font-weight:800;
}
.lb-close:hover{background: rgba(255,255,255,.12)}
.sponsored_label{
  margin: 0px 0px 18px;
  font-size: 12px;
  letter-spacing: .35px;
  color: var(--muted);
  font-weight: 500;
  text-transform: uppercase;
  padding: 10px 12px;
  background: #fafafa;
  border-bottom: 1px solid #d1d1d1;
  border-radius: var(--r14) 14px;
  box-shadow: var(--shadow);
}

.connect-highlight{
  border-radius:16px;
  border-top:1px solid rgba(16,185,129,.2);
  background: linear-gradient(
    135deg,
    rgba(16,185,129,.10),
    rgba(14,165,233,.08)
  );
  box-shadow: 0 12px 30px rgba(2,6,23,.12);
  padding:14px;
  box-shadow: var(--shadow3);
}

.ch-head{
  /*display:flex;*/
  align-items:center;
  gap:8px;
  margin-bottom:12px;
}
.ch-icon{
  font-size:20px;
}
.ch-head b{
  font-size:16px;
}
.ch-sub{
  font-size:16px;
  color:#64748b;
}

.ch-people{
  /*display:grid;*/
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items:center;
  gap:10px;
  width:100%;
}

.ch-person{
  display:flex;
  align-items:center;
  gap:10px;
  background:#fff;
  border-radius:24px;
  padding:10px;
  border:1px solid rgba(226,232,240,.9);
  max-width: 100%;
  min-width:0;            /* critical */
  width:100%;
  margin-top:12px;
}

.ch-avatar{
  width:80px;
  height:80px;
  border-radius:14px;
  overflow:hidden;
  flex:0 0 auto;
  border:1px solid rgba(226,232,240,.9);
}
.ch-avatar img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.ch-meta{
  min-width:0;
  line-height: 1.5;
}
.ch-meta b{
  display:block;
  font-size:13px;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
.ch-meta span{
  display:block;
  font-size:12px;
  color:#64748b;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

.ch-btn{
  border-radius: 999px;
  padding: 3px 12px 5px 12px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  border: 1px solid rgba(16, 185, 129, .55);
  background: rgba(16, 185, 129, .14);
  margin-top: 5px;
}
.ch-btn:hover{
  background: rgba(16,185,129,.50);
}

.ch-divider{
  font-size:18px;
  color:#0f172a;
  opacity:.6;
  display:none;
}

/* Mobile */
@media (max-width: 600px){
  .ch-people{
    grid-template-columns: 1fr;
  }
  .ch-divider{
    display:none;
  }
}

.join-card{
  display:flex;
  align-items:center;
  gap:12px;
  padding:12px 14px;
  border-radius:16px;
  background: linear-gradient(135deg,
    rgba(16,185,129,.12),
    rgba(14,165,233,.10)
  );
  border-top:1px solid rgba(16,185,129,.2);
  box-shadow: 0 8px 20px rgba(2,6,23,.08);
  flex-wrap:wrap;
  box-shadow: var(--shadow3);
}

.join-icon{
  font-size:20px;
  flex:0 0 auto;
  display:none;
}

.join-content{
  /*display:flex;*/
  align-items:center;
  gap:10px;
  min-width:0;
  flex:1;
}

.join-avatar{
  width:100px;
  height:100px;
  border-radius:14px;
  overflow:hidden;
  border:1px solid rgba(226,232,240,.9);
  background:#fff;
  flex:0 0 auto;
  margin: 10px auto;
}

.join-avatar img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.join-text{
  min-width:0;
  display:block;
  font-size:13px;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
  line-height: 1.6;
  text-align:center;
}

.join-text span{
  color: #888;
}

.join-text span{
  display:block;
  font-size:12px;
  color:#475569;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

.join-btn{
  padding: 3px 14px 5px 14px;
  border-radius: 999px;
  border: 1px solid rgba(16, 185, 129, .55);
  background: rgba(16, 185, 129, .18);
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
  white-space: nowrap;
  margin-top: 5px;
}

.join-btn:hover{
  background: rgba(16,185,129,.28);
}

/* NEW TOUR - Card shell */
.tour-added-card{
  background:#fff;
  border-radius:18px;
  overflow:hidden;
  /*border:1px solid rgba(226,232,240,.9);*/
  /*box-shadow: 0 10px 26px rgba(2,6,23,.08);*/
      box-shadow: var(--shadow3);
}

/* Header image */
.tour-hero{
  position:relative;
  /*cursor:zoom-in;*/
}
.tour-hero-badges{
  position:absolute;
  left:10px;
  bottom:10px;
  display:flex;
  gap:8px;
  flex-wrap:wrap;
}
.tour-badge{
  font-size:11px;
  font-weight:900;
  padding:7px 10px;
  border-radius:999px;
  background: rgba(16,185,129,.88);
  color:#fff;
  border:1px solid rgba(255,255,255,.22);
  backdrop-filter: blur(6px);
  white-space:nowrap;
}
.tour-badge.ghost{
  background: rgba(2,6,23,.55);
}

/* Body */
.tour-card-body{
  padding:12px;
  display:flex;
  flex-direction:column;
  gap:12px;
  min-width:0;
}

.tour-card-main-text{
  font-weight: 500;
  text-align: center;
  margin: 20px 10px;
  font-size: 1.2em;
  color: #666;
}

/* Company */
.tour-company{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  flex-wrap:wrap;
}
.tour-company-left{
  display:flex;
  align-items:center;
  gap:10px;
  min-width:0;
}
.tour-logo{
  width:44px;
  height:44px;
  border-radius:14px;
  overflow:hidden;
  background:#fff;
  border:1px solid rgba(226,232,240,.95);
  flex:0 0 auto;
}
.tour-logo img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.tour-company-meta{
  min-width:0;
}
.tour-company-meta b{
  display:block;
  font-size:13px;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
.tour-company-meta span{
  display:block;
  font-size:12px;
  color:#64748b;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

/* CTA */
.tour-cta{
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid rgba(14, 165, 233, .45);
  background: #090;
  font-size: 15px;
  font-weight: 510;
  cursor: pointer;
  white-space: nowrap;
  width: 180px;
  margin: 20px auto;
  color: #fff;
  text-align:center;
}
.tour-cta:hover{
  background: #0d0;
}

/* Tour title */
.tour-title{
  min-width:0;
  padding: 12px;
}
.tour-title b{
  display:block;
  font-size:14px;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
.tour-title b a{
  font-size: 24px;
  font-weight: 900;
}
.tour-title span{
  display:block;
  font-size:12px;
  color:#64748b;
  margin-top:2px;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

/* Facts */
.tour-facts{
  display:flex;
  flex-direction:column;
  gap:10px;
}
.fact{
  display:grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap:10px;
  align-items:start;
}
.fact .k{
  font-size:12px;
  color:#64748b;
  font-weight:800;
}
.fact .v{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  min-width:0;
}
.pill{
  font-size:11px;
  color:#334155;
  padding:6px 9px;
  border-radius:999px;
  background:#fff;
  border:1px solid rgba(226,232,240,.95);
  max-width:100%;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
.pill-good{
  border-color: rgba(16,185,129,.40);
  color:#0f172a;
}

.fact-row{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:10px;
}
.mini-fact{
  border:1px solid rgba(226,232,240,.9);
  border-radius:7px;
  padding:10px;
  background: linear-gradient(135deg, rgba(16,185,129,.08), rgba(14,165,233,.06));
  min-width:0;
}
.mini-fact .k{
  display:block;
  font-size:11px;
  color:#64748b;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.25px;
}
.mini-fact .v{
  display:block;
  margin-top:4px;
  font-size:13px;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
.mini-fact .v.strong{
  font-weight:900;
  color:#0f172a;
}

/* Card shell */
.biz-joined-card{
  background:#fff;
  border-radius:18px;
  overflow:hidden;
  /*border:1px solid rgba(226,232,240,.9);
  box-shadow: 0 10px 26px rgba(2,6,23,.08);*/
  box-shadow: var(--shadow3);
}

/* Hero */
.biz-hero{ position:relative; cursor:zoom-in; }
.biz-hero-badges{
  position:absolute;
  left:10px;
  bottom:10px;
  display:flex;
  gap:8px;
  flex-wrap:wrap;
}
.biz-badge{
  font-size:11px;
  font-weight:900;
  padding:7px 10px;
  border-radius:999px;
  background: rgba(139,92,246,.88);
  color:#fff;
  border:1px solid rgba(255,255,255,.22);
  backdrop-filter: blur(6px);
  white-space:nowrap;
}
.biz-badge.ghost{ background: rgba(2,6,23,.55); }

/* Body */
.biz-body{
  padding:12px;
  display:flex;
  flex-direction:column;
  gap:12px;
  min-width:0;
}

/* Top row */
.biz-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:15px;
  flex-wrap:wrap;
}
.biz-left{
  display:grid;
  align-items:center;
  gap:10px;
  min-width:0;
  margin: 10px;
}
.biz-logo{
  width: 102px;
  height: 102px;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(226,232,240,.95);
  flex: 0 0 auto;
  margin: auto;
}
.biz-logo img{ width:100%; height:100%; object-fit:cover; }

.biz-meta{ min-width:0;text-align:center; }
.biz-meta b{
  display:block;
  font-size:20px;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
.biz-meta span{
  display:block;
  font-size:12px;
  color:#64748b;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

.biz-actions{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
}

/* Buttons */
.biz-btn{
  padding:9px 12px;
  border-radius:999px;
  border:1px solid rgba(226,232,240,.95);
  background:#fff;
  font-size:12px;
  font-weight:900;
  cursor:pointer;
  white-space:nowrap;
}
.biz-btn:hover{ background:#f8fafc; }

.biz-btn.primary{
  border-color: rgba(16,185,129,.55);
  background: rgba(16,185,129,.16);
}
.biz-btn.primary:hover{ background: rgba(16,185,129,.24); }

.biz-btn.link{
  border:none;
  background: transparent;
  padding:0;
  font-weight:900;
  color:#0f172a;
}
.biz-btn.link:hover{ text-decoration:underline; }

/* Description */
.biz-desc{
  font-size:13px;
  color:#0f172a;
  line-height:1.35;
}

/* Stats */
.biz-stats{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap:10px;
}
.biz-stat{
  border:1px solid rgba(226,232,240,.9);
  border-radius:7px;
  padding:10px;
  background: linear-gradient(135deg, rgba(16,185,129,.08), rgba(14,165,233,.06));
  min-width:0;
}
.biz-stat .k{
  display:block;
  font-size:11px;
  color:#64748b;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.25px;
}
.biz-stat .v{
  display:block;
  margin-top:4px;
  font-size:13px;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
  font-weight:900;
}

/* Pills */
.biz-pills{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}
.pill{
  font-size:11px;
  color:#334155;
  padding:6px 9px;
  border-radius:999px;
  background:#fff;
  border:1px solid rgba(226,232,240,.95);
  max-width:100%;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
.pill-good{
  border-color: rgba(16,185,129,.40);
  color:#0f172a;
}

/* Bottom */
.biz-bottom{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  flex-wrap:wrap;
}
.biz-social-proof{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  color:#64748b;
  font-size:12px;
}
.sp{ white-space:nowrap; }

/* Mobile */
@media (max-width: 560px){
  .biz-stats{ grid-template-columns: 1fr; }
  .biz-actions{ width:100%; }
  .biz-actions .biz-btn{ flex:1; text-align:center; }
  .biz-bottom{ flex-direction:column; align-items:flex-start; }
}

/* Mobile */
@media (max-width: 560px){
  .fact{
    grid-template-columns: 1fr;
    gap:6px;
  }
  .fact-row{
    grid-template-columns: 1fr;
  }
  .tour-cta{
    width:100%;
    text-align:center;
  }
}
.left-col{
  position: relative;
}

.left-sticky{
  position: fixed;
  /* top: 76px; */
  width: 280px;
  max-height: calc(100vh - 75px);
  overflow: auto;
  scrollbar-width: none;
  padding-bottom: 20px;
}
.left-sticky{
  overflow-y: auto;

  /* Firefox */
  scrollbar-color: rgba(0,0,0,.15) transparent;
}

/* WebKit */
.left-sticky::-webkit-scrollbar{
  width:6px;
}

.left-sticky::-webkit-scrollbar-track{
  background: transparent;
}

.left-sticky::-webkit-scrollbar-thumb{
  background: rgba(0,0,0,.15);
  border-radius: 999px;
}

.left-sticky::-webkit-scrollbar-button{
  display:none;
}
@media (max-width: 1150px){
  .left-sticky{
    position: unset;
    top: unset;                 /* below header */
    width: unset;              /* match your left column width */
    max-height: unset;
    overflow: unset;
    scrollbar-width: unset;
  }
  .left-col{display: none;}
}

.profile-header{
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow3);
  max-width: 1100px;
  /* margin: 20px auto; */
  position: relative;
}

.cover{
  position:relative;
  height:260px;
  overflow:hidden;
}
.cover img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.edit-btn{
  position:absolute;
  right:14px;
  bottom:14px;
  padding:8px 12px;
  font-size:12px;
  font-weight:700;
  border-radius:999px;
  border:none;
  background:rgba(0,0,0,.65);
  color:#fff;
  cursor:pointer;
}
.edit-btn:hover{
  background:rgba(0,160,0,.8);
}

.profile-info{
  display: flex;
  align-items: flex-end;
  gap: 14px;
  padding: 0 16px;
  margin-top: 3px;
  position: absolute;
  width: 500px;
}

.main-avatar{
  width: 88px;
  height: 88px;
  border-radius: 16px;
  overflow: hidden;
  border: 4px solid #fff;
  background: #fff;
  flex: 0 0 auto;
  position: absolute;
  margin-bottom: -15px;
}
.main-avatar img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.main-meta{ margin-left:97px }
.main-meta h1{
  margin: 0;
  font-size: 20px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  width: 350px;
}
.main-meta p{
  margin: 4px 0 0;
  font-size: 12px;
  color: #555;
  font-weight: 500;
  width: calc(100% - 13px);
  white-space: nowrap;
  text-overflow: ellipsis;
  /*background: tan;*/
  overflow: hidden;
}

.profile-nav{
  display: flex;
  gap: 8px;
  padding: 12px 16px 0px;
  /* border-top: 1px solid #e5e7eb; */
  margin-top: 60px;
}
.profile-nav a{
  font-size: 12px;
  font-weight: 500;
  color: #2563eb;
  text-decoration: none;
  padding-bottom: 6px;
}
.profile-nav a.active{
  border-bottom:4px solid #16a34a;
  color:#000;
}

@media (max-width:640px){
  .cover{height:200px}
  .profile-info{
    flex-direction:column;
    align-items:flex-start;
    margin-top:0px;
    padding: 0 8px;
  }
  .main-avatar{width:76px;height:76px;margin-top: -15px;}
  .main-meta{ margin: 5px 0px 0px 80px;}
  .profile-nav{
    overflow-x:auto;
    white-space:nowrap;
  }
  @media (max-width:560px){
    .profile-header, .panel, .tour-added-card, .biz-joined-card, .post, .ad{border-radius:0px}
    .connect-highlight, .join-card{margin: 0px 10px}
    .sponsored_label, .notifs{margin-right:10px;margin-left:10px;}
  }
}













/* NEW Home */

    .left-cta{
      border:1px solid rgba(16,185,129,.30);
      background: linear-gradient(135deg, rgba(16,185,129,.12), rgba(14,165,233,.06));
    }
    .left-cta .big{
      font-size:14px;
      font-weight:1000;
      margin:0;
    }
    .left-cta .sub{
      margin:6px 0 10px;
      font-size:12.5px;
      color:var(--muted);
      line-height:1.35;
    }
    .left-cta .row{display:flex; gap:8px; flex-wrap:wrap; align-items:center;}
    .left-cta .row .btn{border-radius:14px}


     /* Center column */
    .center-stack{display:flex; flex-direction:column; gap: var(--gap);padding-bottom:20px;}
    .hero{
      position:relative;
      border-radius: var(--r18);
      overflow:hidden;
      box-shadow: var(--shadow3);
      /*border:1px solid rgba(226,232,240,.9);*/
      background:#fff;
    }
    .hero-media{
      height: 420px;
      background:#0b1220;
      position:relative;
      overflow:hidden;
    }
    .hero-media img{
      width:100%;
      height:100%;
      object-fit:cover;
      opacity:.92;
      transform: scale(1.02);
    }
    .hero-overlay{
      position:absolute; inset:0;
      background: linear-gradient(90deg, rgba(2,6,23,.32), rgba(2,6,23,.18) 25%, rgba(2,6,23,.05));
    }
    .hero-body{
      position:absolute;
      left:14px; right:14px; top:120px;
      display:flex;
      gap:12px;
      align-items:flex-end;
      justify-content:space-between;
      flex-wrap:wrap;
      color:#fff;
    }
    .hero-copy{max-width:720px}
    .hero-copy h1{
      margin:0;
      font-size:22px;
      letter-spacing:.2px;
      line-height:1.12;
      font-weight:700;
    }
    .hero-copy p{
      margin:6px 0 0;
      font-size:13px;
      color:rgba(255,255,255,.90);
      line-height:1.35;
      max-width:640px;
    }
    .hero-actions{display:flex; gap:8px; flex-wrap:wrap; align-items:center;}
    .hero-actions .btn{border:none}
    .hero-actions .btn.primary{background:#16a34a;color:#fff}
    .hero-actions .btn.primary:hover{filter:brightness(.98)}
    .hero-actions .btn.ghost{border:1px solid rgba(255,255,255,.28); background: rgba(255,255,255,.08); color:#fff}

    .trust-row{
      display:flex;
      gap:8px;
      flex-wrap:wrap;
      padding:12px 12px 14px;
      border-top:1px solid rgba(226,232,240,.85);
      background: #fff;
    }
    .chip{
      font-size:12px;
      padding:7px 10px;
      border-radius:999px;
      border:1px solid rgba(226,232,240,.95);
      background:#fff;
      color:#334155;
      font-weight:900;
    }

    /* Preview sections (like the feed, but curated for conversion) */
    .section-head{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:10px;
      padding:12px 12px 0;
    }
    .section-head h3{
      margin:0;
      font-size:12px;
      letter-spacing:.35px;
      color:var(--muted);
      font-weight:1000;
      text-transform:uppercase;
    }
    .section-head a{font-size:12px;color:var(--muted)}
    .section-head a:hover{color:var(--text)}

    .cards{
      display:grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap:12px;
      padding:12px;
    }
    @media (max-width: 740px){
      .cards{grid-template-columns:1fr;}
    }

    .card{
      background:#fff;
      border:1px solid rgba(226,232,240,.9);
      border-radius:16px;
      overflow:hidden;
      box-shadow: var(--shadow2);
    }
    .media32{aspect-ratio: 3/2; width:100%; background:#f1f5f9; overflow:hidden;}
    .media32 img{width:100%;height:100%;object-fit:cover}
    .card-body{padding:10px}
    .card-title{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:10px;
    }
    .card-title b{
      font-size:14px;
      font-weight:1000;
      white-space:nowrap;
      overflow:hidden;
      text-overflow:ellipsis;
    }
    .meta{
      margin-top:4px;
      font-size:12px;
      color:var(--muted);
      white-space:nowrap;
      overflow:hidden;
      text-overflow:ellipsis;
    }
    .row{display:flex; gap:8px; flex-wrap:wrap; align-items:center; margin-top:10px;}
    .tag{
      font-size:11px;
      padding:6px 9px;
      border-radius:999px;
      border:1px solid rgba(226,232,240,.95);
      background:#fff;
      color:#334155;
      font-weight:900;
    }
    .tag.good{border-color: rgba(16,185,129,.45); background: rgba(16,185,129,.12);}
    .tag.blue{border-color: rgba(14,165,233,.35); background: rgba(14,165,233,.08);}
    .price{
      margin-left:auto;
      font-size:12px;
      padding:7px 10px;
      border-radius:999px;
      border:1px solid rgba(226,232,240,.95);
      background:#fff;
      font-weight:1000;
      white-space:nowrap;
    }
    .card-actions{
      border-top:1px solid rgba(226,232,240,.85);
      background:#fbfbfd;
      padding:10px;
      display:flex;
      gap:8px;
      flex-wrap:wrap;
    }
    .tiny{
      font-size:12px;
      padding:8px 10px;
      border-radius:999px;
      border:1px solid rgba(226,232,240,.95);
      background:#fff;
      color:var(--muted);
      cursor:pointer;
      font-weight:1000;
    }
    .tiny:hover{background:#f8fafc;color:var(--text)}
    .tiny.primary{
      border-color: rgba(16,185,129,.55);
      background: rgba(16,185,129,.14);
      color: var(--text);
    }

    /* How it works */
    .steps{
      padding:12px;
      display:grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap:12px;
    }
    @media (max-width: 900px){
      .steps{grid-template-columns:1fr}
    }
    .step{
      border:1px solid rgba(226,232,240,.9);
      border-radius:16px;
      padding:12px;
      background: linear-gradient(135deg, rgba(16,185,129,.10), rgba(14,165,233,.06));
    }
    .step b{display:block; font-size:13px; font-weight:1000;}
    .step p{margin:6px 0 0; font-size:12.5px; color:var(--muted); line-height:1.35;}

    /* Right column (sponsored + signup stick) */
    .right-stack{display:flex; flex-direction:column; gap: var(--gap); align-self:start;}
    .right-stick{position:sticky; top: 76px; display:flex; flex-direction:column; gap: var(--gap);}

    .signup{
      border:1px solid rgba(16,185,129,.35);
      background: linear-gradient(135deg, rgba(16,185,129,.12), rgba(14,165,233,.06));
    }
    .signup h2{
      margin:0;
      font-size:16px;
      font-weight:1000;
      letter-spacing:.2px;
    }
    .signup p{
      margin:6px 0 10px;
      font-size:12.5px;
      color:var(--muted);
      line-height:1.35;
    }
    .form{
      display:flex;
      flex-direction:column;
      gap:8px;
    }
    .input{
      width:100%;
      border:1px solid rgba(226,232,240,.95);
      background:#fff;
      border-radius:14px;
      padding:10px 11px;
      font-size:13px;
      outline:0;
    }
    .input:focus{border-color: rgba(14,165,233,.45)}
    .form .btn{
      border:none;
      border-radius:14px;
      background:#16a34a;
      color:#fff;
      font-weight:1000;
    }
    .form .btn:hover{filter:brightness(.98)}
    .fine{
      margin-top:8px;
      font-size:11.5px;
      color:var(--muted);
      line-height:1.35;
    }

    .ads-head{
      display:flex;
      align-items:center;
      justify-content:space-between;
      padding:12px 12px 0;
    }
    .ads-head .label{
      font-size:12px;
      letter-spacing:.35px;
      color:var(--muted);
      font-weight:1000;
      text-transform:uppercase;
    }
    .ad-cards{display:grid; grid-template-columns:1fr; gap:12px; padding:12px;}
    .ad-card{
      background:#fff;
      border:1px solid rgba(226,232,240,.9);
      border-radius:16px;
      overflow:hidden;
      box-shadow: var(--shadow2);
      cursor:pointer;
    }
    .ad-img{aspect-ratio: 3/2; background:#f1f5f9;}
    .ad-img img{width:100%;height:100%;object-fit:cover}
    .ad-body{padding:10px}
    .ad-body b{
      display:block;
      font-size:13px;
      font-weight:1000;
      white-space:nowrap;
      overflow:hidden;
      text-overflow:ellipsis;
    }
    .ad-txt{
      margin-top:6px;
      font-size:12px;
      color:#334155;
      line-height:1.35;
      display:-webkit-box;
      -webkit-line-clamp:2;
      -webkit-box-orient:vertical;
      overflow:hidden;
    }
    .ad-sub{
      margin-top:8px;
      font-size:12px;
      color:var(--muted);
      font-weight:1000;
      white-space:nowrap;
      overflow:hidden;
      text-overflow:ellipsis;
    }

    @media (max-width: 560px){
      .ad-card{ border-radius:unset; }
      .hero{ border-radius:unset; }
    }

.share-icons{
  display:flex;
  align-items:center;
  gap:30px;
  width: 300px;
  margin: 0px auto 10px auto;
  margin-right: auto;
}
.share-icons a{
  width:44px;
  height:44px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:8px;
  background:#f8fafc;
  border:1px solid #e2e8f0;
  transition: background .15s ease, transform .1s ease;
}
.share-icons a:hover{
  background:#eef2f7;
  transform: translateY(-1px);
}
.share-icons img{
  width: 32px;
  height: 32px;
  display: block;
  border-radius: 7px;
}

.post-actions{
  display:flex;justify-content:space-between;align-items:center;gap:10px;
  padding:8px 12px 10px;
  border-top:1px solid rgba(226,232,240,.75);
  background:#fff;
}
.acts{display:flex;gap:8px;flex-wrap:wrap}
.act{
  padding:8px 10px;border-radius:999px;
  border:1px solid rgba(226,232,240,.95);
  background:#fff;color:var(--muted);
  font-size:12px;cursor:pointer;
}
.act:hover{background:#f8fafc;color:var(--text)}
.act.primary{
  background: rgba(16,185,129,.10);
  border-color: rgba(16,185,129,.45);
  color: var(--text);
  font-weight:700;
}
.counts{font-size:12px;color:var(--muted);white-space:nowrap}
.post-like-show{
  float: left;

}
.post-share-show{
  float: right;
  margin: 5px 0px;
}

.comments{
  padding:10px 12px 12px;
  border-top:1px solid rgba(226,232,240,.75);
  background:#fbfbfd;
}
.comment, .pf_sh_comm_wrap{display:flex;gap:10px;padding:7px 0}
.comment .mini-pic, .pf_sh_comm_img{
  width:28px;height:28px;border-radius:10px;
  overflow:hidden;background:#f1f5f9;
  border:1px solid rgba(226,232,240,.95);
  flex:0 0 auto;
}
.comment .mini-pic img, .pf_sh_comm_img img{width:100%;height:100%;object-fit:cover}
.comment b, .pf_sh_comm_text p{font-size:12px;margin: 5px 0px;}
.comment span{font-size:14px;color:var(--muted);margin-top:2px}
.pf_sh_comm_time{
  font-weight: 500;
  font-size: 11px;
  color: #999;
}
.comment-more{
  display: none;
}
.comment-more-btn{color: #07c;font-size:.8em;text-align:center;margin:10px;}
.comment-more-btn:hover{text-decoration:underline;cursor:pointer;}
.commentbox{
  margin-top:8px;
  display:flex;gap:10px;align-items:center;
  border:1px solid rgba(226,232,240,.95);
  background:#fff;border-radius:999px;
  padding:8px 10px;
}
.commentbox input{
  flex:1;border:0;outline:0;background:transparent;
  font-size:13px;color:var(--text);
  min-width:0;
}
.commentboxtext{
  overflow: hidden;
  margin: 6px 0px 5px 38px;
  /* border: 1px #e5e5e5 solid; */
  border-radius: 14px;
  background-color: #eee;
}
.commentboxtext textarea{
  overflow: hidden;
  padding: 5px;
  margin: 3px;
  width: calc(100% - 67px);
  border: none;
  border-radius: 3px;
  font-family: arial;
  resize: none;
  outline:none;
  background: transparent;
}

.commentboxtext a{
  overflow: hidden;
  display:inline-block;
  padding: 5px;
  margin: 3px;
  width: calc(100% - 67px);
  border: none;
  border-radius: 3px;
  font-family: arial;
  resize: none;
  outline:none;
  background: transparent;
  color: #666;
  font-size: 13px;
  cursor: text;
}

.pf_sh_comm_more{display:none;}
.comment_more_link{color:#07f;font-weight: 500}
.comment_more_link:hover{cursor:pointer;}

.post-body-hotel{
  border: 1px var(--line) solid;
  border-radius: 7px;
  overflow: hidden;
  font-size: 13px;
  /* color: var(--muted); */
  margin: 10px 0px 0px 0px;

}
.post-body-hotel-name{
  padding: 10px 10px 0px 10px;
}
.post-body-hotel-text{
  font-size: 12px;
  padding: 0px 10px 10px 10px;
  color: #777;
}
.post-body-hotel-tags{
  margin: 0px 10px 10px 10px;
}

/* Middle: composer */
.composer{
  display:flex; gap:10px; align-items:flex-start;
  padding: var(--pad);
  /*margin-bottom: 12px;*/
  background: linear-gradient(135deg, rgba(30, 185, 29, .90), rgba(14, 165, 33, .20));
}
.composer .avatar{flex:0 0 auto;border-radius:10px;overflow:hidden;}
.composer-box{
  flex:1;
  background:#fff;
  border:1px solid rgba(226,232,240,.9);
  border-radius: 7px;
  padding:10px;
  min-width:0;
}
.composer-box .hint{margin:0;font-size:13px;color:var(--muted)}
.composer-actions{
  display:flex; flex-wrap:wrap; gap:8px;
  margin-top:8px;
}
