.blog-page {
  padding: 80px 6%;
  background: #f8f6f2;
}

.blog-page h1 {
  text-align: center;
  font-size: 36px;
  color: #3c2a1e;
}

.blog-page-sub {
  text-align: center;
  margin: 10px 0 50px;
  color: #7a6a5a;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px,1fr));
  gap: 30px;
}

.blog-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0,0,0,.08);
  transition: .35s;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(0,0,0,.15);
}

.blog-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.blog-content {
  padding: 22px;
}

.blog-tag {
  display: inline-block;
  background: #a08467;
  color: #fff;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
}

.blog-content h3 {
  font-size: 18px;
  color: #3c2a1e;
  margin-bottom: 10px;
}

.blog-content p {
  font-size: 14px;
  color: #6d5e4f;
  line-height: 1.5;
}
/* BLOG GRID */
.blog-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

/* BLOG CARD */
.blog-card{
  background: #fff;
  border-radius: 18px;
  overflow: hidden; /* 🔴 EN ÖNEMLİ SATIR */
  box-shadow: 0 12px 30px rgba(0,0,0,.08);
  transition: .35s;
  display: flex;
  flex-direction: column;
}

.blog-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(0,0,0,.15);
}

/* BLOG IMAGE */
.blog-card img{
  width: 100%;
  height: 220px;              /* 🔴 SABİT YÜKSEKLİK */
  object-fit: cover;          /* 🔴 TAŞIRARAK DOLDUR */
  display: block;
}

/* BLOG CONTENT */
.blog-content{
  padding: 22px;
}

.blog-content h3{
  font-size: 18px;
  line-height: 1.4;
  color: #3c2a1e;
}
/* ✅ FIX: Blog kart resimleri tam otursun */
.blog-grid .blog-card{
  display: block;              /* <a> kesin block */
  width: 100%;
}

.blog-grid .blog-card img{
  display: block;
  width: 100%;
  height: 240px !important;    /* global height:auto ezilsin */
  object-fit: cover !important;
  object-position: center;
}

/* Kart içi düzen premium */
.blog-grid .blog-card{
  background:#fff;
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 12px 30px rgba(0,0,0,.08);
  transition:.35s;
}

.blog-grid .blog-card:hover{
  transform:translateY(-6px);
  box-shadow:0 20px 45px rgba(0,0,0,.15);
}
/* ===============================
   BLOG PREVIEW – MOBİL PREMIUM
================================ */
@media (max-width: 768px) {

  .blog-preview {
    padding: 22px 14px;
    background: #fafafa;
  }

  .blog-preview h2 {
    font-size: 20px;
    margin-bottom: 4px;
  }

  .blog-subtitle {
    font-size: 14px;
    color: #777;
    margin-bottom: 14px;
  }

  /* GRID → SLIDER */
  .blog-grid {
    display: flex !important;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 10px;
  }

  /* BLOG KART */
  .blog-card {
    min-width: 80%;
    flex-shrink: 0;
    scroll-snap-align: start;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
  }

  .blog-card img {
    height: 180px;
    object-fit: cover;
    border-radius: 16px 16px 0 0;
  }

  .blog-content {
    padding: 14px;
  }

  .blog-content h3 {
    font-size: 16px;
    line-height: 1.3;
    margin-bottom: 6px;
  }

  .blog-content p {
    font-size: 14px;
    color: #666;
  }

  .blog-tag {
    font-size: 12px;
    padding: 4px 8px;
    border-radius: 8px;
    background: #f2f2f2;
    display: inline-block;
    margin-bottom: 6px;
  }

  /* SADECE İLK 3 BLOG */
  .blog-card:nth-of-type(n+4) {
    display: none;
  }

  /* Tüm Blogları Gör */
  .blog-more-btn {
    min-width: 70%;
    flex-shrink: 0;
    scroll-snap-align: start;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #111;
    color: #fff;
    font-weight: 600;
    border-radius: 16px;
    padding: 16px;
    text-decoration: none;
    box-shadow: 0 12px 30px rgba(0,0,0,.2);
  }
}
@media (max-width: 768px) {
  .blog-preview::after {
    content: "Kaydır →";
    display: block;
    text-align: right;
    font-size: 12px;
    color: #999;
    margin-top: 6px;
  }
}
/* Masaüstünde blog-more-btn gizle */
@media (min-width: 769px) {
  .blog-more-btn {
    display: none !important;
  }
}
