.trophy{
    background: #fff;
    width: 100%;
    min-height: 20vh;
    position: relative;
}

.trophy .contTrophy{
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(8rem, 1fr));
    gap: 1rem;
    width: 100%;
}
.trophy .contTrophy .won{
    padding: .5rem;
    position: relative;
    border-radius: .5rem;
    box-shadow: 0 0 25px rgba(0,0,0, .110);
    cursor: pointer;
}
.trophy .contTrophy .won:hover{
    box-shadow: 0 0 25px rgba(0,0,0, .230);
    border-radius: 1rem;
}
.trophy .contTrophy .won .theme{
    font-size: .7rem;
    padding: .2rem .5rem;
    border-radius: 25px;
    background: #fff;
    border: 1px solid #eee;
    text-align: center;
    color: #666;
    position: absolute;
    top: -.5rem;
    width: max-content;
    transform: translateX(-50%);
    left: 50%;
}
.trophy .contTrophy .won .date{
    font-size: 1.2rem;
    margin-top: 1rem;
    font-weight: 900;
    border-bottom: 1px solid;
    background: linear-gradient(45deg, #031bf3, #ff00bf);
    background-clip: text;
    color: transparent;
    width: max-content;
    border-bottom: 1px solid #333;
}
.trophy .contTrophy .won .about{
    font-size: .7rem;
    margin-top: .5rem;
    color: #666;
}

/*Previsualización*/
.trophy .prevTrophy{
    position: fixed;
    z-index: 200;
    top: 0;
    left: -100%;
    visibility: hidden;
    pointer-events: none;
    background: #fff;
    min-height: 100vh;
    overflow-y: auto;
    padding: 2rem 12%;
    width: 100%;
    display: flex;
    flex-direction: column;
    height: 100%;
    row-gap: 1rem;
}
.trophy .prevTrophy.active{
    left: 0;
    visibility: visible;
    pointer-events: all;
}
.trophy .prevTrophy .closeThis{
    margin-left: auto;
    background: #fff;
    padding: .3rem 1rem;
    border-radius: 25px;
    box-shadow: 0 0 10px rgba(0,0,0, .110);
    cursor: pointer;
    color: #666;
    margin-bottom: 2rem;
    border: 1px solid #ddd;
}
.trophy .prevTrophy .closeThis:hover{
    color: #000;
    border: 1px solid #000;
    
}
.trophy .prevTrophy .nameTrophy{
    font-size: clamp(1.6rem, 3vw, 3rem);
    font-weight: 1000;
    color: #444;
}
.trophy .prevTrophy .yearTrophy{
    background:linear-gradient(0, #00709c, #001a41);
    color: transparent;
    background-clip: text;
    font-weight: 1000;
    font-size: clamp(3rem, 7vw, 5rem);
    width: max-content;
}
.trophy .prevTrophy .textInfo{
    font-size: clamp(1.1rem, 3vw, 1.5rem);
    color: #444;
}
/*Previsualización*/
