.padding-container {
    padding-left: 50px;
    padding-right: 50px;
}

.main__container {
    display: flex;
    justify-content: space-between;
    padding: 0 0 80px;
}

.articulo {
    width: calc(100% - 330px);
}

.articulo__cover {
    width: 100%;
    height: calc(300px + 20vw);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    margin-bottom: 40px;
}

.tag {
    margin-bottom: 30px;
}

.tag__btn {
    border: 1px solid #000;
    padding: 10px 30px;
    text-transform: uppercase;
    margin-right: 5px;
    border-radius: 3px;
    font-size: 16px;
}

.tag__btn--blue {
    border: 1px solid var(--tertiary-color);
    color: var(--tertiary-color);
}

    .tag__btn--blue:hover {
        background-color: var(--tertiary-color);
        color: #fff;
    }

.tag__btn--purple {
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
}

    .tag__btn--purple:hover {
        background-color: var(--primary-color);
        color: #fff;
    }

.articulo__title {
    color: var(--tertiary-color);
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 38px;
}

.articulo__content p {
    margin-bottom: 20px;
    font-size: 16px;
}
/* END ARTICULO */

.aside {
    width: 300px;
}

.aside__title {
    font-size: 15px;
    margin-bottom: 10px;
}

.aside__share {
    margin-bottom: 10px;
}

.aside__share-link {
    display: inline-block;
    margin-right: 5px;
}

.aside__share-image {
    max-width: 24px;
}

.aside__share,
.aside__featured {
    padding: 20px 30px;
    box-shadow: 0 0 10px 2px #00000008;
}

.aside__featured-item {
    display: flex;
    flex-wrap: wrap;
    border-bottom: 1px solid #0001;
    padding: 20px 0;
    align-items: center;
}

.aside__featured-thumbnail,
.aside__featured-title {
    width: 50%;
}

.aside__featured-thumbnail {
    max-width: 100px;
    margin-right: 10px;
    height: 80px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.aside__featured-title {
    font-size: 16px;
    font-weight: 500;
    color: #000;
}
/* END ASIDE */

.relacionados {
    background-color: var(--secondary-background-color);
    padding: 80px 50px;
}

.relacionados__title {
    font-weight: bold;
    margin-bottom: 50px;
}

.relacionados__item {
    width: 100%;
    max-width: 450px;
    display: inline-block;
}

.relacionados__thumbnail {
    width: 100%;
    height: 250px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.relacionados__item-details {
    background-color: #fff;
    padding: 20px 30px;
}

.relacionados__share-link {
    display: inline-block;
    margin-bottom: 30px;
}

.relacionados__share-image {
    max-width: 24px;
}

.relacionados__subtitle,
.relacionados__subtitle a {
    color: var(--tertiary-color);
    font-size: 18px;
    margin-bottom: 15px;
}

.relacionados__content {
    font-size: 18px;
    color: #000;
}

@media screen and (max-width: 991px) {
    .relacionados,
    .padding-container {
        padding-left: 30px;
        padding-right: 30px;
    }

    .main__container {
        flex-wrap: wrap;
    }

    .articulo,
    .aside {
        width: 100%;
    }

    .articulo {
        margin-bottom: 50px;
        margin-top: 30px;
    }
}

.relacionados__share {
    position: relative;
    cursor: pointer;
}

.relacionados__share--social-links {
    height: 35px;
    width: 0;
    position: absolute;
    left: 10%;
    top: 20%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    overflow: hidden;
    background-color: #fff;
    transition: width .3s, box-shadow .3s;
}

.relacionados__share--social-links--active {
    box-shadow: 0 0 3px 0.3px #0003;
    width: 150px;
}

.relacionados__share--link-icon {
    width: 20px;
    margin-right: 5px;
}