/* ============================================================
   TEMIZ EVIM — BLOG & GALERİ FRONTEND CSS
   Komple sıfırdan yazıldı: premium kartlar, lightbox,
   reading progress, paylaşım butonları, sidebar, responsive
   ============================================================ */

/* ── Blog Hero ─────────────────────────────────────────────── */
.blog-hero-section,
.gallery-hero-section {
  padding: 5rem 0 4rem;
  background: linear-gradient(180deg, rgba(197,168,128,0.06) 0%, transparent 100%);
  text-align: center;
}

.blog-hero-inner,
.gallery-hero-inner {
  max-width: 680px;
  margin: 0 auto;
}

.blog-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent-dark, #7a5c2e);
  margin-bottom: 1rem;
  padding: 0.3rem 0.9rem;
  border-radius: 999px;
  background: rgba(197,168,128,0.12);
  border: 1px solid rgba(197,168,128,0.25);
}

.blog-hero-title {
  font-family: var(--font-serif, 'Playfair Display', serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-heading, #1a1a1a);
  margin-bottom: 1rem;
}

.blog-hero-desc {
  font-size: 1.05rem;
  color: var(--color-text-soft, #666);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto;
}

/* ── Blog Listing ──────────────────────────────────────────── */
.blog-listing-section {
  padding: 3rem 0 5rem;
}

/* Featured Card */
.blog-featured-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
  margin-bottom: 3rem;
  padding: 2rem;
  border-radius: 28px;
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 20px 60px rgba(0,0,0,0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-featured-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 80px rgba(0,0,0,0.10);
}

.blog-featured-thumb {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.blog-featured-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.blog-featured-card:hover .blog-featured-thumb img {
  transform: scale(1.04);
}

.blog-featured-thumb-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.15) 0%, transparent 50%);
  border-radius: inherit;
}

.blog-featured-body {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.blog-post-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.blog-category-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.8rem;
  border-radius: 999px;
  background: rgba(197,168,128,0.15);
  border: 1px solid rgba(197,168,128,0.30);
  color: var(--color-accent-dark, #7a5c2e);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.blog-meta-item {
  font-size: 0.78rem;
  color: #999;
}

.blog-featured-title {
  font-family: var(--font-serif, 'Playfair Display', serif);
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-heading, #1a1a1a);
}

.blog-featured-title a {
  color: inherit;
  transition: color 0.25s;
}

.blog-featured-title a:hover {
  color: var(--color-accent-dark, #7a5c2e);
}

.blog-featured-desc {
  font-size: 0.95rem;
  color: #777;
  line-height: 1.65;
}

.blog-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.blog-tag {
  font-size: 0.72rem;
  color: #999;
  font-weight: 500;
  transition: color 0.2s;
}
.blog-tag:hover { color: var(--color-accent-dark, #7a5c2e); }

.blog-read-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.7rem 1.5rem;
  border-radius: 12px;
  background: var(--color-accent-dark, #7a5c2e);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  transition: all 0.25s ease;
  align-self: flex-start;
  margin-top: 0.25rem;
}

.blog-read-btn:hover {
  background: #5d4522;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(122,92,46,0.30);
}

/* Section Divider */
.blog-section-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  color: #aaa;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.blog-section-divider::before,
.blog-section-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(0,0,0,0.08);
}

/* Blog Grid */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.blog-card {
  display: flex;
  flex-direction: column;
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.06);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.10);
}

.blog-card-thumb {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
}

.blog-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.blog-card:hover .blog-card-thumb img { transform: scale(1.06); }

.blog-card-thumb-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.12) 0%, transparent 60%);
}

.blog-card-body {
  padding: 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.blog-card-title {
  font-family: var(--font-serif, 'Playfair Display', serif);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--color-heading, #1a1a1a);
}

.blog-card-title a {
  color: inherit;
  transition: color 0.25s;
}
.blog-card-title a:hover { color: var(--color-accent-dark, #7a5c2e); }

.blog-card-desc {
  font-size: 0.82rem;
  color: #888;
  line-height: 1.5;
  flex: 1;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.blog-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-top: auto;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(0,0,0,0.05);
}

.blog-meta-row {
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.blog-card-btn {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--color-accent-dark, #7a5c2e);
  letter-spacing: 0.04em;
  transition: gap 0.2s;
  white-space: nowrap;
}
.blog-card-btn:hover { text-decoration: underline; }

/* Empty State */
.blog-empty {
  text-align: center;
  padding: 5rem 2rem;
  border-radius: 24px;
  background: rgba(197,168,128,0.04);
  border: 1px dashed rgba(197,168,128,0.25);
}

.blog-empty-icon { font-size: 4rem; margin-bottom: 1rem; opacity: 0.4; }
.blog-empty h2 { font-size: 1.4rem; color: #555; margin-bottom: 0.5rem; }
.blog-empty p  { color: #999; font-size: 0.9rem; }

/* ── Reading Progress Bar ──────────────────────────────────── */
.reading-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, #c5a880, #7a5c2e);
  z-index: 9999;
  transition: width 0.1s linear;
  border-radius: 0 3px 3px 0;
}

/* ── Blog Detail ───────────────────────────────────────────── */
.post-hero-section {
  position: relative;
  min-height: 460px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 3rem;
  overflow: hidden;
}

.post-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.post-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.85) 0%, rgba(10,10,10,0.40) 60%, rgba(10,10,10,0.15) 100%);
}

.post-hero-section .container { position: relative; z-index: 1; }

.post-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.60);
  margin-bottom: 1.5rem;
}

.post-breadcrumb a {
  color: rgba(255,255,255,0.60);
  transition: color 0.2s;
}
.post-breadcrumb a:hover { color: #fff; }
.post-breadcrumb span { color: rgba(255,255,255,0.40); }

.post-hero-content {
  max-width: 760px;
}

.post-hero-title {
  font-family: var(--font-serif, 'Playfair Display', serif);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin: 0.75rem 0;
}

.post-hero-desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
  margin-bottom: 1rem;
  max-width: 600px;
}

.post-hero-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
}

/* Content Section */
.post-content-section {
  padding: 3.5rem 0 5rem;
  background: var(--color-bg, #f9f8f6);
}

.post-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 2.5rem;
  align-items: start;
}

/* Article */
.post-article {
  background: #ffffff;
  border-radius: 24px;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 16px 48px rgba(0,0,0,0.06);
  overflow: hidden;
  padding: 2.5rem;
}

/* Post Body Typography */
.post-body {
  font-size: 1.02rem;
  line-height: 1.85;
  color: var(--color-text, #444);
}

.post-body h1,
.post-body h2,
.post-body h3,
.post-body h4 {
  font-family: var(--font-serif, 'Playfair Display', serif);
  color: var(--color-heading, #1a1a1a);
  line-height: 1.3;
}

.post-body h2 {
  font-size: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid rgba(197,168,128,0.20);
}

.post-body h3 {
  font-size: 1.2rem;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--color-accent-dark, #7a5c2e);
}

.post-body p { margin-bottom: 1.15rem; }

.post-body ul,
.post-body ol {
  padding-left: 1.5rem;
  margin-bottom: 1.15rem;
}

.post-body li { margin-bottom: 0.5rem; }

.post-body a {
  color: var(--color-accent-dark, #7a5c2e);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.post-body a:hover { opacity: 0.75; }

.post-body img {
  max-width: 100%;
  border-radius: 12px;
  margin: 1rem 0;
}

.post-body blockquote {
  border-left: 4px solid rgba(197,168,128,0.50);
  padding: 0.75rem 1.25rem;
  margin: 1.25rem 0;
  background: rgba(197,168,128,0.05);
  border-radius: 0 12px 12px 0;
  font-style: italic;
  color: #666;
}

.post-body code {
  background: rgba(0,0,0,0.05);
  border-radius: 4px;
  padding: 0.1rem 0.4rem;
  font-size: 0.875em;
}

.post-body pre {
  background: #1a1a2e;
  color: #e2e8f0;
  border-radius: 12px;
  padding: 1.25rem;
  overflow-x: auto;
  margin: 1rem 0;
}

/* Tags */
.post-tags-section {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0,0,0,0.07);
}

.post-tags-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: #999;
  white-space: nowrap;
}

.post-tags-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.post-tag-chip {
  display: inline-flex;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  background: rgba(197,168,128,0.10);
  border: 1px solid rgba(197,168,128,0.20);
  color: var(--color-accent-dark, #7a5c2e);
  font-size: 0.76rem;
  font-weight: 600;
  transition: background 0.2s;
}
.post-tag-chip:hover { background: rgba(197,168,128,0.20); }

/* Share Buttons */
.post-share {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0,0,0,0.07);
}

.post-share-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #999;
  white-space: nowrap;
}

.post-share-btns {
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.5rem 1rem;
  border-radius: 10px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.25s ease;
  text-decoration: none;
}

.share-twitter  { background: #000; color: #fff; }
.share-twitter:hover { background: #1a1a1a; transform: translateY(-1px); }

.share-whatsapp { background: #25d366; color: #fff; }
.share-whatsapp:hover { background: #1ebe5e; transform: translateY(-1px); }

.share-copy {
  background: rgba(0,0,0,0.05);
  color: #555;
  border-color: rgba(0,0,0,0.08);
}
.share-copy:hover {
  background: rgba(0,0,0,0.09);
  transform: translateY(-1px);
}

/* ── Post Sidebar ──────────────────────────────────────────── */
.post-sidebar {
  position: sticky;
  top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.sidebar-card {
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 8px 30px rgba(0,0,0,0.05);
  padding: 1.5rem;
}

.sidebar-card-title {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent-dark, #7a5c2e);
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.sidebar-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.15rem;
}

.sidebar-author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(197,168,128,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.sidebar-author-info {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.sidebar-author-info strong {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-heading, #1a1a1a);
}

.sidebar-author-info span {
  font-size: 0.75rem;
  color: #999;
  line-height: 1.4;
}

.sidebar-meta-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.sidebar-meta-item {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: #777;
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.04);
}

.sidebar-meta-item:last-child { border-bottom: none; }

.sidebar-meta-item span:last-child {
  font-weight: 600;
  color: #555;
}

/* Related Posts */
.sidebar-related-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.sidebar-related-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem;
  border-radius: 10px;
  transition: background 0.2s;
  text-decoration: none;
}
.sidebar-related-item:hover { background: rgba(0,0,0,0.03); }

.sidebar-related-thumb {
  width: 52px;
  height: 52px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}

.sidebar-related-info {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}

.sidebar-related-title {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-heading, #1a1a1a);
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.sidebar-related-meta {
  font-size: 0.72rem;
  color: #aaa;
}

/* CTA Sidebar */
.sidebar-cta {
  background: linear-gradient(135deg, rgba(197,168,128,0.08), rgba(122,92,46,0.04));
  border-color: rgba(197,168,128,0.25);
  text-align: center;
}

.sidebar-cta-icon {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
}

.sidebar-cta h3 {
  font-family: var(--font-serif, 'Playfair Display', serif);
  font-size: 1rem;
  color: var(--color-heading, #1a1a1a);
  margin-bottom: 0.5rem;
  line-height: 1.35;
}

.sidebar-cta p {
  font-size: 0.8rem;
  color: #888;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.sidebar-cta-btn {
  display: inline-flex;
  padding: 0.65rem 1.25rem;
  border-radius: 10px;
  background: var(--color-accent-dark, #7a5c2e);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  transition: all 0.25s ease;
}
.sidebar-cta-btn:hover {
  background: #5d4522;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(122,92,46,0.25);
}

/* ── Gallery Frontend ──────────────────────────────────────── */
.gallery-grid-section {
  padding: 3rem 0 5rem;
}

.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.gallery-item {
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  background: #f0ede8;
}

.gallery-item-btn {
  display: block;
  width: 100%;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.gallery-item-img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.gallery-item-btn:hover .gallery-item-img {
  transform: scale(1.05);
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.70) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.35s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 1.25rem;
  gap: 0.5rem;
}

.gallery-item-btn:hover .gallery-item-overlay { opacity: 1; }

.gallery-zoom-icon {
  font-size: 1.8rem;
  transform: translateY(10px);
  transition: transform 0.35s ease;
}

.gallery-item-btn:hover .gallery-zoom-icon { transform: translateY(0); }

.gallery-item-title {
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  text-align: center;
  line-height: 1.3;
}

/* ── Lightbox ──────────────────────────────────────────────── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox[hidden] { display: none; }

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 5, 12, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.lightbox-container {
  position: relative;
  z-index: 1;
  width: min(90vw, 1000px);
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.lightbox-content {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  background: #0a0a14;
  box-shadow: 0 40px 120px rgba(0,0,0,0.6);
  animation: lbIn 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes lbIn {
  from { opacity: 0; transform: scale(0.9); }
  to   { opacity: 1; transform: scale(1); }
}

.lightbox-img {
  width: 100%;
  max-height: 75vh;
  object-fit: contain;
  display: block;
}

.lightbox-caption {
  padding: 0.85rem 1.25rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  text-align: center;
  background: rgba(255,255,255,0.03);
}

.lightbox-counter {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  font-weight: 600;
}

.lightbox-close {
  position: absolute;
  top: -0.5rem;
  right: -0.5rem;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  z-index: 2;
}
.lightbox-close:hover {
  background: rgba(255,255,255,0.22);
  transform: rotate(90deg) scale(1.1);
}

.lightbox-arrow {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  transition: background 0.2s, transform 0.2s;
}
.lightbox-arrow:hover {
  background: rgba(255,255,255,0.20);
}
.lightbox-prev { left: 1rem; }
.lightbox-next { right: 1rem; }
.lightbox-prev:hover { transform: translateY(-50%) translateX(-3px); }
.lightbox-next:hover { transform: translateY(-50%) translateX(3px); }

/* ── Animations ────────────────────────────────────────────── */
.reveal,
.reveal-zoom {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal-zoom {
  transform: translateY(20px) scale(0.97);
}

.reveal.visible,
.reveal-zoom.visible {
  opacity: 1;
  transform: none;
}

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .post-layout { grid-template-columns: 1fr 280px; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-masonry { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .blog-featured-card { grid-template-columns: 1fr; gap: 1.5rem; }
  .blog-featured-thumb { aspect-ratio: 16/9; }
  .post-layout { grid-template-columns: 1fr; }
  .post-sidebar { position: static; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .blog-grid { grid-template-columns: 1fr; }
  .gallery-masonry { grid-template-columns: 1fr; }
  .post-article { padding: 1.5rem; }
  .post-hero-section { min-height: 360px; }
  .lightbox-arrow { display: none; }
}
