.blog-page-content {
  --blog-top-gap: 28px;
  background: #f2f4f7;
  margin-top: 0;
  clip-path: none;
  padding: var(--blog-top-gap) 0 calc(var(--hero-footer-slant-height) + 2.2rem);
}

/* Liste sayfası H1: takvimler-layout başlığı ile aynı calc ölçeği */
.blog-page-content .blog-index__page-title {
  display: table;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  font-size: calc(0.77em + 0.91vw);
  line-height: calc(0.92em + 0.38vw);
  margin-bottom: clamp(1.25rem, 2.8vw, 1.9rem) !important;
}

@media (max-width: 991.98px) {
  .blog-page-content .blog-index__page-title {
    font-size: clamp(0.98rem, 3.8vw, 1.22rem);
    line-height: calc(1.05em + 0.42vw);
  }
}

@media (max-width: 767.98px) {
  .blog-page-content .blog-index__page-title {
    font-size: clamp(0.92rem, 4.5vw, 1.08rem);
  }
}

.hero-slant-shape {
  background: #f2f4f7 !important;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
  align-items: start;
  margin-top: 0;
  padding-top: 0;
  clip-path: none;
  overflow: visible;
}

.blog-col {
  display: grid;
  grid-template-rows: auto 4fr;
  gap: 1.4rem;
}

.blog-card,
.blog-ad-box {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.09);
}

.blog-card__image-wrap {
  aspect-ratio: 16 / 10;
  background: #dbe1e8;
}

.blog-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.blog-card__body {
  padding: 1.05rem 1.1rem 1.15rem;
}

.blog-card__title {
  margin: 0 0 calc(0.3em + 0.38vw);
  font-family: var(--font-body);
  font-size: calc(0.55em + 0.65vw);
  font-weight: 700;
  line-height: calc(0.8em + 0.4vw);
  letter-spacing: 0.02em;
  color: #0f172a;
}

.blog-card__text {
  margin: 0;
  color: #64748b;
  font-size: calc(0.45em + 0.55vw) !important;
  line-height: calc(0.7em + 0.3vw) !important;
}

@media (max-width: 991.98px) {
  .blog-card__title {
    font-size: clamp(0.95rem, 2.8vw + 0.55rem, 1.12rem);
    line-height: 1.32;
  }

  .blog-card__text {
    font-size: clamp(0.78rem, 2.9vw, 0.88rem);
    line-height: 1.62;
  }
}

@media (max-width: 767.98px) {
  .blog-card__title {
    font-size: clamp(0.88rem, 3.2vw + 0.5rem, 1.05rem);
  }

  .blog-card__text {
    font-size: clamp(0.76rem, 3.5vw, 0.84rem);
    line-height: 1.6;
  }
}

.blog-card__link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.blog-ad-box {
  min-height: 250px;
  margin-top: 0;
  display: grid;
  place-items: center;
  padding: 1.5rem;
  border-radius: 14px;
  position: relative;
  overflow: hidden;
  transform: translateY(0);
  z-index: 1;
}

.blog-ad-box__logo {
  width: min(220px, 80%);
  height: auto;
  display: block;
  opacity: 0.95;
}

/* Tablet: masaüstüyle aynı 3 sütun */

@media (max-width: 767.98px) {
  .blog-grid {
    grid-template-columns: 1fr;
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
  }

  /* Logo kutusu (ikinci sütun) en üstte */
  .blog-grid .blog-col:nth-child(1) {
    order: 2;
  }

  .blog-grid .blog-col:nth-child(2) {
    order: 1;
  }

  .blog-grid .blog-col:nth-child(3) {
    order: 3;
  }

  .blog-col {
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
  }
}
