/* ===== Dual Card Row ===== */

.dc-grid {
  display: flex;
  gap: 24px;
  width: 100%;
}

.dc-card {
  flex: 1;
  aspect-ratio: 780 / 500;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.4s ease;
}

.dc-card:hover {
  transform: scale(1.01);
}

.dc-card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.dc-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  transition: background 0.4s ease;
  z-index: 1;
}

.dc-card:hover::before {
  background: rgba(0, 0, 0, 0.15);
}

.dc-card-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 0;
  text-align: center;
}

.dc-title {
  color: #fff;
  font-size: 22px;
  font-weight: 500;
  margin: 0;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

@media screen and (max-width: 768px) {
  .dc-grid {
    flex-wrap: wrap;
    gap: 8px;
  }
  .dc-card {
    flex: 0 0 calc(50% - 4px);
    aspect-ratio: 780 / 500;
  }
  .dc-title {
    font-size: 18px;
  }
}
