/* Editor - HRC Canvas Podium Block */

.hrc-podium {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 20px;
    padding: 40px 30px;
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.5) 100%);
}

.podium-place {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    border-radius: 8px;
    background: linear-gradient(180deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.03) 100%);
    border: 2px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
    width: 200px;
}

.podium-place.gold {
    order: 2;
    width: 240px;
    padding: 30px 25px;
    transform: translateY(-20px);
    border-color: #ffd700;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
}

.podium-place.silver {
    order: 1;
    border-color: #c0c0c0;
    box-shadow: 0 0 20px rgba(192, 192, 192, 0.2);
}

.podium-place.bronze {
    order: 3;
    border-color: #cd7f32;
    box-shadow: 0 0 20px rgba(205, 127, 50, 0.2);
}

.podium-place .podium-position {
    font-family: 'Orbitron', sans-serif;
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 15px;
}

.podium-place.gold .podium-position {
    font-size: 48px;
    color: #ffd700;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.8);
}

.podium-place.silver .podium-position {
    color: #c0c0c0;
    text-shadow: 0 0 15px rgba(192, 192, 192, 0.6);
}

.podium-place.bronze .podium-position {
    color: #cd7f32;
    text-shadow: 0 0 15px rgba(205, 127, 50, 0.6);
}

.podium-place .podium-car-img {
    width: 160px;
    height: 90px;
    background: rgba(255,255,255,0.05);
    border-radius: 4px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.3);
    font-size: 12px;
}

.podium-place.gold .podium-car-img {
    width: 200px;
    height: 112px;
}

/* Podium Text - mit :where() fuer Editor-Ueberschreibbarkeit */
:where(.podium-place .podium-driver) {
    font-family: 'Rajdhani', sans-serif;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    margin-bottom: 5px;
    color: #fff;
}

:where(.podium-place.gold .podium-driver) {
    font-size: 22px;
}

:where(.podium-place .podium-car) {
    font-family: 'Teko', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
    margin-bottom: 10px;
}

:where(.podium-place .podium-time) {
    font-family: 'Orbitron', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #ffd700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
    letter-spacing: 1px;
}

:where(.podium-place.gold .podium-time) {
    font-size: 26px;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
}