.wy-preise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.25rem;
    justify-content: center;
}
.wy-preis-card {
    display: block;
    border-radius: var(--wy-radius-md);
    padding: 28px 20px;
    text-align: center;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.14);
    text-decoration: none;
    transition: transform .2s ease, box-shadow .2s ease;
}
.wy-preis-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(0,0,0,0.35);
    background: rgba(255,255,255,0.13);
    text-decoration: none;
}
.wy-preis-name {
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: rgba(255,255,255,0.50);
    display: block;
    margin-bottom: 10px;
}
.wy-preis-amount {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--wy-color-white);
    display: block;
    margin-bottom: 4px;
}
.wy-preis-unit {
    font-size: .82rem;
    color: rgba(255,255,255,0.5);
    display: block;
}
