/* Container für alle Wildcards */
.wildcard-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    padding: 20px;
    margin: var(--gap-big) 0px var(--gap-big) 0px;
}

/* Grundstil für alle Cards */
.wildcard {
    display: flex;
    flex-direction: column;
    background: #fff;
    padding: 25px 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: #333;
    border-radius: 10px;

    flex: 1 1 calc(33.333% - 40px);
    max-width: 340px;
    min-width: 340px;
}

/* ----- Neues 6er Rotation-Muster ----- */

.wildcard:nth-child(6n+1) {
    transform: rotate(0.7deg);
}

.wildcard:nth-child(6n+2) {
    transform: rotate(-0.8deg);
}

.wildcard:nth-child(6n+3) {
    transform: rotate(-0.9deg);
}

.wildcard:nth-child(6n+4) {
    transform: rotate(0.4deg);
}

.wildcard:nth-child(6n+5) {
    transform: rotate(0.6deg);
}

.wildcard:nth-child(6n+6) {
    transform: rotate(-1.1deg);
}

/* Hover: alle Cards richten sich gerade aus */
.wildcard:hover {
    transform: rotate(0deg) scale(1.03);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

/* Icon-Kreis */
.wildcard .icon-circle {
    width: 60px;
    height: 60px;
    background: var(--dpsg-orange);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 15px;
}

.wildcard h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.wildcard p {
    flex-grow: 1;
}

.wildcard img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    margin-top: 15px;
}
