/* ===== BODY (CENTRAL CONTAINER) ===== */
/* .container{
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
} */
.main{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-flow: column;
    gap: var(--space-l);
}
.card {
    border-radius: var(--br-default);
    background-color: var(--primary-50);
    display: flex;
    align-items: center;
    height: 24rem;
    width: 100%;
    overflow: hidden;
}
.card__serie-img {
    width: 15%;
    height: 100%;
}
.header__serie {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: space-between;
}
.title--serie, .info--serie {
    color: var(--background-800);
    font-weight: 900;
}
.title--serie {
    font-size: 3rem;
    -webkit-line-clamp: 1;
}
.extra-actions{
    display: flex;
    flex-flow: row wrap;
    gap: var(--space-m)
}
.card__serie-info {
    width: 85%;
    padding: var(--space-xxl);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.text--serie {
    text-align: justify;
    -webkit-line-clamp: 3;
}
.title--serie, .text--serie {
    white-space: normal;
    overflow: hidden;
    text-overflow: ellipsis;

    display: -webkit-box !important;
    -webkit-box-orient: vertical;
}
.footer__serie {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-flow: row wrap;
    gap: var(--space-l);
}
.super-buddies-wrapper{
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: center;
    gap: var(--space-m);
    height: 3rem;
}
.icon__buddy {
    background-color: var(--background-800);
    border-radius: 50%;
    height: 100%;
    aspect-ratio: 1/1;
    overflow: hidden;
    border: 2.5px solid var(--primary-500);
}
/* ===== TABLET (810px) ===== */
@media screen and (max-width: 810px) {
    .title--serie {
        font-size: 3rem;
    }
    .body__serie > .text--serie {
        white-space: normal;
        overflow: hidden;
        text-overflow: ellipsis;

        display: -webkit-box !important;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
    }
}
@media screen and (max-width: 700px) {
    .title--serie {
        width: fit-content;
        font-size: 2.5rem;
    }
}
/* ===== PHONE (500px) ===== */
@media screen and (max-width: 500px) {
    .container {
        display: block;
    }
    .card {
        display: flex;
        flex-direction: column;
        overflow: hidden;
        height: fit-content;
    }
    .card__serie-img {
        width: 100%;
        height: 15vh;
    }
    .header__serie {
        text-align: center;
        justify-content: center;
    }
    .card__serie-info {
        gap: var(--space-l);
    }
    .title--serie {
        text-align: left;
        width: 100%;
    }
    .text--serie{
        text-align: left;
    }
    .card__serie-info {
        width: fit-content;
    }
}