.hs-case-studies-page {
  padding: 60px 40px 100px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.hs-case-studies-page h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  font-weight: 700;
  color: #c9aa71;
}

.hs-case-studies-intro {
  font-size: 1.1rem;
  color: #ccc;
  margin-bottom: 50px;
}

.hs-case-studies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 30px;
}

.hs-case-study-card {
  background: #1a1a1a;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hs-case-study-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(201, 170, 113, 0.18);
}

.hs-case-study-card a {
  display: block;
  text-decoration: none;
  background: none;
}

.hs-cs-card-media {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #2a2a2a;
}

.hs-cs-card-media img.hs-cs-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hs-cs-thumb-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #2a2a2a;
  color: #c9aa71;
  font-size: 1.2rem;
  font-weight: 600;
  text-align: center;
  padding: 20px;
}

.hs-cs-card-title {
  font-size: 1.3rem;
  margin: 20px 20px 10px;
  color: #fff;
}

.hs-cs-card-excerpt {
  font-size: 0.95rem;
  color: #aaa;
  margin: 0 20px 15px;
  line-height: 1.5;
}

.hs-cs-card-link {
  display: inline-block;
  margin: 0 20px 20px;
  color: #c9aa71;
  font-weight: 500;
}

@media (max-width: 768px) {
  .hs-case-studies-page {
    padding: 40px 20px 60px;
  }

  .hs-case-studies-grid {
    grid-template-columns: 1fr;
  }
}
