/* Collection Cards */
.col-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  background: transparent;
  transition: all 0.3s ease;
  overflow: hidden;
  text-decoration: none;
  color: var(--black);
}

.col-card:hover {
  border-color: var(--gold);
}

.col-image-wrap {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}

.col-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.col-card:hover .col-image-wrap img {
  transform: scale(1.03);
}

.col-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.col-content h3 {
  font-size: 18px;
  margin-bottom: 8px;
  color: var(--gold);
  letter-spacing: 0.05em;
}

.col-content p {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 16px;
  line-height: 1.6;
}

.col-content .explore-btn {
  margin-top: auto;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--black);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
