.crp-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
  justify-content: center;
}
.crp-item {
  flex: 1 1 calc(33.33% - 20px);
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  transition: transform 0.2s ease;
  max-width: 100%;
}
.crp-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.crp-item img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.crp-item a {
  display: block;
  padding: 10px;
  font-weight: bold;
  font-size: 14px;
  color: #333;
  text-decoration: none;
  line-height: 1.4;
}
.crp-custom-title {
  font-size: 26px;
  font-weight: bold;
  text-align: center;
  color: #003366;
  background-color: #e0f3ff;
  padding: 12px;
  border-radius: 10px;
  margin-bottom: 20px;
}

/* Mobile - scroll ngang */
@media (max-width: 768px) {
  .crp-wrapper {
    overflow-x: auto;
    flex-wrap: nowrap;
    scroll-snap-type: x mandatory;
    gap: 12px;
    padding-bottom: 8px;
  }

  .crp-item {
    flex: 0 0 calc(33.33% - 10px);
    scroll-snap-align: start;
    min-width: 180px;
  }
}