/* Blog sayfası container ve liste */
.blog-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5em;
  margin-top: 2em;
}

/* Card stilleri (anasayfa ile uyumlu) */
.card {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: all 0.25s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 22px rgba(13, 110, 253, 0.15);
}

/* Card görseli */
.card-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

/* Card içeriği */
.card-body {
  padding: 1.2em 1.3em;
}

/* Başlık ve link */
.card-title1 {
  color: #171717;
  font-size: 1.1em;
  font-weight: bold;
  font-family: 'Times New Roman', Times, serif;
  margin-bottom: 0.5em;
}

.card-title1 a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.card-title1 a:hover {
  color: #0d6efd;
  text-decoration: underline;
}

/* Blog özeti */
.card-text {
  margin-top: 0.6em;
  color: #555;
  font-size: 0.95em;
  line-height: 1.6;
}

/* Tarih */
.card-date {
  display: block;
  margin-top: 0.8em;
  font-size: 0.8em;
  color: #999;
}

/* Başlık */
h1.text-center {
  color: #0d6efd;
  margin-bottom: 1em;
  text-align: center;
}

.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;

  height: calc(60px + env(safe-area-inset-bottom));
  padding-bottom: env(safe-area-inset-bottom);

  background: #ffffff;

  display: flex;
  justify-content: space-around;
  align-items: center;

  border-top: 1px solid #e5e5e5;

  z-index: 9999;

  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.08);

  /* daha modern görünüm */
  backdrop-filter: blur(10px);
}

/* NAV ITEM */
.bottom-nav .nav-item {
  color: #888;
  text-decoration: none;

  display: flex;
  flex-direction: column;
  align-items: center;

  transition: 0.2s ease;
}

/* ICON */
.bottom-nav .nav-item .material-icons {
  font-size: 28px;
}

/* TEXT */
.bottom-nav .nav-item small {
  font-size: 12px;
  margin-top: 2px;
  line-height: 1;
  color: inherit;
}

/* HOVER */
.bottom-nav .nav-item:hover {
  color: #0d6efd;
}

/* ACTIVE STATE */
.bottom-nav .nav-item.active {
  color: #0d6efd;
}

/* ACTIVE INDICATOR DOT */
.bottom-nav .nav-item.active::after {
  content: '';
  width: 5px;
  height: 5px;
  background: #0d6efd;
  border-radius: 50%;
  margin-top: 4px;
}

/* Responsive */
@media (max-width: 768px) {
  .blog-list {
    grid-template-columns: 1fr;
    gap: 1em;
  }
  .card-img {
    max-height: 180px;
  }
  h1.text-center {
    font-size: 1.5em;
  }
}
