.gh-blog-library {
  width: 100%;
  padding-bottom: 80px;
  position: relative;
  z-index: 2;
}

.gh-blog-filters {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 420px;
  margin: 0 auto 40px auto;
}

.gh-blog-filter-label {
  font-size: 14px;
  font-weight: 600;
  color: #872634;
  margin-bottom: 8px;
  line-height: 1.3;
}

.gh-blog-filter-select {
  width: 100%;
  min-height: 52px;
  border: 2px solid #872634;
  background: #fff;
  color: #872634;
  font-size: 16px;
  padding: 0 14px;
  border-radius: 0;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  box-shadow: none;
}

.gh-blog-filter-select:focus {
  outline: none;
  border-color: #872634;
  box-shadow: 0 0 0 2px rgba(135, 38, 52, 0.12);
}

.gh-blog-results {
  min-height: 200px;
  position: relative;
  z-index: 2;
}

.gh-blog-results.is-loading {
  opacity: 0.5;
  pointer-events: none;
}

.gh-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
  margin-top: 40px;
  position: relative;
  z-index: 2;
}

.gh-blog-card {
  background: #fff;
  border: none;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.gh-blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.gh-blog-card-image-wrap {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #f3f3f3;
}

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

.gh-blog-card:hover .gh-blog-card-image {
  transform: scale(1.04);
}

.gh-blog-card-content {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.gh-blog-card-title {
  margin: 0 0 10px;
  font-size: 20px;
  line-height: 1.3;
}

.gh-blog-card-title a {
  color: #222;
  text-decoration: none;
}

.gh-blog-card-title a:hover {
  color: #872634;
}

.gh-blog-card-author {
  font-size: 15px;
  color: #666;
  margin-bottom: 14px;
}

.gh-blog-card-excerpt {
  font-size: 16px;
  line-height: 1.6;
  color: #444;
  margin-bottom: 20px;
}

.gh-blog-card-link {
  margin-top: auto;
  color: #872634;
  font-weight: 600;
  text-decoration: none;
}

.gh-blog-card-link:hover {
  text-decoration: underline;
}

.gh-blog-empty {
  text-align: center;
  padding: 40px 20px;
  color: #666;
}

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

  .gh-blog-card-title {
    font-size: 18px;
  }
}

@media (max-width: 767px) {
  .gh-blog-filters {
    max-width: 100%;
  }

  .gh-blog-grid {
    grid-template-columns: 1fr;
  }

  .gh-blog-filter-select {
    min-height: 48px;
    font-size: 15px;
  }
}