main
{
    padding-top: clamp(80px, 10vh, 120px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-image {

    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;

    width: 100%;
    min-height: 60svh;

    overflow: hidden; 
}

.hero-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
    object-fit: cover; 
    
    z-index: -1;  
}
.hero-image::after
{
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.836);
    z-index: 0;
    pointer-events: none;
}


.hero-content
{
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    

    z-index: 2;
    text-align: center;
    flex-direction: column;
    
}

.hero-content h1
{
    color: var(--color--letter-white);

    
    font-size: var(--step-4);
    font-family: var(--letter--type);
    margin: 0px clamp(1rem, 2vw, 3rem);
}



.contenedor-torneos {
    
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: auto;
    height: auto;
    
    gap: clamp(1rem, 2vw, 3rem);
}

.tarjeta-torneo {

    background: #fff;
    border-radius: 1rem;
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border-left: 6px solid var(--color--sky-blue);
    transition: transform 0.2s;
    margin: clamp(1rem,2vw,3rem) clamp(1rem,2vw,3rem);
}



.header-torneo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-torneo {
    width: 70px;
    height: 70px;
    object-fit: cover;

}

.nombre-torneo {
    font-family: var(--letter--type);
    font-size: var(--step-1);
    color: var(--color--principal);
    margin: 0;
}

.fecha-torneo {
    font-size: var(--step--2);
    font-weight: 300;
    color: var(--color--menuOpen);
}

.text-categorias{
    font-family: var(--letter--type);
    font-size: var(--step--1);
    color: var(--color--sky-blue);
}

.text-genero{
    font-size: var(--step--2);
    color: var(--color--letter-black);
    margin-top: 1rem;
}

.podium {
    margin: 1rem 0;
    
}

.podium ol {
    padding: 0;
}

.podium li{
    list-style: none;
    font-size: var(--step--2);
    color: var(--color--letter-black);
}


.letter-bold{
    font-family: var(--letter--type);
    font-size: var(--step--1);
    color: var(--color--letter-black);
}

.chage-letter{
    margin-left: 5px;
}


@media (min-width: 1000px) {

.tarjeta-torneo:hover {
    transform: translateY(-4px);
}
}