/* Contenedor general */
.divCampeones {
    background-image: url(../images/torneo/bg-full-width/bg-torneo-dark.webp);
    background-size: contain;
    background-position: center;
    min-height: 300px;
    display: flex;
}
.bodyPrincipal .divCampeones {
    background: none;
}

.divCampeon{
    width: 38%;
    height: 100%;
    left: 10%;
    position: absolute;    
}
.divSubcampeon{
    width: 38%;
    height: 100%;
    left: 53.3%;
    position: absolute;
}
.divPodio .titulo{
    left: 57%;
    width: 50%;
    position: absolute;
    top: -2%;
    font-weight: 100;
}
.divPodio .titulo h1{
    color: #ffffff !important;
    font-size: clamp(14px, 1.5vw, 20px);
}
.divPodio .titulo h2{
    color: #16b9f4;
    font-size: clamp(14px, 1.5vw, 20px);
    width: 100%;
}

/* Podio (Base escalable) */

.divPodio {
    position: relative;
    width: 100%;
    max-width: 500px;
    aspect-ratio: 500 / 322;

    background-image: url(../images/torneo/bg-full-width/ganadores-podios-neon-c.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;

    margin: 30px auto;
    align-self: center;
}

/* Avatares */

.divPodio .avatar-wrapper {
    position: absolute !important;
    height: auto;
}
.divPodio .avatar-wrapper img {
    width: 100% !important;
    height: auto !important;   /* Ã°Å¸â€˜Ë† ESTO es lo que manda */
    display: block;
}
.divCampeon .avatar-wrapper {
    top: 12%;
    left: 9%;
    border: #4ae1e1 2px solid;
    width: 70%;
}

.divSubcampeon .avatar-wrapper {
    width: 56%;
    bottom: 30%;
    left: 11%;
    border: #c479dd 2px solid;
}

/* Nombres */
.divCampeones h2 div{
    margin: auto 0;
}
.divCampeones h2{
    position: absolute;
    top: 83%;
    width: 94.8%;
    color: white;
    font-weight: bold;
    font-size: clamp(12px, 1.5vw, 20px);
    line-height: 1.1;
    margin: 0;
    height: 13%;
    display: flex;
}
.divCampeon h2 {
    left: 1.6%;
}

.divSubcampeon h2 {
    left: 10.2%;
}

/* TÃƒÂ­tulos */

.divCampeon h1 {
    position: absolute;
    top: 66%;
    left: 7.6%;
    width: 85%;
    color: #57f0f1;
    font-size: clamp(14px, 1.8vw, 26px);
    margin: 0;
    text-align: center !important;
}

.divSubcampeon h1 {
    position: absolute;
    top: 67.7%;
    left: 1.4%;
    width: 85%;
    color: #db9ffe;
    font-size: clamp(14px, 1.8vw, 22px);
    margin: 0;
    text-align: center;
}