/* ===== BODY (CENTRAL CONTAINER) ===== */
.main{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-flow: column;
    gap: var(--space-l);
}
.respuestas{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-flow: column;
    gap: var(--space-l);
    width: 100%;
}
.card{
    width:100%;
    position: relative;
}
.card, .card__post{
    border-radius: var(--br-default);
}
.card:nth-of-type(1) {
    background-color: var(--white);
    display: flex;
    flex-direction: column;
}
.card__serie-img {
    height: 25vh;
    border-radius: var(--br-default) var(--br-default) 0 0;
    overflow: hidden;
}
.title--serie {
    background: linear-gradient(
        360deg, 
        #111111 10%,
        #11111100 90%);
    transform: translate(0%, -100%);
    color: var(--primary-500);
    font-size: 6rem;
    padding: var(--space-xl);
}
.card__serie-info {
    padding: var(--space-xxl);
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
}
.info--serie, .info--buddy, .title--user, .info--comment{
    color: var(--background-800);
    font-weight: 900;
}
.title--user{
    font-size: 2.8rem;
}
.info--comment{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-flow: row wrap;
}
.info--serie>.btn--secondary {
    margin-top: var(--space-xl);
}
.info--serie{
    width: 65%;
    /* border: 1px solid black; */
}
.btn--outline_filter {
    margin-top: var(--space-xl);
    background-color: transparent;
    border: 3px solid var(--primary-500);
    border-radius: 10px;
    color: var(--primary-700);
    font-weight: 900;
}
.btn--outline_filter:hover {
    background-color: transparent;
}
.links__buddy {
    display: flex;
    flex-flow: column;
    justify-content: space-between;
    gap: var(--space-l);
    width: 30%;
    /* border: 1px solid black; */
}
.icon {
    display: flex;
    justify-content: center;
    width: 100%;
}
.icons{
    display: flex;
    justify-content: space-around;
    width: 65%;
}
.icons>*{
    width: 32%;
}
.icon--super-buddies{
    gap: var(--space-l);
}
.icon__buddy {
    background-color: var(--gray-200);
    border: 4px solid var(--primary-500);
    border-radius: 50%;
    aspect-ratio: 1/1;
}
.icon_buddy:last-of-type, .icon_chip:last-of-type {
    margin-right: 0;
}
.info--super-buddies{
    text-align: right;
}
/* .info--buddy {
    text-align: right;
    margin-top: var(--space-xl);
} */
.card__post {
    background-color: var(--primary-50);
    display: flex;
    box-shadow: 0 5px 3px 0 var(--primary-500);
}
.form{
    padding: var(--space-xxl);
    border-radius: var(--br-default);
    background-color: var(--primary-50);
    box-shadow: 0 5px 3px 0 var(--primary-500);
}
.card__post-img {
    border-radius: var(--br-default) 0 0 var(--br-default);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: var(--space-xl);
    background-color: var(--white);
    width: 22rem;
}
.img-user-post-wrapper{
    position: relative;
    width: 10rem;
}
.img-user-post{
    width: 100%;
    border-radius: 50%;
    aspect-ratio: 1/1;
    overflow: hidden;
    border: 5px solid var(--primary-500);
}
.img-user-post--serie{
    width: 32.5%;
}
/* .card__post-img>.icon:last-of-type {
    width: 75%;
} */
.icons__chip {
    /* margin-right: var(--space-s); */
    background-color: var(--primary-500);
    border-radius: 50%;
    width: 27.5%;
    aspect-ratio: 1/1;
}
.card__post-comment {
    display: flex;
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: var(--space-m);
    width: 100%;
    padding: var(--space-xxl);
}
.user--responsive {
    display: none;
}
/* ===== TABLET (810px) ===== */
@media screen and (max-width: 810px) {
    .card__post-img {
        border-radius: var(--br-default) 0 0 var(--br-default);
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: var(--space-xl);
        background-color: var(--white);
        width: 18.5rem;
    }
    .card__post-img>.img-fit {
        border: 4px solid var(--primary-500);
        border-radius: 50%;
        aspect-ratio: 1/1;
    }
    .img-user-post-wrapper{
        width: 8.5rem;
    }
}
/* ===== EXTRA (700px) ===== */
@media screen and (max-width: 700px) {
    .card__serie-info{
        gap: var(--space-xxl);
    }
    .title--serie{
        font-size: 5rem;
    }
    .card__post-img {
        border-radius: var(--br-default) 0 0 var(--br-default);
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: var(--space-xl);
        background-color: var(--white);
    }
    .info--super-buddies{
        text-align: center;
    }
    .info--serie, .links__buddy{
        width: 100%;
    }
    .icon__buddy {
        margin-right: var(--space-m);
    }
}
/* ===== PHONE (500px) ===== */
@media screen and (max-width: 500px) {
    .container {
        display: block;
    }
    .title--serie{
        font-size: 4rem;
    }
    .text--serie {
        text-align: left;
    }
    .icon--super-buddies{
        height: 11rem;
    }
    .icon__buddy {
        width: 15%;
    }
    .card__post {
        flex-direction: column;
    }
    .card__post-img {
        width: 100%;
        height: 8.5rem;
        flex-flow: row wrap;
        justify-content: flex-start;
        gap: var(--space-xl);
        border-radius: var(--br-default) var(--br-default) 0 0;
        padding: var(--space-l);
    }
    .card__post-comment {
        padding: var(--space-l);
        gap: var(--space-m);
    }
    .info--comment{
        gap: var(--space-s);
    }
    .img-user-post-wrapper, .img-user-post{
        height: 100%;
        width: auto;
    }
    .title--user{
        font-size: 2.6rem;
    }
    .icons{
        width: 22.5%;
    }
    .user--responsive {
        display: flex;
        flex-direction: column;
    }
    .user--responsive>.icon {
        width: 50%;
    }
}