@import url('https://fonts.googleapis.com/css2?family=Alex+Brush&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Poppins:wght@300;400;500;600&display=swap');

/* ── TOKENS ── */
:root {
  --crema:    #FBF6F2;
  --nude:     #E8D9CD;
  --rosa:     #D4BEB0;
  --cobre:    #C4855A;
  --cobre-dk: #a96b43;
  --espresso: #2E1A10;
  --topo:     #8C6A58;
  --salvia:   #A6B0A0;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Poppins', sans-serif;
  background: var(--crema);
  color: var(--espresso);
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ── HEADER ── */
.site-header {
  background: var(--crema);
  border-bottom: 1px solid var(--nude);
  padding: 0 40px;
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.site-header-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.site-logo {
  font-family: 'Alex Brush', cursive;
  font-size: 32px;
  color: var(--espresso);
  letter-spacing: 0.02em;
  line-height: 1;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.site-nav a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--topo);
  transition: color 0.2s;
}
.site-nav a:hover { color: var(--cobre); }
.nav-subscribe {
  background: var(--cobre);
  color: #fff !important;
  padding: 8px 20px;
  border-radius: 100px;
  transition: background 0.2s !important;
}
.nav-subscribe:hover { background: var(--cobre-dk) !important; }
.nav-guia {
  border: 1.5px solid var(--cobre);
  color: var(--cobre) !important;
  padding: 7px 18px;
  border-radius: 100px;
  transition: all 0.2s !important;
}
.nav-guia:hover { background: var(--cobre); color: #fff !important; }

/* ── HERO (homepage) ── */
.site-hero {
  background: linear-gradient(160deg, var(--nude) 0%, var(--crema) 60%);
  padding: 80px 40px 72px;
  text-align: center;
  border-bottom: 1px solid var(--rosa);
}
.hero-eyebrow {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--cobre);
  font-weight: 500;
  margin-bottom: 16px;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700;
  color: var(--espresso);
  line-height: 1.25;
  margin-bottom: 16px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.hero-desc {
  font-size: 15px;
  color: var(--topo);
  max-width: 420px;
  margin: 0 auto 28px;
  line-height: 1.8;
  font-style: italic;
}
.hero-divider {
  width: 36px;
  height: 2px;
  background: var(--cobre);
  border-radius: 2px;
  margin: 0 auto;
}

/* ── POSTS GRID ── */
.posts-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 64px 40px;
}
.posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 900px) { .posts-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px) { .posts-grid { grid-template-columns: 1fr; } }

/* ── POST CARD ── */
.post-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--nude);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  display: flex;
  flex-direction: column;
}
.post-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(46,26,16,0.10);
}
.post-card-image {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--nude);
  position: relative;
}
.post-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.post-card:hover .post-card-image img { transform: scale(1.04); }
.post-card-no-image {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--nude) 0%, var(--rosa) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Alex Brush', cursive;
  font-size: 32px;
  color: var(--topo);
}
.post-card-body {
  padding: 22px 24px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.post-card-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.post-card-tag {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cobre);
  font-weight: 500;
}
.post-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--espresso);
  line-height: 1.35;
  margin-bottom: 10px;
}
.post-card-excerpt {
  font-size: 13px;
  color: var(--topo);
  line-height: 1.7;
  margin-bottom: 18px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.post-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--nude);
}
.post-card-date {
  font-size: 11px;
  color: var(--rosa);
  letter-spacing: 0.08em;
}
.post-card-read {
  font-size: 11px;
  color: var(--cobre);
  font-weight: 500;
  letter-spacing: 0.06em;
}

/* ── FEATURED POST (first) ── */
.post-card.featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 700px) { .post-card.featured { grid-template-columns: 1fr; } }
.post-card.featured .post-card-image {
  aspect-ratio: auto;
  min-height: 280px;
}
.post-card.featured .post-card-title { font-size: 26px; }
.post-card.featured .post-card-body { padding: 36px 36px; justify-content: center; }
.post-card.featured .post-card-excerpt { -webkit-line-clamp: 4; }

/* ── PAGINATION ── */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 0 40px 64px;
  font-size: 13px;
  color: var(--topo);
}
.pagination a {
  color: var(--cobre);
  font-weight: 500;
  padding: 8px 20px;
  border: 1px solid var(--cobre);
  border-radius: 100px;
  transition: background 0.2s, color 0.2s;
}
.pagination a:hover { background: var(--cobre); color: #fff; }

/* ── SINGLE POST ── */
.post-hero {
  background: linear-gradient(160deg, var(--nude) 0%, var(--crema) 60%);
  padding: 64px 40px 56px;
  text-align: center;
  border-bottom: 1px solid var(--rosa);
}
.post-tags-hero {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.post-tag-hero {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cobre);
  font-weight: 500;
}
.post-tag-hero::after { content: '·'; margin-left: 8px; color: var(--rosa); }
.post-tag-hero:last-child::after { display: none; }
.post-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 5vw, 46px);
  font-weight: 700;
  color: var(--espresso);
  line-height: 1.2;
  max-width: 720px;
  margin: 0 auto 20px;
}
.post-meta-hero {
  font-size: 12px;
  color: var(--topo);
  letter-spacing: 0.1em;
}
.post-featured-image {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 40px;
  transform: translateY(-32px);
  margin-bottom: -32px;
}
.post-featured-image img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 16px 60px rgba(46,26,16,0.14);
}

/* ── POST CONTENT ── */
.post-content-wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: 48px 40px 80px;
}
.post-content {
  font-size: 16px;
  line-height: 1.85;
  color: var(--espresso);
  font-weight: 300;
}
.post-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 600;
  color: var(--espresso);
  margin: 48px 0 16px;
  line-height: 1.3;
}
.post-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--topo);
  margin: 32px 0 12px;
}
.post-content p { margin-bottom: 22px; }
.post-content strong { font-weight: 600; color: var(--espresso); }
.post-content em { font-style: italic; }
.post-content a { color: var(--cobre); border-bottom: 1px solid var(--rosa); transition: border-color 0.2s; }
.post-content a:hover { border-color: var(--cobre); }
.post-content blockquote {
  border-left: 3px solid var(--cobre);
  padding: 16px 24px;
  margin: 28px 0;
  background: var(--nude);
  border-radius: 0 12px 12px 0;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 17px;
  color: var(--espresso);
  line-height: 1.7;
}
.post-content ul, .post-content ol {
  margin: 0 0 22px 20px;
}
.post-content li { margin-bottom: 8px; }
.post-content hr {
  border: none;
  border-top: 1px solid var(--nude);
  margin: 40px 0;
}
.post-content figure { margin: 32px 0; }
.post-content figure img { border-radius: 12px; width: 100%; }
.post-content figcaption {
  text-align: center;
  font-size: 12px;
  color: var(--topo);
  margin-top: 8px;
}

/* ── AUTHOR BOX ── */
.author-box {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: var(--nude);
  border-radius: 16px;
  padding: 28px;
  margin: 48px 0 0;
  border: 1px solid var(--rosa);
}
.author-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--rosa);
}
.author-avatar-placeholder {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--rosa);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Alex Brush', cursive;
  font-size: 24px;
  color: var(--topo);
  flex-shrink: 0;
}
.author-name {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--espresso);
  margin-bottom: 4px;
}
.author-role {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cobre);
  font-weight: 500;
  margin-bottom: 8px;
}
.author-bio {
  font-size: 13px;
  color: var(--topo);
  line-height: 1.7;
}

/* ── FOOTER ── */
.site-footer {
  background: var(--crema);
  border-top: 1px solid var(--nude);
  padding: 48px 40px;
  text-align: center;
}
.footer-logo {
  font-family: 'Alex Brush', cursive;
  font-size: 36px;
  color: var(--espresso);
  margin-bottom: 8px;
}
.footer-tagline {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--espresso);
  margin-bottom: 24px;
}
.footer-divider {
  width: 36px;
  height: 1px;
  background: var(--rosa);
  margin: 0 auto 24px;
}
.footer-links {
  display: flex;
  gap: 28px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.footer-links a {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--espresso);
  font-weight: 500;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--cobre); }
.footer-copy {
  font-size: 11px;
  color: var(--topo);
  letter-spacing: 0.06em;
}

/* ── SUBSCRIBE SECTION ── */
.subscribe-section {
  background: var(--nude);
  border-top: 1px solid var(--rosa);
  padding: 72px 40px 64px;
  text-align: center;
}
.subscribe-eyebrow {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cobre);
  font-weight: 500;
  margin-bottom: 14px;
}
.subscribe-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 4vw, 34px);
  font-weight: 700;
  color: var(--espresso);
  margin-bottom: 14px;
  line-height: 1.25;
}
.subscribe-desc {
  font-size: 15px;
  color: var(--topo);
  max-width: 440px;
  margin: 0 auto 32px;
  line-height: 1.75;
}
.subscribe-trust {
  font-size: 11px;
  color: var(--topo);
  margin-top: 14px;
  letter-spacing: 0.04em;
}
.subscribe-success {
  font-size: 15px;
  color: var(--cobre);
  font-weight: 500;
  margin-top: 20px;
  padding: 16px;
  background: rgba(196,133,90,0.08);
  border-radius: 12px;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}
.subscribe-form {
  display: flex;
  gap: 10px;
  max-width: 420px;
  margin: 0 auto;
}
.subscribe-input {
  flex: 1;
  padding: 12px 18px;
  border-radius: 100px;
  border: 1px solid var(--rosa);
  background: #fff;
  color: var(--espresso);
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  outline: none;
}
.subscribe-input::placeholder { color: var(--rosa); }
.subscribe-input:focus { border-color: var(--cobre); }
.subscribe-btn {
  padding: 12px 24px;
  background: var(--cobre);
  color: #fff;
  border: none;
  border-radius: 100px;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
}
.subscribe-btn:hover { background: var(--cobre-dk); }
@media (max-width: 480px) {
  .subscribe-form { flex-direction: column; }
  .subscribe-btn { border-radius: 100px; }
}

/* ── UTILITIES ── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 40px; }
@media (max-width: 640px) {
  .site-header { padding: 0 20px; }
  .site-nav { display: none; }
  .site-hero, .post-hero { padding: 48px 20px; }
  .posts-section { padding: 40px 20px; }
  .post-content-wrap { padding: 32px 20px 60px; }
  .post-featured-image { padding: 0 20px; }
  .site-footer { padding: 40px 20px; }
  .subscribe-section { padding: 48px 20px; }
}

/* ── TAG FILTER PILLS ── */
.tag-filter-bar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 36px;
}
.tag-pill {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 8px 18px;
  border-radius: 100px;
  border: 1.5px solid var(--rosa);
  color: var(--topo);
  background: transparent;
  transition: all 0.2s;
  white-space: nowrap;
}
.tag-pill:hover,
.tag-pill-active {
  background: var(--cobre);
  border-color: var(--cobre);
  color: #fff;
}

/* ── TAG PAGE ── */
.tag-hero {
  padding: 56px 40px 48px;
  text-align: center;
  border-bottom: 1px solid var(--nude);
}
.tag-name {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 600;
  color: var(--espresso);
  margin-bottom: 8px;
}
.tag-desc { font-size: 14px; color: var(--topo); }
.tag-count {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cobre);
  font-weight: 500;
  margin-bottom: 14px;
}

/* ── KOENIG EDITOR (requerido por Ghost) ── */
.kg-width-wide {
  margin-left: -80px;
  margin-right: -80px;
}
.kg-width-full {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
@media (max-width: 900px) {
  .kg-width-wide { margin-left: -40px; margin-right: -40px; }
}
@media (max-width: 640px) {
  .kg-width-wide { margin-left: -20px; margin-right: -20px; }
}
.kg-image { max-width: 100%; border-radius: 8px; }
.kg-image-card { margin: 32px 0; }
.kg-image-card figcaption { text-align: center; font-size: 12px; color: var(--topo); margin-top: 8px; }
.kg-gallery-card { margin: 32px 0; }
.kg-gallery-container { display: flex; flex-direction: column; gap: 4px; }
.kg-gallery-row { display: flex; gap: 4px; }
.kg-gallery-image { flex: 1; overflow: hidden; }
.kg-gallery-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.kg-embed-card { margin: 32px 0; }
.kg-embed-card iframe { width: 100%; border-radius: 8px; }
.kg-bookmark-card { margin: 32px 0; border: 1px solid var(--nude); border-radius: 12px; overflow: hidden; }
.kg-bookmark-container { display: flex; text-decoration: none; color: var(--espresso); }
.kg-bookmark-content { padding: 16px 20px; flex: 1; }
.kg-bookmark-title { font-weight: 600; font-size: 14px; margin-bottom: 4px; }
.kg-bookmark-description { font-size: 13px; color: var(--topo); line-height: 1.5; }
.kg-bookmark-thumbnail { width: 140px; flex-shrink: 0; }
.kg-bookmark-thumbnail img { width: 100%; height: 100%; object-fit: cover; }
.kg-callout-card { margin: 24px 0; padding: 16px 20px; background: var(--nude); border-radius: 12px; display: flex; gap: 12px; border-left: 3px solid var(--cobre); }
.kg-callout-emoji { font-size: 20px; flex-shrink: 0; }
.kg-callout-text { font-size: 14px; color: var(--espresso); line-height: 1.7; }
.kg-toggle-card { margin: 24px 0; border: 1px solid var(--nude); border-radius: 12px; overflow: hidden; }
.kg-toggle-heading { padding: 16px 20px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-weight: 500; }
.kg-toggle-content { padding: 0 20px 16px; font-size: 14px; color: var(--topo); line-height: 1.7; }
.kg-video-card { margin: 32px 0; }
.kg-video-card video { width: 100%; border-radius: 12px; }

/* ── READING PROGRESS BAR ── */
.reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: var(--cobre);
  z-index: 200;
  border-radius: 0 2px 2px 0;
  transition: width 0.08s linear;
  pointer-events: none;
}

/* ── MINI BIO ── */
.mini-bio-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 32px 40px 0;
}
.mini-bio-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--nude);
  border-radius: 16px;
  padding: 22px 28px;
  border: 1px solid var(--rosa);
}
.mini-bio-avatar {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
  border: 2px solid var(--rosa);
  flex-shrink: 0;
}
.mini-bio-name {
  font-size: 14px;
  color: var(--espresso);
  margin-bottom: 4px;
  line-height: 1.4;
}
.mini-bio-desc {
  font-size: 13px;
  color: var(--topo);
  line-height: 1.6;
  margin-bottom: 10px;
}
.mini-bio-link {
  font-size: 12px;
  color: var(--cobre);
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: opacity 0.2s;
}
.mini-bio-link:hover { opacity: 0.75; }
@media (max-width: 640px) {
  .mini-bio-wrap { padding: 24px 20px 0; }
  .mini-bio-inner { gap: 14px; padding: 18px 20px; }
  .mini-bio-avatar { width: 52px; height: 52px; }
}

/* ── EDITORIAL FEATURED POST ── */
.post-editorial-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--nude);
  margin-bottom: 40px;
  min-height: 340px;
  text-decoration: none;
  background: #fff;
  transition: box-shadow 0.25s ease;
}
.post-editorial-hero:hover {
  box-shadow: 0 16px 48px rgba(46,26,16,0.12);
}
.post-editorial-image {
  overflow: hidden;
  position: relative;
}
.post-editorial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.post-editorial-hero:hover .post-editorial-image img { transform: scale(1.04); }
.post-editorial-placeholder {
  width: 100%;
  height: 100%;
  min-height: 340px;
  background: linear-gradient(135deg, var(--nude), var(--rosa));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Alex Brush', cursive;
  font-size: 36px;
  color: var(--topo);
}
.post-editorial-overlay {
  padding: 36px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.post-editorial-label {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--salvia);
  font-weight: 500;
  margin-bottom: 8px;
  display: block;
}
.post-editorial-tag {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cobre);
  font-weight: 500;
  margin-bottom: 12px;
  display: block;
}
.post-editorial-title {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--espresso);
  line-height: 1.25;
  margin-bottom: 14px;
}
.post-editorial-excerpt {
  font-size: 14px;
  color: var(--topo);
  line-height: 1.7;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}
.post-editorial-meta {
  font-size: 11px;
  color: var(--rosa);
  letter-spacing: 0.08em;
  padding-top: 16px;
  border-top: 1px solid var(--nude);
}
@media (max-width: 700px) {
  .post-editorial-hero { grid-template-columns: 1fr; min-height: auto; }
  .post-editorial-image { min-height: 200px; }
  .post-editorial-overlay { padding: 24px 24px 28px; }
  .post-editorial-title { font-size: 22px; }
}

/* ── ERROR ── */
.error-page {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px;
}
.error-code {
  font-family: 'Playfair Display', serif;
  font-size: 80px;
  font-weight: 700;
  color: var(--nude);
  line-height: 1;
  margin-bottom: 16px;
}
.error-msg { font-size: 18px; color: var(--topo); margin-bottom: 28px; }
.btn-back {
  display: inline-block;
  padding: 12px 28px;
  background: var(--cobre);
  color: #fff;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  transition: background 0.2s;
}
.btn-back:hover { background: var(--cobre-dk); }

/* ── ABOUT PAGE ── */
.about-layout {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 72px;
  max-width: 1100px;
  margin: 64px auto 100px;
  padding: 0 48px;
  align-items: start;
}
.about-image-col {
  position: sticky;
  top: 96px;
}
.about-photo {
  margin: 0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(46,26,16,0.12);
}
.about-photo img {
  width: 100%;
  height: auto;
  display: block;
}
.about-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 700;
  color: var(--espresso);
  line-height: 1.2;
  margin: 0 0 32px;
}
.about-content-col .post-content {
  font-size: 16px;
  line-height: 1.85;
  color: var(--espresso);
  font-weight: 300;
}
@media (max-width: 860px) {
  .about-layout {
    grid-template-columns: 1fr;
    gap: 36px;
    margin: 40px auto 80px;
    padding: 0 24px;
  }
  .about-image-col {
    position: static;
  }
  .about-photo img {
    max-height: 420px;
    object-fit: cover;
    object-position: top center;
    width: 100%;
  }
}
