/* Blog listing + pagination (Laravel chrome shell) */
body.wheez-laravel-chrome {
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

body.wheez-laravel-chrome .site-main,
body.wheez-laravel-chrome #content,
body.wheez-laravel-chrome .page-content {
  min-height: 40vh;
}

.isd-blog-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 16px 48px;
}

.isd-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

@media (max-width: 992px) {
  .isd-blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .isd-blog-grid {
    grid-template-columns: 1fr;
  }
}

.isd-blog-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #e8ecf1;
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.isd-blog-card:hover {
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
  transform: translateY(-2px);
}

.isd-blog-image {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #f3f6fa;
}

.isd-blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.isd-blog-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px 18px 20px;
  flex: 1;
}

.isd-blog-meta {
  font-size: 12px;
  color: #64748b;
  letter-spacing: 0.02em;
}

.isd-blog-title {
  margin: 0;
  font-size: 18px;
  line-height: 1.35;
  font-weight: 700;
}

.isd-blog-title a {
  color: #0f172a;
  text-decoration: none;
}

.isd-blog-title a:hover {
  color: #0b5fff;
}

.isd-blog-excerpt {
  margin: 0;
  color: #475569;
  font-size: 14px;
  line-height: 1.55;
  flex: 1;
}

.isd-read-more {
  margin-top: 4px;
  font-size: 14px;
  font-weight: 600;
  color: #0b5fff;
  text-decoration: none;
}

.isd-read-more:hover {
  text-decoration: underline;
}

.isd-pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 36px;
}

.isd-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border: 1px solid #dbe3ee;
  border-radius: 8px;
  color: #0f172a;
  background: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
}

.isd-pagination .page-numbers:hover {
  border-color: #0b5fff;
  color: #0b5fff;
}

.isd-pagination .page-numbers.current {
  background: #0b5fff;
  border-color: #0b5fff;
  color: #fff;
}

.isd-pagination .page-numbers.dots {
  border-color: transparent;
  background: transparent;
  min-width: auto;
  padding: 0 4px;
}

.isd-pagination .page-numbers.prev,
.isd-pagination .page-numbers.next {
  padding: 0 14px;
}
