.nominee-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
}

.nominee-item {
    position: relative;
    width: calc(33.333% - 20px); /* Drei Elemente pro Reihe */
    /*padding-bottom: 20%;*/
    background-size: cover;
    background-position: center;
    /*border: 1px solid #ddd;*/
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.nominee-item-front a {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

.nominee-title {
    position: absolute;
    bottom: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 10px;
    text-align: center;
    font-size: 16px;
}

.nominee-categories {
    font-weight: initial;
    padding: 20px;
}

.nominee-dropdown {
    padding-bottom: 30px;
}





.nominee-item {
    perspective: 1000px;
}
.nominee-item-inner {
    position: relative;
    width: 100%;
    height: 300px;
    text-align: center;
    transition: transform 0.6s;
    transform-style: preserve-3d;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
    border-radius: 10px;
}
.nominee-item:hover .nominee-item-inner {
    transform: rotateY(180deg);
}
.nominee-item-front, .nominee-item-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    border-radius: 10px;
}
.nominee-item-front {
    background: #fff;
    background-size: cover;
    background-position: center;
}
.nominee-item-back {
    background: #f8f8f8;
    transform: rotateY(180deg);
    overflow: hidden;
    background-image: url('http://deutscherentwicklerpreis.de/content/uploads/2024/07/bg_W_verlauf_01.jpg');
    background-size: cover;
    background-position: center;
}




.nominee-dropdown {
    margin-bottom: 20px;
}

.nominee-loading-animation {
    text-align: center;
    font-size: 1.5em;
    color: #333;
    padding: 20px;
}

.category-nominees-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: flex-start;
    margin-bottom: 50px;
    width: 100%;
    /*max-height: 300px;*/
}

.nominee-item {
    position: relative;
    width: calc(33.333% - 20px);
    /*padding-bottom: 33.333%;*/
    background-size: cover;
    background-position: center;
    border: 3px solid #ddd; /* Standard border */
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

@media (max-width: 1200px) {
    .nominee-item {
        width: calc(50% - 20px); /* Zwei Elemente pro Reihe */
    }
}

@media (max-width: 600px) {
    .nominee-item {
        width: calc(100% - 20px); /* Ein Element pro Reihe */
    }
}

.nominee-item a {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

.nominee-title {
    position: absolute;
    bottom: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 10px;
    text-align: center;
    font-size: 16px;
}