.gc-blog-wrap {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 16px;
  box-sizing: border-box;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

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

.gc-blog-card {
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(15, 23, 42, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.gc-blog-image {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #0f172a;
  text-decoration: none !important;
}

.gc-blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

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

.gc-blog-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0f172a, #347ab5);
  color: #ffffff;
  font-size: 58px;
  font-weight: 800;
}

.gc-blog-content {
  padding: 24px;
}

.gc-blog-meta {
  color: #347ab5;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}

.gc-blog-title {
  margin: 0 0 12px 0;
  font-size: 22px;
  line-height: 1.25;
  font-weight: 800;
  color: #0f172a;
}

.gc-blog-title a {
  color: inherit;
  text-decoration: none !important;
}

.gc-blog-title a:hover {
  color: #347ab5;
}

.gc-blog-excerpt {
  margin: 0 0 20px 0;
  color: #64748b;
  font-size: 15px;
  line-height: 1.65;
}

.gc-blog-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 18px;
  background: #0f172a;
  color: #ffffff !important;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none !important;
  transition: background 0.25s ease, transform 0.25s ease;
}

.gc-blog-btn:hover {
  background: #347ab5;
  transform: translateY(-2px);
}

.gc-blog-pagination {
  margin-top: 45px;
  display: flex;
  justify-content: center;
}

.gc-blog-pagination ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.gc-blog-pagination li {
  margin: 0;
}

.gc-blog-pagination a,
.gc-blog-pagination span {
  min-width: 42px;
  height: 42px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #ffffff;
  color: #0f172a;
  border: 1px solid rgba(15, 23, 42, 0.12);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none !important;
}

.gc-blog-pagination a:hover,
.gc-blog-pagination .current {
  background: #0f172a;
  color: #ffffff;
}

.gc-blog-empty {
  text-align: center;
  color: #64748b;
  font-size: 16px;
  padding: 40px 0;
}

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

@media (max-width: 600px) {
  .gc-blog-wrap {
    padding-left: 14px;
    padding-right: 14px;
  }

  .gc-blog-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .gc-blog-content {
    padding: 20px;
  }

  .gc-blog-title {
    font-size: 20px;
  }
}
