/* vdr-app-cards — straight equal card row (no fan / overlap / rotate).
   Contract: .vdr-app-cards > .vdr-app-card > img
   Optional EN captions: figcaption.vdr-app-card__cap > .vdr-app-card__cap-title + .vdr-app-card__cap-text
   Shadow on img only; figure overflow visible so captions sit clean under the asset. */

.vdr-app-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 2.2vw, 28px);
  align-items: start;
  margin: 8px 60px 28px;
  padding: 0;
  list-style: none;
}

.vdr-app-card {
  margin: 0;
  padding: 0;
  background: none;
  border: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow: visible;
}

.vdr-app-card img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center top;
  background: transparent;
  border-radius: 18px;
  box-shadow: 0 16px 36px -20px rgba(24, 28, 37, 0.28);
}

.vdr-app-card__cap {
  margin: 0;
  padding: 0 2px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-family: inherit; /* Hanken / case type */
}

.vdr-app-card__cap-title {
  font-size: 0.875rem; /* 14 — case caption/sub */
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.3;
  color: #181c25;
}

.vdr-app-card__cap-text {
  font-size: 0.8125rem; /* 13 */
  line-height: 1.45;
  font-weight: 400;
  color: #625d52; /* case muted ink */
}

@media (max-width: 900px) {
  .vdr-app-cards {
    margin: 4px 24px 24px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }
}

@media (max-width: 520px) {
  .vdr-app-cards {
    margin: 4px 16px 20px;
    grid-template-columns: 1fr;
    gap: 14px;
  }
}
