/* =========================
   SINGLE POST
========================= */
.single-wrap{ overflow-x: hidden; }

/* Header */
.single-header{
  width: 100vw;
  margin-left: calc(50% - 50vw);
  background: #fff;
  padding: 56px 0 18px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.single-header__inner{
  max-width: 920px;
}

.single-kicker{
  margin: 0 0 14px;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.55);
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.single-dot{ opacity: .6; }

.single-title{
  margin: 0;
  font-size: clamp(26px, 3.2vw, 44px);
  line-height: 1.2;
  font-weight: 700;
  color: #111;
}

/* Hero image */
.single-hero{
  width: 100vw;
  margin-left: calc(50% - 50vw);
  background: #fff;
  padding: 22px 0 0;
}

.single-hero__inner{
  max-width: 1100px;
}

.single-thumb{
  border-radius: 16px;
  overflow: hidden;
  background: #f3f3f3;
}

.single-thumb__img{
  width: 100%;
  height: auto;
  display: block;
}

/* Body */
.single-body{
  width: 100vw;
  margin-left: calc(50% - 50vw);
  background: #fff;
  padding: 34px 0 84px;
}

.single-body__inner{
  max-width: 920px;
}

/* Content typography */
.single-content{
  color: rgba(0,0,0,0.75);
  line-height: 1.95;
  font-size: 16px;
}

.single-content p{ margin: 0 0 14px; }
.single-content p:last-child{ margin-bottom: 0; }

.single-content h2{
  margin: 26px 0 12px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #111;
}
.single-content h3{
  margin: 18px 0 10px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: #111;
}

.single-content ul,
.single-content ol{
  margin: 10px 0 14px 18px;
}

.single-content a{
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(0,0,0,0.22);
}
.single-content a:hover{
  border-bottom-color: rgba(0,0,0,0.6);
}

.single-content blockquote{
  margin: 18px 0;
  padding: 16px 18px;
  border-left: 3px solid rgba(0,0,0,0.18);
  background: rgba(0,0,0,0.03);
  border-radius: 10px;
}

/* Tags */
.single-tags{
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid rgba(0,0,0,0.10);
}
.single-tags__label{
  display: inline-block;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.55);
  margin-bottom: 12px;
}
.single-tags__list{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.single-tag{
  display: inline-flex;
  align-items: center;
  height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.14);
  color: #111;
  text-decoration: none;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.single-tag:hover{
  background: rgba(0,0,0,0.03);
  border-color: rgba(0,0,0,0.25);
}

/* Nav */
.single-nav{
  margin-top: 34px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.single-nav a{
  display: block;
  padding: 14px 16px;
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: 14px;
  text-decoration: none;
  color: #111;
  transition: transform .2s ease, box-shadow .2s ease;
  min-height: 72px;
}
.single-nav a:hover{
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(0,0,0,0.08);
}

.nav-label{
  display: block;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.55);
  margin-bottom: 6px;
}
.nav-title{
  display: block;
  font-size: 14px;
  line-height: 1.45;
  font-weight: 700;
}

/* Related */
.single-related{
  width: 100vw;
  margin-left: calc(50% - 50vw);
  background: #fff;
  padding: 0 0 90px;
}
.single-related__inner{
  max-width: 1200px;
}
.single-related__title{
  margin: 0 0 18px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #111;
}
.single-related__grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.related-card{
  border: 1px solid rgba(0,0,0,0.10);
  border-radius: 14px;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}
.related-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
}
.related-card__link{
  display: block;
  color: inherit;
  text-decoration: none;
}
.related-card__media{
  aspect-ratio: 4/3;
  background: #f3f3f3;
  overflow: hidden;
}
.related-card__img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.related-card__img--placeholder{
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0,0,0,0.06), rgba(0,0,0,0.02));
}
.related-card__body{
  padding: 14px 14px 16px;
}
.related-card__date{
  display: block;
  margin-bottom: 8px;
  font-size: 12px;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.55);
}
.related-card__title{
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
  font-weight: 700;
  color: #111;
}

/* Responsive */
@media (max-width: 900px){
  .single-nav{ grid-template-columns: 1fr; }
  .single-related__grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px){
  .single-related__grid{ grid-template-columns: 1fr; }
  .single-header{ padding: 44px 0 16px; }
}





/* =========================
   SINGLE POST - BANNER
========================= */
.single-banner{
  width: 100vw;
  margin-left: calc(50% - 50vw);
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;

  min-height: clamp(300px, 60svh, 640px);
  padding: clamp(120px, 12svh, 190px) 0 clamp(44px, 6svh, 90px);

  background: #0b0b0b;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.single-banner::before{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.45) 0%,
    rgba(0,0,0,0.35) 40%,
    rgba(0,0,0,0.55) 100%
  );
}

.single-banner__inner{
  position: relative;
  width: 100%;
  max-width: 1100px;
}

.single-banner__kicker{
  margin: 0 0 14px;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.78);
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.single-banner__title{
  margin: 0 0 12px;
  font-size: clamp(28px, 4.8vw, 64px);
  line-height: 1.1;
  font-weight: 600;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: #fff;
}

.single-banner__excerpt{
  max-width: 720px;
  color: rgba(255,255,255,0.88);
  font-size: 16px;
  line-height: 1.9;
}
.single-banner__excerpt p{ margin: 0; }

@media (max-width: 560px){
  .single-banner{
    padding: 120px 0 40px;
    min-height: 320px;
  }
  .single-banner__title{
    letter-spacing: .06em;
  }
}