
.examples {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 100%;
}

.category-section {
  width: 100%;
  margin: 2rem 0;
}

/* Centered category header */
.category-header {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  text-align: center;
}

.category-header h2 {
  font-size: 2rem;
  margin: 0 auto 0.5rem auto;
}

/* See all link aligned with example grid */
.see-all-wrapper {
  max-width: 1200px;
  margin: 0 auto 1.5rem auto;
  padding: 0 1rem;
  text-align: right;
}

.see-all-wrapper .see-all-link {
  font-size: 1rem;
  font-weight: 500;
  color: #0e76bc;
  text-decoration: none;
  display: inline-block;
}

.see-all-wrapper .see-all-link:hover {
  color: #3CB043;
}

.see-all-link {
  font-size: 1rem;
  font-weight: 500;
  color: #0e76bc;
  text-decoration: none;
}

.see-all-link:hover {
  color: #3CB043;
}

/* Example grid layout */
.example-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

.example {
  flex: 1 1 200px;
  max-width: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-sizing: border-box;
}

.thumbnail-wrapper {
  width: 100%;
  overflow: hidden;
  border-radius: 12px;
}

.thumbnail-wrapper img {
  width: 100%;
  height: 200px;
  display: block;
  border-radius: 12px;
  object-fit: cover;
  object-position: center center;
}

.example h3 {
  margin-top: 0.5rem;
  font-size: 1.25rem;
}

.example p {
  font-size: 1rem;
  margin-top: 0.25rem;
  color: #666;
}

/* Responsive layout */
@media (max-width: 600px) {
  .example-grid {
    padding: 0 0.5rem;
    gap: 1rem;
  }

  .example {
    flex: 1 1 calc(50% - 0.75rem);
  }
}
.see-all-wrapper {
  width: 100%;
  text-align: center;
  margin-bottom: 0.5rem;
}

.see-all-link {
  font-size: 1rem;
  font-weight: 500;
  color: #0e76bc;
  text-decoration: none;
  display: inline-block;
  padding: 0.5rem 1rem;         /* expands tap area */
  border-radius: 6px;           /* optional for touch feel */
}

.see-all-link:hover {
  color: #3CB043;
}

