:root{
  --ink:#161512;
  --paper:#F6F2E9;
  --paper-2:#EDE6D6;
  --coral:#E2542B;
  --coral-deep:#B93E1D;
  --teal:#1F5E58;
  --line:#D9CFB8;
  --gray:#726B5C;
  --white:#FFFDF8;
  --font-display:'Fraunces', serif;
  --font-body:'Work Sans', sans-serif;
  --font-ar:'Noto Kufi Arabic', sans-serif;
  --font-ur:'Noto Nastaliq Urdu', serif;
  --font-ur-body:'Noto Sans Arabic', sans-serif;
  --font-fa:'Vazirmatn', sans-serif;
}
*{box-sizing:border-box; margin:0; padding:0;}
html{scroll-behavior:smooth;}
body{
  background:var(--paper);
  color:var(--ink);
  font-family:var(--font-body);
  line-height:1.5;
  -webkit-font-smoothing:antialiased;
}
body[dir="rtl"]{font-family:var(--font-ar);}
/* Every heading site-wide is styled with font-family:var(--font-display), which is a
   Latin-only serif (Fraunces) with no Arabic/Urdu/Farsi glyphs — it was silently falling
   back to the browser's generic system Arabic font (unprofessional-looking) on every
   heading. Redefining the --font-display variable per language fixes all of them at once,
   everywhere on the site, without touching each individual heading selector. */
body.lang-ar{--font-display:var(--font-ar);}
body.lang-ur[dir="rtl"]{font-family:var(--font-ur-body); line-height:1.9; --font-display:var(--font-ur);}
body.lang-ur h1, body.lang-ur h2, body.lang-ur h3, body.lang-ur .eyebrow{line-height:1.6;}
body.lang-fa[dir="rtl"]{font-family:var(--font-fa); --font-display:var(--font-fa);}
img{max-width:100%; display:block;}
a{color:inherit; text-decoration:none;}
button{font-family:inherit; cursor:pointer;}

::selection{background:var(--coral); color:var(--white);}

.wrap{max-width:1180px; margin:0 auto; padding:0 28px;}

/* ===== Top utility bar ===== */
.utility{
  background:var(--ink); color:var(--paper);
  font-size:12.5px; letter-spacing:.04em;
  position:sticky; top:0; z-index:41;
}
.utility .wrap{display:flex; justify-content:space-between; align-items:center; height:38px;}
.lang-switch{display:flex; gap:2px; background:rgba(255,255,255,.08); border-radius:999px; padding:3px;}
.lang-switch a{
  border:none; background:transparent; color:var(--paper);
  padding:4px 12px; border-radius:999px; font-size:12px; font-weight:600;
  opacity:.6; transition:.2s;
}
.lang-switch a.active{background:var(--coral); opacity:1; color:var(--white);}
.utility-links{display:flex; gap:18px; opacity:.75;}

/* ===== Nav dropdown ===== */
nav.main .nav-drop{position:relative;}
nav.main .dropdown{
  display:none; position:absolute; top:100%; left:0; min-width:220px;
  background:var(--white); border:1px solid var(--line); box-shadow:0 14px 30px rgba(0,0,0,.18);
  z-index:20; padding:6px;
}
body[dir="rtl"] nav.main .dropdown{left:auto; right:0;}
nav.main .nav-drop:hover .dropdown{display:block;}
nav.main .dropdown a{
  color:var(--ink); opacity:1; padding:10px 14px; font-size:13px; font-weight:600;
  border-bottom:none; display:block; border-radius:4px;
}
nav.main .dropdown a:hover{background:var(--paper-2); color:var(--coral);}

header.site{background:var(--paper); border-bottom:1px solid var(--line);}
.header-row{display:flex; align-items:center; justify-content:space-between; padding-top:22px; padding-bottom:22px;}
.brand{display:flex; align-items:center; gap:14px;}
.brand-mark{
  width:56px; height:56px; border-radius:50%; background:var(--coral);
  display:flex; align-items:center; justify-content:center; overflow:hidden;
  color:var(--white); font-family:var(--font-display); font-weight:700; font-size:20px;
  flex-shrink:0; border:2px solid var(--coral);
}
.brand-mark img{width:100%; height:100%; object-fit:cover;}
.brand-text .name{font-family:var(--font-display); font-weight:700; font-size:26px; letter-spacing:-.01em;}
.brand-text .tagline{font-size:11px; letter-spacing:.14em; text-transform:uppercase; color:var(--gray); margin-top:1px;}
.header-actions{display:flex; align-items:center; gap:18px;}
.icon-btn{width:38px; height:38px; border-radius:50%; border:1px solid var(--line); display:flex; align-items:center; justify-content:center; background:var(--white); transition:.2s;}
.icon-btn:hover{border-color:var(--coral); color:var(--coral);}
.login-btn{
  display:flex; align-items:center; gap:8px; border:1.5px solid var(--ink);
  background:var(--ink); color:var(--paper); padding:9px 18px; border-radius:2px;
  font-size:13px; font-weight:700; letter-spacing:.02em; transition:.2s;
}
.login-btn:hover{background:var(--coral); border-color:var(--coral);}

nav.main{background:var(--ink); position:relative;}
nav.main .wrap{display:flex; gap:2px; overflow-x:auto; scroll-behavior:smooth;}
.nav-arrow{display:none;}
@media(max-width:900px){
  nav.main .wrap{
    -webkit-mask-image: linear-gradient(to right, transparent 0, black 20px, black calc(100% - 20px), transparent 100%);
    mask-image: linear-gradient(to right, transparent 0, black 20px, black calc(100% - 20px), transparent 100%);
  }
  .nav-arrow{
    display:flex; align-items:center; justify-content:center;
    position:absolute; top:0; bottom:0; width:26px; z-index:2;
    color:var(--coral); font-size:20px; font-weight:700; pointer-events:none;
    background:linear-gradient(90deg, var(--ink) 30%, rgba(22,21,18,0) 100%);
    animation:navArrowPulse 1.6s ease-in-out infinite;
  }
  .nav-arrow-left{left:0;}
  .nav-arrow-right{right:0; transform:scaleX(-1); background:linear-gradient(90deg, var(--ink) 30%, rgba(22,21,18,0) 100%);}
}
@keyframes navArrowPulse{
  0%, 100%{opacity:.45; transform:translateX(0);}
  50%{opacity:1; transform:translateX(-3px);}
}
.nav-arrow-right{animation-name:navArrowPulseRight;}
@keyframes navArrowPulseRight{
  0%, 100%{opacity:.45; transform:scaleX(-1) translateX(0);}
  50%{opacity:1; transform:scaleX(-1) translateX(-3px);}
}
nav.main a{
  display:block; padding:16px 20px; font-size:13.5px; font-weight:600;
  letter-spacing:.03em; color:var(--paper); opacity:.75; white-space:nowrap;
  border-bottom:3px solid transparent; transition:.2s;
}
nav.main a:hover, nav.main a.active{opacity:1; border-bottom-color:var(--coral); background:rgba(255,255,255,.04);}

/* ===== Hero ===== */
.about-bio-text p{margin-bottom:18px;}
.about-bio-text p:last-child{margin-bottom:0;}
.about-map-col{max-width:460px;}
.about-map-title{font-family:var(--font-display); font-size:17px; margin-bottom:12px;}
.world-map-wrap{position:relative; background:var(--paper-2); border-radius:10px; padding:10px; border:1px solid var(--line);}
.world-map-wrap svg{width:100%; height:auto; display:block;}
.world-map-wrap svg path{fill:var(--line); stroke:var(--paper-2); stroke-width:0.6;}
.world-map-wrap svg path.visited{fill:var(--coral); cursor:pointer; transition:fill .15s;}
.world-map-wrap svg path.visited:hover{fill:var(--coral-deep);}
.map-tooltip{
  position:absolute; pointer-events:none; opacity:0; transition:opacity .1s;
  background:var(--ink); color:var(--white); font-size:12px; font-weight:600;
  padding:4px 9px; border-radius:5px; white-space:nowrap; z-index:5;
}
.visited-flags{display:flex; gap:8px; flex-wrap:wrap; margin-top:14px;}
.flag-icon{width:28px; height:21px; object-fit:cover; border-radius:3px; border:1px solid var(--line);}
@media (max-width: 760px){
  .about-map-col{max-width:100%;}
}

.hero{padding:44px 0 10px;}
.hero-grid{
  display:grid; grid-template-columns:1.1fr 1.4fr; min-height:440px;
  background:var(--ink); position:relative; overflow:hidden;
}
.hero-copy{
  background:var(--white); margin:32px 0 32px 32px; padding:38px;
  display:flex; flex-direction:column; justify-content:center; gap:14px;
  position:relative; z-index:2;
}
body[dir="rtl"] .hero-copy{margin:32px 32px 32px 0;}
.eyebrow{
  font-size:11.5px; font-weight:700; letter-spacing:.12em; text-transform:uppercase;
  color:var(--coral); display:flex; align-items:center; gap:10px;
}
.eyebrow::after{content:""; height:2px; width:40px; background:var(--coral);}
.hero-copy h1{font-family:var(--font-display); font-size:clamp(28px,3.4vw,40px); font-weight:600; line-height:1.12; letter-spacing:-.01em;}
.hero-copy .hero-subtitle{font-family:var(--font-display); font-size:clamp(15px,1.4vw,18px); font-weight:600; color:var(--ink); opacity:.75; margin-top:-4px; max-width:42ch;}
.hero-copy p{color:var(--gray); font-size:15px; max-width:42ch;}
.hero-title-anim{
  opacity:0; transform:translateY(16px);
  animation:heroTitleIn .8s cubic-bezier(.22,.9,.32,1) .15s forwards;
}
@keyframes heroTitleIn{
  to{opacity:1; transform:translateY(0);}
}
@media (prefers-reduced-motion: reduce){
  .hero-title-anim{opacity:1; transform:none; animation:none;}
}
.btn{
  display:inline-flex; align-items:center; gap:8px; width:fit-content;
  background:var(--coral); color:var(--white); padding:12px 22px;
  font-size:13px; font-weight:700; letter-spacing:.03em; border-radius:2px;
  transition:.2s; border:none; margin-top:6px;
}
.btn:hover{background:var(--coral-deep);}
.btn.ghost{background:transparent; border:1.5px solid var(--ink); color:var(--ink);}
.btn.ghost:hover{background:var(--ink); color:var(--white);}
.hero-media{position:relative; display:block;}
.hero-media img{width:100%; height:100%; object-fit:cover; opacity:.92;}
.hero-media .play, .card .thumb .play{
  position:absolute; top:50%; left:50%; transform:translate(-50%,-50%);
  width:64px; height:64px; border-radius:50%; background:rgba(20,20,18,.55);
  border:1.5px solid rgba(255,255,255,.7); display:flex; align-items:center; justify-content:center;
}
.card .thumb .play{width:46px; height:46px;}
.hero-media .play svg, .card .thumb .play svg{width:20px; height:20px; fill:#fff; margin-left:2px;}
.card .thumb .play svg{width:16px; height:16px;}

/* ===== Section headers ===== */
.section{padding:56px 0;}
.section-head{display:flex; justify-content:space-between; align-items:flex-end; margin-bottom:30px; border-bottom:1px solid var(--line); padding-bottom:18px;}
.section-head h2{font-family:var(--font-display); font-size:30px; font-weight:600;}
.section-head .eyebrow{margin-bottom:6px;}
.see-all{font-size:12.5px; font-weight:700; letter-spacing:.05em; color:var(--teal); display:flex; align-items:center; gap:6px;}

/* ===== Card grid ===== */
.video-search-wrap{margin:18px 0 26px;}
.video-search-input{
  width:100%; max-width:420px; padding:12px 16px; border:1px solid var(--line); border-radius:8px;
  background:var(--white); font-family:var(--font-body); font-size:14px; color:var(--ink);
}
.video-search-input:focus{outline:none; border-color:var(--coral);}
.grid3{display:grid; grid-template-columns:repeat(3,1fr); gap:30px;}
.card{display:flex; flex-direction:column; gap:12px;}
.card .thumb{position:relative; aspect-ratio:4/3; overflow:hidden; background:var(--paper-2);}
.card .thumb img{width:100%; height:100%; object-fit:cover; transition:transform .5s;}
.card:hover .thumb img{transform:scale(1.06);}
.badge{position:absolute; top:10px; left:10px; background:var(--coral); color:var(--white); font-size:10.5px; font-weight:700; padding:4px 9px; letter-spacing:.04em; text-transform:uppercase;}
body[dir="rtl"] .badge{left:auto; right:10px;}
.meta{font-size:11.5px; color:var(--gray); letter-spacing:.03em; text-transform:uppercase; display:flex; gap:8px; align-items:center;}
.meta .dot{width:3px; height:3px; border-radius:50%; background:var(--gray);}
.card h3{font-family:var(--font-display); font-size:19px; font-weight:600; line-height:1.28;}
.place-rating{font-size:13px; letter-spacing:1px; margin:2px 0 4px;}
.place-views{font-size:11.5px; color:var(--gray); margin-top:6px; letter-spacing:.02em;}
.place-detail-facts{display:flex; flex-wrap:wrap; gap:18px; margin-top:14px; font-size:14px;}
.place-fact{display:flex; align-items:center; gap:6px;}
.place-actions{display:flex; flex-wrap:wrap; gap:10px; margin-top:22px;}
.place-rating .star-on{color:var(--coral);}
.place-rating .star-off{color:var(--line);}
.card p{font-size:13.5px; color:var(--gray); line-height:1.6;}
.readmore{font-size:12px; font-weight:700; color:var(--coral); letter-spacing:.04em; display:inline-flex; align-items:center; gap:6px; margin-top:2px;}
.place-map-toggle summary{cursor:pointer; list-style:none;}
.place-map-toggle summary::-webkit-details-marker{display:none;}
hr.tick{border:none; height:2px; width:26px; background:var(--coral); margin:2px 0;}

.center-more{text-align:center; margin-top:40px;}

/* ===== Staff picks / featured strip ===== */
.picks{background:var(--ink); color:var(--paper);}
.picks .section-head{border-bottom-color:rgba(255,255,255,.15);}
.picks .section-head h2{color:var(--paper);}
.picks .meta{color:rgba(246,242,233,.55);}
.pickgrid{display:grid; grid-template-columns:1.3fr 1fr; gap:26px;}
.pick-feature{position:relative; min-height:420px; overflow:hidden;}
.pick-feature img{width:100%; height:100%; object-fit:cover; position:absolute; inset:0;}
.pick-feature .overlay{position:absolute; inset:0; background:linear-gradient(0deg, rgba(10,10,8,.92) 0%, rgba(10,10,8,.1) 55%); display:flex; align-items:flex-end; padding:30px;}
.pick-feature h3{font-family:var(--font-display); font-size:26px; font-weight:600; color:var(--white);}
.pick-list{display:flex; flex-direction:column; gap:22px;}
.pick-row{display:flex; gap:16px;}
.pick-row .thumb{width:110px; aspect-ratio:16/9; flex-shrink:0; overflow:hidden;}
.pick-row .thumb img{width:100%; height:100%; object-fit:cover;}
.pick-row h4{font-family:var(--font-display); font-size:16px; font-weight:600; margin-bottom:4px; color:var(--white);}
.pick-row .meta{color:rgba(246,242,233,.5);}

/* ===== Newsletter / signature ===== */
.stamp-band{background:var(--paper-2); border-top:1px solid var(--line); border-bottom:1px solid var(--line);}
.stamp-inner{display:flex; align-items:center; justify-content:space-between; padding-top:38px; padding-bottom:38px; gap:24px; flex-wrap:wrap;}
.stamp{display:flex; align-items:center; gap:16px;}
.stamp-icon{
  width:70px; height:70px; border:2px dashed var(--coral); border-radius:50%;
  display:flex; align-items:center; justify-content:center; transform:rotate(-8deg);
  font-family:var(--font-display); color:var(--coral); font-weight:700; font-size:11px; text-align:center; line-height:1.3;
}
.stamp-text h3{font-family:var(--font-display); font-size:21px; font-weight:600;}
.stamp-text p{font-size:13px; color:var(--gray); margin-top:2px;}
.subscribe-form{display:flex; gap:0; border:1.5px solid var(--ink); max-width:360px;}
.subscribe-form input{flex:1; border:none; background:transparent; padding:12px 14px; font-size:13.5px; font-family:inherit;}
.subscribe-form input:focus{outline:none;}
.subscribe-form button{background:var(--ink); color:var(--paper); padding:0 20px; font-size:12.5px; font-weight:700; border:none;}

/* ===== YouTube channel CTA ===== */
.yt-cta{background:var(--ink); color:var(--paper); padding:60px 0;}
.yt-cta-inner{display:grid; grid-template-columns:1.2fr 1fr; gap:40px; align-items:center;}
.yt-cta .eyebrow{color:var(--coral);}
.yt-cta .eyebrow::after{background:var(--coral);}
.yt-cta-copy h2{font-family:var(--font-display); font-size:30px; font-weight:600; margin:10px 0 14px; color:var(--white); max-width:16ch;}
.yt-cta-copy .yt-subtitle{font-size:14px; font-weight:600; color:var(--coral); margin:-8px 0 14px;}
.yt-cta-copy p{font-size:14px; color:rgba(246,242,233,.65); line-height:1.7; max-width:48ch; margin-bottom:24px;}
.yt-stats{display:flex; gap:30px; margin-bottom:26px;}
.yt-stats > div{display:flex; flex-direction:column;}
.yt-stats .n{font-family:var(--font-display); font-size:24px; font-weight:700; color:var(--white);}
.yt-stats .l{font-size:11px; text-transform:uppercase; letter-spacing:.05em; color:rgba(246,242,233,.5); margin-top:2px;}
.yt-cta-btn{display:inline-flex; align-items:center; gap:10px; background:#FF0000; color:#fff; padding:13px 24px; border-radius:3px; font-size:13.5px; font-weight:700;}
.yt-cta-btn:hover{background:#CC0000;}
.yt-cta-thumbs{display:grid; grid-template-columns:1fr 1fr; gap:10px; max-width:320px; margin-inline-start:auto;}
.yt-cta-thumbs a{display:block; position:relative;}
.yt-cta-thumbs img{width:100%; aspect-ratio:16/9; object-fit:cover; border-radius:6px;}
.yt-cta-thumbs .tag{
  position:absolute; bottom:6px; left:6px; background:rgba(20,20,18,.75); color:#fff;
  font-size:9.5px; font-weight:700; letter-spacing:.03em; text-transform:uppercase;
  padding:3px 7px; border-radius:3px;
}
body[dir="rtl"] .yt-cta-thumbs .tag{left:auto; right:6px;}
@media(max-width:820px){
  .yt-cta-inner{grid-template-columns:1fr;}
  .yt-cta-thumbs{display:none;}
}

/* ===== Footer ===== */
footer.site{background:var(--ink); color:var(--paper); padding:50px 0 24px;}
.footer-grid{display:grid; grid-template-columns:1.4fr 1fr 1fr 1fr; gap:36px; padding-bottom:36px; border-bottom:1px solid rgba(255,255,255,.12);}
footer.site .brand-text .name{color:var(--paper);}
footer.site p.about{font-size:13px; color:rgba(246,242,233,.6); margin-top:12px; max-width:32ch;}
footer.site h5{font-size:12px; letter-spacing:.08em; text-transform:uppercase; color:var(--coral); margin-bottom:16px;}
footer.site ul{list-style:none; display:flex; flex-direction:column; gap:10px;}
footer.site ul a{font-size:13.5px; color:rgba(246,242,233,.75);}
footer.site ul a:hover{color:var(--white);}
.foot-bottom{display:flex; justify-content:space-between; padding-top:22px; font-size:12px; color:rgba(246,242,233,.45); flex-wrap:wrap; gap:10px;}

/* ===== Single post ===== */
.post-hero{aspect-ratio:16/7; overflow:hidden; margin-bottom:24px;}
.post-hero img{width:100%; height:100%; object-fit:cover;}
.post-body{max-width:760px; margin:0 auto; padding-top:20px; padding-bottom:60px;}
.post-body h1{font-family:var(--font-display); font-size:clamp(28px,4vw,42px); margin-bottom:14px; line-height:1.2;}
.post-body .meta{margin-bottom:24px;}
/* ===== Compact article list ("More from the journal") ===== */
/* ===== Travel stories carousel — premium "story card" treatment ===== */
.travel-carousel-section{padding:56px 0; background:linear-gradient(180deg, var(--paper) 0%, var(--paper-2) 100%);}
.carousel-outer{position:relative; max-width:1180px; margin:0 auto; padding:0 28px;}
.carousel-track{
  display:flex; gap:22px; overflow-x:auto; scroll-snap-type:x mandatory; scroll-behavior:smooth;
  padding:10px 2px 20px; -ms-overflow-style:none; scrollbar-width:none;
}
.carousel-track::-webkit-scrollbar{display:none;}
.place-carousel-track .card{flex:0 0 290px; scroll-snap-align:start;}
@media(max-width:860px){ .place-carousel-track .card{flex-basis:230px;} }
.carousel-card{
  flex:0 0 268px; scroll-snap-align:start; border-radius:16px; overflow:hidden;
  box-shadow:0 10px 24px rgba(22,21,18,.14);
  transition:transform .4s cubic-bezier(.22,1,.36,1), box-shadow .4s ease;
}
.carousel-card:hover{transform:translateY(-8px) scale(1.015); box-shadow:0 26px 46px rgba(22,21,18,.28);}
.carousel-card-img{position:relative; aspect-ratio:3/4.4; background:var(--paper-2); border-radius:16px; overflow:hidden;}
.carousel-card-img::after{
  content:""; position:absolute; inset:0; border-radius:16px; pointer-events:none;
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.14);
}
.carousel-card-img img{width:100%; height:100%; object-fit:cover; transition:transform .6s cubic-bezier(.22,1,.36,1);}
.carousel-card:hover .carousel-card-img img{transform:scale(1.1);}
.carousel-card-topline{position:absolute; top:14px; left:14px; right:14px; display:flex; justify-content:space-between; align-items:flex-start; gap:8px; z-index:2;}
.carousel-card-pin{
  background:rgba(20,20,18,.55); color:#fff; font-size:10.5px; font-weight:700;
  padding:5px 10px; border-radius:999px; backdrop-filter:blur(4px); white-space:nowrap;
  overflow:hidden; text-overflow:ellipsis; max-width:150px;
}
.carousel-card-tag{
  background:var(--coral); color:#fff; font-size:10px; font-weight:800; letter-spacing:.04em; text-transform:uppercase;
  padding:5px 9px; border-radius:999px; white-space:nowrap; flex-shrink:0;
}
.carousel-card-gradient{position:absolute; inset:0; background:linear-gradient(0deg, rgba(8,8,6,.95) 0%, rgba(8,8,6,.35) 42%, rgba(8,8,6,0) 68%);}
.carousel-card-play{
  position:absolute; top:50%; left:50%; transform:translate(-50%,-50%) scale(.85);
  width:52px; height:52px; border-radius:50%; background:rgba(255,255,255,.16); backdrop-filter:blur(6px);
  border:1.5px solid rgba(255,255,255,.55); display:flex; align-items:center; justify-content:center;
  opacity:0; transition:opacity .3s ease, transform .3s ease; z-index:2;
}
.carousel-card-play svg{width:18px; height:18px; fill:#fff; margin-left:2px;}
.carousel-card:hover .carousel-card-play{opacity:1; transform:translate(-50%,-50%) scale(1);}
.carousel-card-text{position:absolute; left:0; right:0; bottom:0; padding:18px; z-index:1;}
.carousel-card-text h3{font-family:var(--font-display); font-size:18px; font-weight:700; line-height:1.28; color:#fff; text-shadow:0 2px 10px rgba(0,0,0,.35);}
.carousel-arrow{
  position:absolute; top:44%; transform:translateY(-50%); z-index:3;
  width:44px; height:44px; border-radius:50%; border:1px solid var(--line); background:var(--white);
  font-size:20px; font-weight:700; color:var(--ink); cursor:pointer; box-shadow:0 10px 22px rgba(22,21,18,.16);
  display:flex; align-items:center; justify-content:center; transition:.2s;
}
.carousel-arrow:hover{background:var(--coral); color:#fff; border-color:var(--coral); transform:translateY(-50%) scale(1.08);}
.carousel-arrow-left{left:-6px;}
.carousel-arrow-right{right:-6px;}
@media(max-width:860px){
  .carousel-outer{padding:0 12px;}
  .carousel-card{flex-basis:200px;}
  .carousel-arrow{display:none;}
}

.more-list{display:flex; flex-direction:column; gap:2px;}
.more-row{display:flex; align-items:center; gap:16px; padding:14px 4px; border-bottom:1px solid var(--line); transition:.2s;}
.more-row:hover{background:var(--paper-2);}
.more-row .thumb{width:76px; height:56px; flex-shrink:0; border-radius:4px; overflow:hidden;}
.more-row .thumb img{width:100%; height:100%; object-fit:cover;}
.more-row-body{flex:1; min-width:0;}
.more-row-body h4{font-family:var(--font-display); font-size:16px; font-weight:600; margin:2px 0 3px;}
.more-row-body p{font-size:13px; color:var(--gray); white-space:nowrap; overflow:hidden; text-overflow:ellipsis;}
.more-row-arrow{color:var(--coral); font-weight:700; flex-shrink:0;}

/* ===== Scroll-reveal animation ===== */
.reveal{opacity:0; transform:translateY(24px); transition:opacity .7s ease, transform .7s ease;}
.reveal.in-view{opacity:1; transform:translateY(0);}
@media(prefers-reduced-motion:reduce){
  .reveal{opacity:1; transform:none; transition:none;}
}

.gallery-item{position:relative; aspect-ratio:4/3; overflow:hidden; background:var(--paper-2); border-radius:4px;}
.gallery-item img{width:100%; height:100%; object-fit:cover; transition:transform .5s;}
.gallery-item:hover img{transform:scale(1.06);}
.gallery-item figcaption{position:absolute; bottom:0; left:0; right:0; background:linear-gradient(0deg, rgba(10,10,8,.85), rgba(10,10,8,0)); color:#fff; font-size:12.5px; padding:20px 12px 10px;}

.post-video{position:relative; width:100%; aspect-ratio:16/9; margin:20px 0; border-radius:6px; overflow:hidden;}
.post-video iframe{position:absolute; inset:0; width:100%; height:100%; border:0;}
.post-content{font-size:16px; line-height:1.85;}

/* ===== Share buttons + hashtag chips ===== */
.share-row{display:flex; align-items:center; gap:8px; margin-top:16px;}
.share-label{font-size:12px; font-weight:700; color:var(--gray); text-transform:uppercase; letter-spacing:.04em; margin-inline-end:2px;}
.share-btn{
  width:34px; height:34px; border-radius:50%; background:var(--paper-2); border:1px solid var(--line);
  display:flex; align-items:center; justify-content:center; font-size:14px; font-weight:700; color:var(--ink);
  transition:.2s; cursor:pointer;
}
.share-btn:hover{background:var(--coral); color:#fff; border-color:var(--coral);}
.tag-chips{display:flex; flex-wrap:wrap; gap:8px; margin-top:20px;}
.tag-chip{
  background:var(--paper-2); border:1px solid var(--line); color:var(--teal); font-size:12.5px; font-weight:600;
  padding:5px 12px; border-radius:999px; transition:.2s;
}
.tag-chip:hover{background:var(--teal); color:#fff; border-color:var(--teal);}

.comments-block{margin-top:44px; padding-top:32px; border-top:1px solid var(--line);}
.comments-list{display:flex; flex-direction:column; gap:16px; max-width:600px;}
.comment-item{background:var(--paper-2); border-radius:6px; padding:14px 16px;}
.comment-name{font-weight:700; font-size:13.5px;}
.comment-message{font-size:14px; color:var(--ink); margin-top:4px; line-height:1.6;}
.comment-date{font-size:11.5px; color:var(--gray); margin-top:6px; text-transform:uppercase; letter-spacing:.03em;}
.post-content p{margin-bottom:1.2em;}

/* ===== responsive ===== */
@media(max-width:860px){
  .hero-grid{grid-template-columns:1fr;}
  .hero-media{min-height:260px;}
  .hero-copy{margin:20px; padding:26px;}
  .grid3{grid-template-columns:1fr;}
  .pickgrid{grid-template-columns:1fr;}
  .footer-grid{grid-template-columns:1fr 1fr;}
  .stamp-inner{flex-direction:column; align-items:flex-start;}
}
