/*
 * goroyeh56.com — Blog Post Custom Styles
 * Paste this into: WordPress Admin > Appearance > Customize > Additional CSS
 * OR upload to your theme and enqueue via functions.php
 *
 * Matches the design system of goroyeh56.com (index.html)
 * Fonts: DM Sans + Playfair Display (loaded from Google Fonts)
 * Colors: --bg:#faf9f7  --text:#1a1a1a  --gold:#c8922a  --border:#e5e3df
 */

/* ── Import fonts (same as index.html) ─────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=DM+Sans:wght@300;400;500&display=swap');

/* ── Global reset for WP pages ──────────────────────────────────────────── */
body.single,
body.page {
  background: #faf9f7 !important;
  color: #1a1a1a !important;
  font-family: 'DM Sans', sans-serif !important;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* ── Hide default WP theme nav + header (we inject our own below) ───────── */
body.single .site-header,
body.single #masthead,
body.single .main-navigation,
body.single .site-branding,
body.page  .site-header,
body.page  #masthead,
body.page  .main-navigation,
body.page  .site-branding { display: none !important; }

/* Hide default WP footer text */
body.single .site-footer .site-info,
body.single .site-footer > .container > :not(.footer-custom),
body.page   .site-footer .site-info { opacity: 0; height: 0; overflow: hidden; }

/* ── Custom Nav bar (injected via JS below) ─────────────────────────────── */
#goro-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 72px;
  z-index: 9999;
  background: rgba(250, 249, 247, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s;
  font-family: 'DM Sans', sans-serif;
}
#goro-nav.scrolled {
  border-bottom-color: #e5e3df;
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}
.goro-nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.goro-nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 500;
  font-size: 1rem;
  color: #1a1a1a;
  text-decoration: none;
}
.goro-nav-logo img {
  width: 34px; height: 34px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #e5e3df;
  display: inline-block;
}
.goro-nav-links {
  display: flex;
  gap: 1.75rem;
  align-items: center;
  list-style: none;
  margin: 0; padding: 0;
}
.goro-nav-links a {
  font-size: 0.88rem;
  color: #6b6b6b;
  text-decoration: none;
  transition: color 0.2s;
  position: relative;
}
.goro-nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: #1a1a1a;
  transition: width 0.25s;
}
.goro-nav-links a:hover { color: #1a1a1a; }
.goro-nav-links a:hover::after { width: 100%; }
.goro-nav-links .nav-gold { color: #c8922a !important; font-weight: 500; }
.goro-nav-back {
  font-size: 0.83rem;
  color: #6b6b6b;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color 0.2s;
}
.goro-nav-back:hover { color: #1a1a1a; }

/* ── Blog dropdown menu ─────────────────────────────────────────────────── */
.goro-has-dropdown {
  position: relative;
}
/* The caret after "Blog" */
.goro-has-dropdown > a::after {
  content: '' !important;
  display: inline-block !important;
  width: 0 !important;
  height: 0 !important;
  margin-left: 5px !important;
  border-left: 3.5px solid transparent !important;
  border-right: 3.5px solid transparent !important;
  border-top: 4px solid currentColor !important;
  vertical-align: middle !important;
  opacity: 0.5 !important;
  transition: transform 0.2s !important;
  position: static !important;  /* override the ::after used for underline */
  background: none !important;
}
.goro-has-dropdown:hover > a::after {
  transform: rotate(180deg) !important;
  opacity: 1 !important;
}
/* Dropdown panel — HIDDEN by default */
.goro-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  background: #ffffff;
  border: 1px solid #e5e3df;
  border-radius: 10px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.10);
  min-width: 190px;
  padding: 6px 0;
  list-style: none;
  margin: 0;
  z-index: 10001;
}
/* Triangle pointer */
.goro-dropdown::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 10px;
  height: 6px;
  background: #ffffff;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}
/* Show on hover */
.goro-has-dropdown:hover .goro-dropdown {
  display: block;
  animation: ddFade 0.15s ease;
}
@keyframes ddFade {
  from { opacity: 0; transform: translateX(-50%) translateY(-4px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}
/* Dropdown items */
.goro-dropdown li {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  display: block !important;
}
.goro-dropdown li a {
  display: flex !important;
  align-items: center !important;
  gap: 9px !important;
  padding: 9px 18px !important;
  font-size: 0.84rem !important;
  color: #1a1a1a !important;
  text-decoration: none !important;
  white-space: nowrap !important;
  transition: background 0.15s, color 0.15s !important;
  /* reset all the nav underline ::after stuff */
  position: static !important;
}
.goro-dropdown li a::after {
  display: none !important;
}
.goro-dropdown li a:hover {
  background: #faf9f7 !important;
  color: #c8922a !important;
}
/* Colored dot before each category */
.goro-dropdown li a .dd-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
  display: inline-block;
}
body.single .site-main,
body.single #primary,
body.single #content,
body.page   .site-main,
body.page   #primary,
body.page   #content {
  padding-top: 72px !important;
  background: #faf9f7 !important;
}

/* ── Post hero / featured image ─────────────────────────────────────────── */
body.single .post-thumbnail,
body.single .entry-header .post-thumbnail {
  width: 100%;
  max-height: 520px;
  overflow: hidden;
  border-radius: 0;
  margin: 0;
}
body.single .post-thumbnail img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
}

/* ── Hero overlay text ──────────────────────────────────────────────────── */
.goro-post-hero {
  position: relative;
  max-height: 520px;
  overflow: hidden;
  background: #111;
}
.goro-post-hero img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
  opacity: 0.72;
  transition: transform 8s ease;
}
.goro-post-hero:hover img { transform: scale(1.03); }
.goro-hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2.5rem 3rem;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.1) 60%, transparent 100%);
}
.goro-hero-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #c8922a;
  margin-bottom: 0.6rem;
  font-weight: 500;
}
.goro-hero-title {
  font-family: 'Playfair Display', serif !important;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin: 0 0 0.75rem;
  max-width: 780px;
}
.goro-hero-meta {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  display: flex;
  align-items: center;
  gap: 1rem;
}
.goro-hero-meta span { display: flex; align-items: center; gap: 4px; }

/* ── Article layout ─────────────────────────────────────────────────────── */
body.single .entry-header,
body.single .entry-content,
body.single .entry-footer,
body.single .post-navigation,
body.single #comments {
  max-width: 740px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 2rem;
  padding-right: 2rem;
}

/* When there is no featured image — show title in page */
body.single .entry-header {
  padding-top: 3.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #e5e3df;
  margin-bottom: 2.5rem;
}

/* ── Entry title (when not in hero) ────────────────────────────────────── */
body.single .entry-title,
body.single h1.entry-title {
  font-family: 'Playfair Display', serif !important;
  font-size: clamp(1.9rem, 4vw, 2.8rem) !important;
  font-weight: 700 !important;
  line-height: 1.2 !important;
  color: #1a1a1a !important;
  margin: 0 0 1rem !important;
}

/* Meta */
body.single .entry-meta,
body.single .posted-on,
body.single .byline {
  font-size: 0.8rem !important;
  color: #6b6b6b !important;
  font-family: 'DM Sans', sans-serif !important;
  margin-bottom: 0 !important;
}
body.single .entry-meta a { color: #c8922a !important; text-decoration: none !important; }
body.single .entry-meta a:hover { text-decoration: underline !important; }

/* ── Body typography ────────────────────────────────────────────────────── */
body.single .entry-content {
  font-family: 'DM Sans', sans-serif !important;
  font-size: 1.02rem !important;
  line-height: 1.8 !important;
  color: #1a1a1a !important;
  padding-top: 2rem;
}

body.single .entry-content p {
  margin-bottom: 1.5rem !important;
  font-size: 1.02rem !important;
  line-height: 1.8 !important;
  color: #2a2a2a !important;
}

body.single .entry-content h1,
body.single .entry-content h2 {
  font-family: 'Playfair Display', serif !important;
  font-size: 1.65rem !important;
  font-weight: 700 !important;
  color: #1a1a1a !important;
  margin: 2.75rem 0 1rem !important;
  line-height: 1.45 !important;   /* was 1.25 — tighter line-height clips emoji */
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #e5e3df;
  /* Ensure emoji stay inline and don't force a line break */
  display: block !important;
  word-break: break-word;
  overflow-wrap: break-word;
}

/* Emoji inside headings: keep them inline, prevent forced newlines */
body.single .entry-content h1 .emoji,
body.single .entry-content h2 .emoji,
body.single .entry-content h3 .emoji,
body.single .entry-content h1 img.emoji,
body.single .entry-content h2 img.emoji,
body.single .entry-content h3 img.emoji {
  display: inline !important;
  vertical-align: middle !important;
  width: 1.1em !important;
  height: 1.1em !important;
  margin: 0 0.15em 0.1em 0 !important;
}

/* WordPress sometimes wraps emoji in <span> — keep inline */
body.single .entry-content h1 span,
body.single .entry-content h2 span,
body.single .entry-content h3 span {
  display: inline !important;
}

body.single .entry-content h3 {
  font-family: 'DM Sans', sans-serif !important;
  font-size: 1.15rem !important;
  font-weight: 600 !important;
  color: #1a1a1a !important;
  margin: 2rem 0 0.75rem !important;
  letter-spacing: -0.01em;
}

body.single .entry-content h4,
body.single .entry-content h5 {
  font-family: 'DM Sans', sans-serif !important;
  font-size: 0.95rem !important;
  font-weight: 600 !important;
  color: #1a1a1a !important;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 1.75rem 0 0.6rem !important;
}

/* ── Links ──────────────────────────────────────────────────────────────── */
body.single .entry-content a {
  color: #c8922a !important;
  text-decoration: underline;
  text-decoration-color: rgba(200,146,42,0.35);
  text-underline-offset: 3px;
  transition: text-decoration-color 0.2s;
}
body.single .entry-content a:hover {
  text-decoration-color: #c8922a;
}

/* ── Lists ──────────────────────────────────────────────────────────────── */
body.single .entry-content ul,
body.single .entry-content ol {
  margin: 0 0 1.5rem 1.5rem !important;
  padding: 0 !important;
}
body.single .entry-content li {
  margin-bottom: 0.5rem !important;
  line-height: 1.75 !important;
  font-size: 1.02rem !important;
  color: #2a2a2a !important;
}
/* Color the number/bullet marker gold — but NO font-weight change.
   font-weight on ::marker shifts the marker box width, which causes
   emoji at the start of list items to wrap to a new line.             */
body.single .entry-content ul li::marker { color: #c8922a; }
body.single .entry-content ol li::marker { color: #c8922a; /* no font-weight here */ }

/* ── Blockquote ─────────────────────────────────────────────────────────── */
body.single .entry-content blockquote {
  margin: 2rem 0 !important;
  padding: 1.25rem 1.5rem !important;
  border-left: 3px solid #c8922a !important;
  background: #f4f3f0 !important;
  border-radius: 0 8px 8px 0 !important;
  font-style: italic !important;
  color: #444 !important;
  font-size: 1.05rem !important;
  line-height: 1.75 !important;
}
body.single .entry-content blockquote p { margin: 0 !important; }
body.single .entry-content blockquote cite {
  display: block;
  margin-top: 0.6rem;
  font-size: 0.82rem;
  color: #6b6b6b;
  font-style: normal;
}

/* ── Inline code + code blocks ──────────────────────────────────────────── */
body.single .entry-content code {
  font-family: 'SF Mono', 'Fira Code', 'Consolas', monospace !important;
  font-size: 0.85em !important;
  background: #f4f3f0 !important;
  color: #c8922a !important;
  padding: 2px 6px !important;
  border-radius: 4px !important;
  border: 1px solid #e5e3df !important;
}
body.single .entry-content pre {
  background: #111 !important;
  color: #e6edf3 !important;
  padding: 1.25rem 1.5rem !important;
  border-radius: 10px !important;
  overflow-x: auto !important;
  margin: 1.5rem 0 !important;
  font-size: 0.87rem !important;
  line-height: 1.7 !important;
  font-family: 'SF Mono', 'Fira Code', 'Consolas', monospace !important;
}
body.single .entry-content pre code {
  background: transparent !important;
  color: inherit !important;
  padding: 0 !important;
  border: none !important;
  font-size: inherit !important;
}

/* ── Images in post ─────────────────────────────────────────────────────── */
body.single .entry-content img {
  border-radius: 10px !important;
  max-width: 100% !important;
  height: auto !important;
  margin: 1.5rem auto !important;
  display: block !important;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08) !important;
}
body.single .entry-content figure {
  margin: 2rem 0 !important;
}
body.single .entry-content figcaption {
  text-align: center !important;
  font-size: 0.82rem !important;
  color: #6b6b6b !important;
  margin-top: 0.6rem !important;
  font-style: italic !important;
}

/* ── Horizontal rule ────────────────────────────────────────────────────── */
body.single .entry-content hr {
  border: none !important;
  border-top: 1px solid #e5e3df !important;
  margin: 2.5rem 0 !important;
}

/* ── Table ──────────────────────────────────────────────────────────────── */
body.single .entry-content table {
  width: 100% !important;
  border-collapse: collapse !important;
  margin: 1.5rem 0 !important;
  font-size: 0.9rem !important;
}
body.single .entry-content th {
  background: #f4f3f0 !important;
  font-weight: 600 !important;
  padding: 0.65rem 0.9rem !important;
  border-bottom: 2px solid #e5e3df !important;
  text-align: left !important;
  font-size: 0.8rem !important;
  text-transform: uppercase !important;
  letter-spacing: 0.07em !important;
  color: #6b6b6b !important;
}
body.single .entry-content td {
  padding: 0.65rem 0.9rem !important;
  border-bottom: 1px solid #e5e3df !important;
  vertical-align: top !important;
}
body.single .entry-content tr:last-child td { border-bottom: none !important; }
body.single .entry-content tr:hover td { background: #f4f3f0 !important; }

/* ── Category / tag badges ──────────────────────────────────────────────── */
body.single .cat-links a,
body.single .tags-links a,
body.single .entry-footer a {
  display: inline-block;
  font-size: 0.72rem;
  padding: 3px 10px;
  border-radius: 99px;
  background: #f4f3f0;
  color: #6b6b6b !important;
  text-decoration: none !important;
  margin: 2px;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: all 0.2s;
}
body.single .cat-links a:hover,
body.single .tags-links a:hover {
  background: #c8922a;
  color: #fff !important;
}

/* ── Entry footer ───────────────────────────────────────────────────────── */
body.single .entry-footer {
  padding: 1.5rem 2rem;
  border-top: 1px solid #e5e3df;
  margin-top: 3rem;
  font-size: 0.82rem;
  color: #6b6b6b;
}

/* ── Post navigation (prev / next) ─────────────────────────────────────── */
body.single .post-navigation {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  padding: 2.5rem 2rem;
  border-top: 1px solid #e5e3df;
  margin-top: 0;
}
body.single .nav-previous,
body.single .nav-next {
  padding: 1.1rem 1.25rem;
  border: 1px solid #e5e3df;
  border-radius: 10px;
  background: #fff;
  transition: all 0.2s;
  cursor: pointer;
}
body.single .nav-previous:hover,
body.single .nav-next:hover {
  border-color: #c8922a;
  box-shadow: 0 2px 12px rgba(200,146,42,0.1);
}
body.single .nav-next { text-align: right; }
body.single .nav-subtitle {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #6b6b6b;
  display: block;
  margin-bottom: 4px;
}
body.single .nav-title {
  font-weight: 500;
  font-size: 0.88rem;
  color: #1a1a1a;
  line-height: 1.4;
}
body.single .nav-previous .nav-title::before { content: '← '; }
body.single .nav-next    .nav-title::after  { content: ' →'; }

/* ── Comments section ───────────────────────────────────────────────────── */
body.single #comments {
  padding: 2.5rem 2rem;
  border-top: 1px solid #e5e3df;
}
body.single .comments-title {
  font-family: 'DM Sans', sans-serif !important;
  font-size: 1.05rem !important;
  font-weight: 600 !important;
  margin-bottom: 1.5rem !important;
  color: #1a1a1a !important;
}
body.single .comment-list { list-style: none !important; padding: 0 !important; }
body.single .comment-body {
  padding: 1rem 0;
  border-bottom: 1px solid #e5e3df;
}
body.single .comment-author { font-weight: 600; font-size: 0.88rem; color: #1a1a1a; }
body.single .comment-metadata { font-size: 0.75rem; color: #6b6b6b; margin: 2px 0 8px; }
body.single .comment-content p { font-size: 0.92rem !important; line-height: 1.7 !important; }

/* Comment form */
body.single #respond {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #e5e3df;
}
body.single #reply-title {
  font-size: 1rem !important;
  font-weight: 600 !important;
  color: #1a1a1a !important;
  margin-bottom: 1rem !important;
  font-family: 'DM Sans', sans-serif !important;
}
body.single .comment-form input[type="text"],
body.single .comment-form input[type="email"],
body.single .comment-form input[type="url"],
body.single .comment-form textarea {
  width: 100% !important;
  padding: 0.7rem 1rem !important;
  border: 1.5px solid #e5e3df !important;
  border-radius: 8px !important;
  font-family: 'DM Sans', sans-serif !important;
  font-size: 0.9rem !important;
  background: #faf9f7 !important;
  color: #1a1a1a !important;
  transition: border-color 0.2s !important;
  margin-bottom: 0.75rem !important;
}
body.single .comment-form input:focus,
body.single .comment-form textarea:focus {
  outline: none !important;
  border-color: #1a1a1a !important;
  box-shadow: 0 0 0 3px rgba(26,26,26,0.06) !important;
}
body.single .comment-form textarea { min-height: 120px !important; resize: vertical !important; }
body.single #submit,
body.single .comment-form input[type="submit"] {
  display: inline-flex !important;
  align-items: center !important;
  padding: 0.7rem 1.5rem !important;
  background: #1a1a1a !important;
  color: #fff !important;
  border: none !important;
  border-radius: 7px !important;
  font-family: 'DM Sans', sans-serif !important;
  font-size: 0.9rem !important;
  font-weight: 500 !important;
  cursor: pointer !important;
  transition: background 0.2s !important;
}
body.single #submit:hover,
body.single .comment-form input[type="submit"]:hover {
  background: #333 !important;
}

/* ── Reading progress bar ───────────────────────────────────────────────── */
#goro-progress {
  position: fixed;
  top: 72px; left: 0;
  height: 2px;
  background: #c8922a;
  z-index: 9998;
  width: 0%;
  transition: width 0.1s linear;
}

/* ── Table of contents ──────────────────────────────────────────────────── */
/* The manual TOC (##🗺️ heading + numbered list) needs special treatment:
   emoji inside <ol> <li> items must stay on the same line as the text.
   The fix: use list-style:none + counter-reset so we control the number
   display ourselves without ::marker, which is the root cause of the
   emoji-wrapping bug.                                                    */

/* Container styling */
body.single .entry-content .ez-toc-container,
body.single .entry-content .wp-block-table-of-contents,
body.single .entry-content [class*="toc-container"],
body.single .entry-content [id*="toc"] {
  background: #f4f3f0 !important;
  border: 1px solid #e5e3df !important;
  border-radius: 10px !important;
  padding: 1.25rem 1.5rem !important;
  margin: 2rem 0 !important;
  font-size: 0.9rem !important;
}

/* TOC list items: reset marker so emoji stays inline */
body.single .entry-content .ez-toc-container li::marker,
body.single .entry-content .wp-block-table-of-contents li::marker,
body.single .entry-content [class*="toc"] li::marker,
body.single .entry-content [id*="toc"] li::marker {
  color: inherit !important;
  font-weight: normal !important;
  font-size: inherit !important;
}

body.single .entry-content .ez-toc-container li,
body.single .entry-content .wp-block-table-of-contents li,
body.single .entry-content [class*="toc"] li {
  display: list-item !important;
  list-style: none !important;
  margin-bottom: 0.3rem !important;
  line-height: 1.6 !important;
  padding-left: 0 !important;
}

/* TOC links */
body.single .entry-content .ez-toc-container a,
body.single .entry-content .wp-block-table-of-contents a,
body.single .entry-content [class*="toc"] a {
  color: #c8922a !important;
  text-decoration: none !important;
  display: inline !important;
  word-break: break-word;
}
body.single .entry-content .ez-toc-container a:hover,
body.single .entry-content .wp-block-table-of-contents a:hover {
  text-decoration: underline !important;
}

/* Sub-lists */
body.single .entry-content .ez-toc-container ul ul,
body.single .entry-content .wp-block-table-of-contents ul ul {
  margin-left: 1.25rem !important;
  margin-top: 0.2rem !important;
}

/* ── GLOBAL emoji inline fix (the root cause of the reported bug) ────────
   WordPress wraps emoji in <img class="emoji"> OR leaves them as Unicode.
   Either way, inside <li> they must NEVER be treated as ::marker content.
   The safest fix: ensure li content doesn't participate in marker layout. */

/* For the manual TOC and any numbered list in post content:
   If an <ol> <li> starts with an emoji Unicode char, keep it inline.   */
body.single .entry-content ol li,
body.single .entry-content ul li {
  /* These two together prevent emoji-at-start-of-li wrapping bugs      */
  unicode-bidi: isolate;
  overflow-wrap: break-word;
}

/* WordPress .emoji img tags — keep inline in all contexts */
body.single .entry-content .emoji,
body.single .entry-content img.emoji {
  display: inline !important;
  vertical-align: -0.15em !important;
  width: 1em !important;
  height: 1em !important;
  margin: 0 0.05em !important;
  max-width: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}

/* ── Custom footer for post pages ───────────────────────────────────────── */
#goro-footer {
  background: #111;
  color: #fff;
  padding: 3rem 0 2rem;
  margin-top: 4rem;
  font-family: 'DM Sans', sans-serif;
}
.goro-footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}
.goro-footer-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
}
.goro-footer-logo img {
  width: 32px; height: 32px;
  border-radius: 50%; display: inline-block;
}
.goro-footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}
.goro-footer-nav a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.2s;
}
.goro-footer-nav a:hover { color: #fff; }
.goro-footer-copy {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.25);
}

/* ── Responsive ─────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .goro-nav-links { display: none; }
  .goro-hero-title { font-size: 1.7rem; }
  .goro-hero-overlay { padding: 1.5rem; }
  body.single .post-navigation { grid-template-columns: 1fr; }
  body.single .entry-content,
  body.single .entry-header,
  body.single #comments,
  body.single .post-navigation { padding-left: 1.25rem; padding-right: 1.25rem; }
}
