/* Blog Page */
.jt-blog-hero {
  position: relative;
  min-height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--brand-black);
  overflow: hidden;
}
.jt-blog-hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 40%, rgba(201,169,110,.06) 0%, transparent 60%);
}
.jt-blog-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 600px;
  padding: 0 2rem;
}
.jt-blog-hero .jt-eyebrow {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: .6rem;
  font-weight: 600;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--brand-gold);
  margin-bottom: 1rem;
}
.jt-blog-hero h1 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
  color: #fff;
  letter-spacing: .06em;
  margin-bottom: .8rem;
}
.jt-blog-hero p {
  font-size: .85rem;
  color: rgba(255,255,255,.5);
  line-height: 1.7;
}

.jt-blog-posts {
  padding: 80px 0;
  background: var(--brand-cream, #faf8f5);
}

/* Blog Card */
.jt-blog-card {
  background: #fff;
  height: 100%;
  display: flex;
  flex-direction: column;
  border-bottom: 2px solid var(--brand-gold);
  transition: transform .3s, box-shadow .3s;
}
.jt-blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,.08);
}
.jt-blog-thumb {
  display: block;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: #f0ece6;
}
.jt-blog-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s;
}
.jt-blog-card:hover .jt-blog-thumb img {
  transform: scale(1.05);
}
.jt-blog-no-thumb {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #f0ece6, #e8e0d6);
}
.jt-blog-card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.jt-blog-cats {
  display: flex;
  gap: .5rem;
  margin-bottom: .8rem;
}
.jt-blog-cats a {
  font-family: 'Inter', sans-serif;
  font-size: .6rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--brand-gold);
  text-decoration: none;
  border: 1px solid var(--brand-gold);
  padding: 2px 8px;
  transition: all .3s;
}
.jt-blog-cats a:hover {
  background: var(--brand-gold);
  color: var(--brand-black);
}
.jt-blog-card-body h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: .6rem;
  letter-spacing: .02em;
}
.jt-blog-card-body h3 a {
  color: var(--text-primary);
  text-decoration: none;
  transition: color .3s;
}
.jt-blog-card-body h3 a:hover { color: var(--brand-gold); }
.jt-blog-card-body > p {
  font-size: .85rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1rem;
  flex: 1;
}
.jt-blog-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: .8rem;
  border-top: 1px solid #eee;
}
.jt-blog-meta time {
  font-size: .7rem;
  color: var(--text-muted);
  letter-spacing: .05em;
}
.jt-read-more {
  font-family: 'Inter', sans-serif;
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--brand-gold);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap .3s;
}
.jt-read-more:hover { gap: 8px; }

/* Pagination */
.jt-blog-pagination {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-top: 3rem;
}
.jt-blog-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  font-family: 'Inter', sans-serif;
  font-size: .8rem;
  color: var(--text-muted);
  text-decoration: none;
  border: 1px solid #ddd;
  transition: all .3s;
}
.jt-blog-pagination .page-numbers:hover,
.jt-blog-pagination .page-numbers.current {
  background: var(--brand-gold);
  color: var(--brand-black);
  border-color: var(--brand-gold);
}
.jt-blog-pagination .prev,
.jt-blog-pagination .next {
  width: auto;
  padding: 0 14px;
}

.jt-blog-empty {
  text-align: center;
  padding: 4rem 0;
}
.jt-blog-empty h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.8rem;
  color: var(--text-primary);
  margin-bottom: .5rem;
}
.jt-blog-empty p { color: var(--text-muted); }

@media (max-width: 768px) {
  .jt-blog-posts { padding: 50px 0; }
}
