/* =========================================================
   Was-möglich-Grid
   Klickbare Premium-Karten
   Dein Selbstversorger
   ========================================================= */

.dsv-moeglich-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;

  max-width: 980px;
  margin: 1.8rem auto;

  justify-items: center;
}

/* =========================================================
   Einzelne Karte
   Ganze Karte klickbar
   ========================================================= */

.dsv-moeglich-card {
  background:
    radial-gradient(circle at top right,
    rgba(122, 163, 85, 0.08),
    transparent 38%),
    #fff;

  border: 1.5px solid var(--rand);
  border-radius: 10px;

  padding: 1.15rem;

  font-family: 'Segoe UI', Arial, sans-serif;

  aspect-ratio: 1 / 1;

  max-width: 320px;
  width: 100%;

  display: flex;
  flex-direction: column;
  justify-content: flex-start;

  text-decoration: none;
  color: inherit;

  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease,
    background 0.22s ease;
}

/* =========================================================
   Hover-Effekt
   ========================================================= */

.dsv-moeglich-card:hover {
  transform: translateY(-5px);

  box-shadow:
    0 12px 28px rgba(42, 74, 45, 0.12);

  border-color: var(--gruen);

  background:
    radial-gradient(circle at top right,
    rgba(122, 163, 85, 0.14),
    transparent 40%),
    #fff;
}

/* =========================================================
   Klick-Effekt
   ========================================================= */

.dsv-moeglich-card:active {
  transform: scale(0.985);
}

/* =========================================================
   WebP-Icon oben
   ========================================================= */

.dsv-card-icon {
  width: 54px;
  height: 54px;

  object-fit: contain;

  margin-bottom: 0.75rem;
}

/* =========================================================
   Titel
   ========================================================= */

.dsv-moeglich-card .mc-titel {
  font-size: 1rem;
  font-weight: 700;

  color: var(--gruen);

  margin-bottom: 0.45rem;

  display: block;

  line-height: 1.3;
}

/* =========================================================
   Beschreibungstext
   ========================================================= */

.dsv-moeglich-card p {
  font-size: 0.93rem;

  line-height: 1.7;

  color: #4f4f4f;

  margin: 0;
}

/* =========================================================
   Link unten
   ========================================================= */

.dsv-card-link {
  margin-top: auto;

  display: inline-block;

  font-size: 0.83rem;
  font-weight: 700;

  color: var(--gruen);

  opacity: 0.88;

  padding-top: 1rem;
}

/* =========================================================
   Tablet
   ========================================================= */

@media (max-width: 900px) {

  .dsv-moeglich-grid {
    grid-template-columns: repeat(2, 1fr);

    max-width: 680px;
  }

}

/* =========================================================
   Mobil
   ========================================================= */

@media (max-width: 600px) {

  .dsv-moeglich-grid {
    grid-template-columns: 1fr;

    max-width: 360px;
  }
}