.blog-page {
  max-width: 1120px;
}

.blog-hero {
  margin-bottom: 20px;
  border: 1px solid rgba(118, 76, 34, 0.26);
  border-radius: 18px;
  padding: clamp(24px, 4vw, 44px);
  color: #28190f;
  background:
    radial-gradient(circle at 12% 20%, rgba(255, 233, 177, 0.45), transparent 44%),
    radial-gradient(circle at 80% 80%, rgba(201, 121, 51, 0.22), transparent 38%),
    linear-gradient(115deg, #fff7e9, #f8e9ce);
}

.blog-eyebrow {
  margin: 0;
  font-size: 0.83rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  color: #7a4420;
}

.blog-hero h1 {
  margin: 8px 0 10px;
  font-family: "Cinzel Decorative", "Cormorant Garamond", serif;
  font-size: clamp(1.8rem, 4vw, 3.1rem);
}

.blog-hero p {
  margin: 0;
  max-width: 760px;
  line-height: 1.7;
  color: #513222;
}

.blog-feed {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.feed-card {
  background: #ffffff;
  border: 1px solid rgba(120, 84, 54, 0.2);
  border-radius: 16px;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(240px, 0.72fr) 1fr;
  min-height: 260px;
  box-shadow: 0 18px 30px rgba(82, 49, 25, 0.12);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  text-decoration: none;
  color: inherit;
}

.feed-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 36px rgba(82, 49, 25, 0.18);
}

.feed-media {
  position: relative;
  overflow: hidden;
  background: #f3e6d2;
}

.feed-image {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.feed-card:hover .feed-image {
  transform: scale(1.04);
}

.feed-copy {
  padding: clamp(14px, 2vw, 22px);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.feed-headline-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.feed-kicker {
  margin: 0;
  font-size: 0.72rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: #8f552d;
  font-weight: 700;
}

.feed-copy h2 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.22rem, 2vw, 1.9rem);
  line-height: 1.2;
  color: #1b120b;
}

.feed-copy p {
  margin: 0;
  color: #322014;
  line-height: 1.5;
  font-size: clamp(0.84rem, 0.8vw, 0.93rem);
}

.blog-post-page {
  max-width: 1360px;
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(280px, 0.7fr);
  gap: 20px;
}

.post-article {
  border: 1px solid #e0d0b7;
  border-radius: 18px;
  background: #fffdf8;
  box-shadow: 0 14px 30px rgba(90, 55, 23, 0.11);
  overflow: hidden;
}

.post-cover {
  width: 100%;
  height: clamp(240px, 44vw, 460px);
  object-fit: cover;
}

.post-content {
  padding: clamp(20px, 3vw, 42px);
}

.post-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  font-size: 0.9rem;
  font-weight: 700;
  color: #6f300f;
}

.post-kicker {
  margin: 0;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8f552d;
  font-weight: 700;
}

.post-title {
  margin: 8px 0 12px;
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: 1.1;
  font-size: clamp(2rem, 4.4vw, 3.45rem);
  color: #1d120a;
}

.post-meta {
  margin: 0 0 18px;
  color: #7f654f;
  font-size: 0.88rem;
}

.post-body {
  display: grid;
  gap: 16px;
}

.post-body p {
  margin: 0;
  font-family: "Lora", Georgia, serif;
  color: #2f1e13;
  line-height: 1.9;
  font-size: clamp(1rem, 1.2vw, 1.11rem);
}

.post-side {
  display: grid;
  align-content: start;
}

.side-card {
  border: 1px solid rgba(111, 56, 23, 0.2);
  border-radius: 16px;
  background: rgba(255, 250, 240, 0.93);
  padding: 16px;
}

.side-card h3 {
  margin: 0 0 12px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.7rem;
}

.related-posts {
  display: grid;
  gap: 10px;
}

.related-link {
  display: block;
  padding: 11px 12px;
  border-radius: 10px;
  border: 1px solid rgba(111, 56, 23, 0.16);
  background: #fff;
}

.related-link strong {
  display: block;
  color: #30190f;
  font-size: 0.96rem;
  line-height: 1.45;
}

.related-link span {
  color: #7d6755;
  font-size: 0.81rem;
}

.post-not-found {
  padding: 24px;
}

.post-not-found h2 {
  margin: 0 0 10px;
}

@media (max-width: 1024px) {
  .feed-card {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .feed-image {
    min-height: 220px;
    max-height: 280px;
  }

  .blog-post-page {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .blog-page {
    padding: 0 12px;
  }

  
}
