/* ==============================
   GRID ? IMMER 2 SPALTEN
============================== */

.promo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin: 40px auto;
}

@media (max-width: 900px) {
    .promo-grid {
        grid-template-columns: 1fr;
    }
}

/* ==============================
   CARD
============================== */

.promo-card {
  position: relative;
  display: grid;
  grid-template-columns: 40% 60%;
  background: #fbfbf9;
  #min-height: 420px;
  overflow: hidden;
  border-radius: 8px;
  transition:transform 0.2s ease, box-shadow 0.2s ease;
}

.promo-grid .promo-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* ==============================
   BILD ? ZOOM IM RAHMEN
============================== */

.image-col {
    padding: 24px;
}

.image-frame {
    width: 100%;
    height: 100%;
    border: 6px solid #f1c64a;
    overflow: hidden;
    border-radius:8px;
}

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

.promo-card:hover .image-frame img {
    transform: scale(1.08);
}

/* ==============================
   TEXTBEREICH
============================== */

.text-col {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.text-col h2 {
    font-size: 40px;
    letter-spacing: 3px;
    margin: 0 0 32px 0;
    text-align:center;
    font-weight:normal;
}

/* Grauer Claim-Balken */
.claim {
    background: #7b7f7c;
    color: #ffffff;
    padding: 16px 24px;
    font-size: 18px;
    margin-bottom: 30px;
    text-align:center;
}

/* ==============================
   CTA
============================== */

.cta {
  text-decoration: none;
  font-weight: normal;
  letter-spacing: 1px;
  text-align: center;
  font-size:24px;
}

.cta .q {
  font-family: 'Materials';
  color: #f1c64a;
}

/* ==============================
   PUNKTE ? ZWEI ECHTE DREIECKE
============================== */

.promo-card .text-col::before,
.promo-card .text-col::after {
    content: "";
    position: absolute;
    width: 80px;
    height: 80px;

    background-image:
        radial-gradient(circle, rgba(184,163,145,0.9) 2px, transparent 2px);
    background-size: 14px 14px;

    animation: dotPulse 4.5s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

/* OBEN RECHTS */
.promo-card .text-col::before {
    top: 10px;
    right: 10px;

    clip-path: polygon(
        100% 0%,
        0% 0%,
        100% 100%
    );
}

/* UNTEN LINKS */
.promo-card .text-col::after {
    bottom: 10px;
    left: 10px;

    clip-path: polygon(
        0% 100%,
        0% 0%,
        100% 100%
    );

    animation-delay: 2.2s;
}

/* ==============================
   ANIMATION
============================== */

@keyframes dotPulse {
    0% {
        opacity: 0.35;
        filter: brightness(0.9);
    }
    50% {
        opacity: 0.85;
        filter: brightness(1.15);
    }
    100% {
        opacity: 0.35;
        filter: brightness(0.9);
    }
}