/* ===============================
   SINGLE BLOG – EDITORIAL
   =============================== */

.gc-blog-single {
  background: #F2E7D6;
}

/* ===============================
   HERO
   =============================== */

.gc-blog-hero {
  position: relative;
  padding-top: calc(var(--gc-header-height) + 40px);
}

.gc-blog-hero__media {
  width: 100%;
  height: 60vh;
  overflow: hidden;
}

.gc-blog-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gc-blog-hero__inner {
  max-width: 820px;
  margin: 48px auto 0;
  padding: 0 24px;
}

.gc-blog-hero__meta {
  display: block;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 12px;
}

.gc-blog-hero__title {
  font-family: "Instrument Serif", serif;
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 400;
  line-height: 1.1;
  color: #1f1f1f;
}

/* ===============================
   CONTENT
   =============================== */

.gc-blog-content {
  padding: 72px 24px 96px;
}

.gc-blog-content__inner {
  max-width: 720px; /* editorial width */
  margin: 0 auto;
}

/* Typography */
.gc-blog-content__inner p {
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 24px;
  color: #2c2c2c;
}

.gc-blog-content__inner h2 {
  font-family: "Instrument Serif", serif;
  font-size: 28px;
  font-weight: 400;
  margin: 48px 0 16px;
}

.gc-blog-content__inner h3 {
  font-size: 18px;
  font-weight: 500;
  margin: 40px 0 12px;
}

.gc-blog-content__inner ul {
  padding-left: 18px;
  margin-bottom: 24px;
}

.gc-blog-content__inner li {
  margin-bottom: 10px;
  line-height: 1.6;
}

/* Images inside content */
.gc-blog-content__inner img {
  width: 100%;
  height: auto;
  margin: 32px 0;
  border-radius: 6px;
}

/* ===============================
   MOBILE
   =============================== */

@media (max-width: 768px) {

  .gc-blog-hero__media {
    height: 45vh;
  }

  .gc-blog-content {
    padding: 56px 24px 72px;
  }
}

/* ===============================
   BLOG NAVIGATION – MINIMAL
   =============================== */

.gc-blog-nav {
  background: #F2E7D6;
  padding: 20px 0 24px;   /* 🔑 small, footer-adjacent */
}

/* Constrain width like content */
.gc-blog-nav .gc-container {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

/* Back link */
.gc-blog-nav__back {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 12px;
  opacity: 0.65;
  text-decoration: none;
}

.gc-blog-nav__back:hover {
  opacity: 1;
}

/* Divider */
.gc-blog-nav__divider {
  width: 120px;
  height: 1px;
  background: rgba(0,0,0,0.25);
  margin: 12px auto;
}

/* Prev / Next wrapper */
.gc-blog-nav__links {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 10px;
}

/* Individual link */
.gc-blog-nav__link {
  font-size: 14px;
  line-height: 1.4;
  max-width: 260px;
  text-decoration: underline;
  color: #2c2c2c;
}

/* Labels */
.gc-blog-nav__label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.6;
  margin-bottom: 4px;
}

/* 🔥 ABSOLUTE SAFETY KILL SWITCH */
.gc-blog-nav,
.gc-blog-nav * {
  min-height: unset !important;
  height: auto !important;
}