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

/* ── Hero ── */
.fg-blog__hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse at center, rgba(255,255,255,0.85) 0%, rgba(240,232,208,0) 60%),
    linear-gradient(135deg, #e8dcc0 0%, #f5eeda 45%, #e6d9b8 100%);
  padding: clamp(56px, 9vw, 130px) 24px clamp(64px, 10vw, 140px);
  text-align: center;
}
.fg-blog__hero-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 0% 0%, transparent 48%, rgba(180,150,90,0.18) 49%, rgba(180,150,90,0.18) 50%, transparent 51%),
    radial-gradient(circle at 100% 100%, transparent 48%, rgba(180,150,90,0.18) 49%, rgba(180,150,90,0.18) 50%, transparent 51%);
  background-size: 180px 180px;
  pointer-events: none;
  opacity: 0.9;
}
.fg-blog__hero-inner { position: relative; z-index: 2; }
.fg-blog__eyebrow {
  display: block;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(16px, 1.6vw, 26px);
  font-weight: 500;
  color: rgba(9, 18, 29, 0.4);
  margin-bottom: clamp(4px, 0.8vw, 10px);
}
.fg-blog__hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(48px, 7vw, 110px);
  font-weight: 700;
  color: #09121d;
  letter-spacing: -0.02em;
  line-height: 1;
  margin: 0;
}

/* ── Body / grid ── */
.fg-blog__body {
  background: #e1e2e6;
  padding: clamp(48px, 6vw, 100px) clamp(20px, 4vw, 60px) clamp(56px, 7vw, 110px);
}
.fg-blog__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.4vw, 40px);
  max-width: 1240px;
  margin: 0 auto;
}
@media (max-width: 1024px) { .fg-blog__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .fg-blog__grid { grid-template-columns: 1fr; } }

.fg-blog__empty {
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: rgba(9, 18, 29, 0.55);
  padding: 40px 0;
}

.fg-blog__card {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.fg-blog__card.is-visible { opacity: 1; transform: translateY(0); }

.fg-blog__card-inner {
  background: #f0f1f4;
  border-radius: 25px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}
.fg-blog__card:hover .fg-blog__card-inner {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px -12px rgba(9, 18, 29, 0.28);
}

.fg-blog__img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  flex-shrink: 0;
  display: block;
  background: #d8dade;
}
.fg-blog__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.fg-blog__card:hover .fg-blog__img { transform: scale(1.06); }

@media (hover: none) {
  .fg-blog__card:hover .fg-blog__card-inner { transform: none; box-shadow: none; }
  .fg-blog__card:hover .fg-blog__img { transform: none; }
}

.fg-blog__card-body {
  padding: clamp(20px, 2vw, 32px) clamp(20px, 2.2vw, 36px) clamp(24px, 2.4vw, 38px);
  display: flex;
  flex-direction: column;
  flex: 1;
}
.fg-blog__cat {
  display: inline-block;
  font-family: 'Comfortaa', cursive;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #d3b574;
  margin: 0 0 10px;
}
.fg-blog__card-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(18px, 1.5vw, 26px);
  font-weight: 500;
  color: rgba(9, 18, 29, 0.9);
  letter-spacing: -0.03em;
  line-height: 1.3;
  margin: 0 0 10px;
}
.fg-blog__card-title a { color: inherit; text-decoration: none; transition: color 0.25s ease; }
.fg-blog__card:hover .fg-blog__card-title a { color: #09121d; }

.fg-blog__excerpt {
  font-family: 'Inter', sans-serif;
  font-size: clamp(13px, 0.95vw, 15px);
  color: rgba(9, 18, 29, 0.65);
  line-height: 1.6;
  margin: 0 0 20px;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.fg-blog__more {
  margin-top: auto;
  font-family: 'Comfortaa', cursive;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #09121d;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  align-self: flex-start;
  border-bottom: 1px solid rgba(9, 18, 29, 0.25);
  padding-bottom: 3px;
  transition: color 0.25s ease, border-color 0.25s ease, gap 0.25s ease;
}
.fg-blog__more:hover { color: #d3b574; border-color: #d3b574; gap: 10px; }

.fg-blog__pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: clamp(40px, 4vw, 64px) auto 0;
  font-family: 'Comfortaa', cursive;
  font-size: 13px;
}
.fg-blog__pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border-radius: 8px;
  background: #f0f1f4;
  color: #09121d;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.fg-blog__pagination .page-numbers.current { background: #09121d; color: #fff; }
.fg-blog__pagination a.page-numbers:hover { background: #d3b574; color: #fff; }

/* ── Single post ── */
.fg-post { background: #e1e2e6; padding: clamp(40px, 5vw, 90px) clamp(20px, 4vw, 60px) clamp(56px, 7vw, 110px); }
.fg-post__inner { max-width: 760px; margin: 0 auto; }
.fg-post__cat {
  font-family: 'Comfortaa', cursive; font-size: 11px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; color: #d3b574; display: block; margin-bottom: 12px;
}
.fg-post__title {
  font-family: 'Playfair Display', serif; font-size: clamp(30px, 3.6vw, 52px);
  font-weight: 600; color: #09121d; letter-spacing: -0.02em; line-height: 1.15; margin: 0 0 14px;
}
.fg-post__meta { font-family: 'Inter', sans-serif; font-size: 14px; color: rgba(9,18,29,0.55); margin-bottom: 28px; }
.fg-post__featured { width: 100%; border-radius: 25px; overflow: hidden; margin-bottom: 36px; }
.fg-post__featured img { width: 100%; height: auto; display: block; }
.fg-post__content { font-family: 'Inter', sans-serif; font-size: 17px; line-height: 1.75; color: rgba(9,18,29,0.85); }
.fg-post__content h2, .fg-post__content h3 { font-family: 'Playfair Display', serif; color: #09121d; letter-spacing: -0.02em; }
.fg-post__content a { color: #d3b574; }
.fg-post__content img { max-width: 100%; height: auto; border-radius: 16px; }
.fg-post__back {
  display: inline-block; margin-top: 40px;
  font-family: 'Comfortaa', cursive; font-size: 12px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase; color: #09121d;
  text-decoration: none; border-bottom: 1px solid rgba(9,18,29,0.25); padding-bottom: 3px;
}
.fg-post__back:hover { color: #d3b574; border-color: #d3b574; }

@media (prefers-reduced-motion: reduce) {
  .fg-blog__card { opacity: 1 !important; transform: none !important; transition: none !important; }
}