/* ///// HEROS ///// */
.page-heros-wrapper{
    max-width: 700px;
    width: 80vw;
    margin: 60px auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 150px;
}

.page-heros-item{
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 30px;
}
.page-heros-item:nth-child(odd){
    flex-direction: row-reverse;
}
@media (max-width: 768px) {
    .page-heros-item, .page-heros-item:nth-child(odd){
        flex-direction: column;
    }
}

.page-heros-item img {
    width: 300px;
    border-radius: 20px;
    box-shadow: 0px 4px 8px var(--shadow-card);
}
.page-heros-img{
    width: 300px;
    max-width: 100vw;
    flex: 0 0 auto;
}
.page-heros-img img{
    width: 100%;
}

.page-heros-cover-link {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 550 / 700;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 4px 8px var(--shadow-card);
}

.page-heros-cover-image,
.page-heros-cover-watermark {
    position: absolute;
    inset: 0;
}

.page-heros-cover-image {
    z-index: 10;
}

.page-heros-cover-watermark {
    z-index: 20;
}

.page-heros-item .page-heros-cover-link img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    box-shadow: none;
}

.page-heros-cover-info {
    position: absolute;
    bottom: 1.5rem;
    left: 0;
    z-index: 30;
    display: block;
    width: 100%;
    padding: 0 12px;
    color: var(--text-on-dark-strong);
    text-align: center;
    text-shadow: var(--shadow-deep) 1px 4px 11px;
}

.page-heros-cover-title,
.page-heros-cover-type {
    display: block;
}

.page-heros-cover-title {
    font-size: 14px;
    line-height: 1rem;
    font-weight: 600;
}

.page-heros-cover-type {
    font-size: 12px;
    line-height: 1.4rem;
    font-weight: 600;
    font-style: italic;
}
.page-heros-texts{
    width: 300px;
}
.page-heros-h1{
    font-size: 18px;
    font-weight: 600;
    color: var(--text-on-light);
}
.page-heros-h2{
    margin-top: 20px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
}
.page-heros-boton{
    margin-top: 10px;
    color: var(--button-primary-text);
    font-size: 14px;
    font-weight: 500;
    background-color: var(--button-primary-background);
    padding: 7px 20px;
    border-radius: 15px;
    box-shadow: 0px 4px 8px var(--shadow-soft);
    text-align: center;
}
