:root {
    --smoke-white: #e5e5e5;
}

/* INICIO '.ARTICLE' ===============================================================> */

.article__section {
    max-width: 1000px;
    padding: 0;
}

.article__ubication {
    display: flex;
    align-items: center;
}

.ubication__link {
    font-size: var(--size-400);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.ubication__link:last-of-type {
    text-decoration: none;
}

.ubication__link:hover {
    color: var(--blue-medium);
}

.article__title {
    font-family: var(--regular-font);
    font-size: var(--size-800);
}

.ubication__img {
    width: 1.2rem;
    height: 1.2rem;
}

.article__img {
    max-width: 1000px;
    max-height: 500px;
    overflow: hidden;
}

.article__img img {
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.article__img img:hover {
    transform: scale(1.05);
}

.article__group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.article__date {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.date__profile {
    padding-left: 0.1rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.date__img img {
    width: 1.6rem;
    aspect-ratio: 0.67;
    object-fit: cover;
    object-position: top;
    border-radius: 100%;
}

.data {
    display: flex;
    flex-direction: column;
}

.data h2 {
    width: 100%;
    font-size: var(--size-300);
    text-transform: uppercase;
}

.data span {
    font-size: var(--size-300);
}

.article__navigation {
    max-width: 600px;
    padding: 1.4rem 1rem;
    border-radius: 1rem;
    border: 1px solid var(--grey-light);
}

.navigation__title {
    font-weight: bold;
}

.navigation__list {
    padding-left: 0rem;
}

.navigation__list li a {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: var(--size-400);
    transition: color 0.3s ease;
}

.navigation__list li a:hover {
    color: var(--blue-light);
}

.navigation__list li + li,
.navigation__list > li > ul {
    margin-top: 0.5rem;
}

.navigation__list > li > ul > li > a {
    margin-left: 1rem;
    font-family: var(--light-font);
    color: var(--grey-medium);
}

.highlated__list {
    max-width: 1000px;
    padding: 1.2rem 0.6rem 1.2rem 2.4rem;
    list-style: lower;
    border: 1px solid var(--grey-light);
    border-left: 4px solid var(--blue-light);
}

.content__container {
    display: flex;
    gap: 32px;
    padding: 0 16px 16px 8px;
    overflow: auto;
    scroll-snap-type: x mandatory;
}

.cards-container--fill {
    padding: 0.4rem;
}

.top5__card {
    padding: 1.2rem 1rem;
    display: flex;
    flex-direction: column;
    border-radius: 0.6rem;
    border: 2px solid var(--grey-light);
    transition: transform 0.3s ease;
}

.top5__card:hover {
    transform: translateY(-1rem);
}

.top5__content--top {
    position: relative;
    height: 16rem;
}

.top5__content--img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0.6rem;
    border: 2px solid var(--grey-light);
}

.top5__ribbon {
    position: absolute;
    top: 1rem;
    padding: 0.2rem 0.6rem;
    min-width: 30%;
    display: grid;
    place-items: center;
    border-radius: 0 0.156em 0.156em 0;
    background-color: var(--blue-medium);
}

.top5__ribbon::before, 
.top5__ribbon::after {
    position: absolute;
    content: '';
}

.top5__ribbon::before {
    top: 0;
    left: -0.469em;
    width: 0.469em;
    height: 100%;
    padding: 0 0 0.438em;
    border-radius: 0.313em 0 0 0.313em;
    background: var(--blue-medium);
}

.top5__ribbon::after {
    bottom: -0.313em;
    left: -0.313em;
    width: 0.313em;
    height: 0.313em;
    border-radius: 0.313em 0 0 0.313em;
}

.top5__ribbon--text {
    color: #fff;
    font-size: 0.8rem;
}

.top5__content--middle {
    flex-grow: 1;
}

.top5__content--header > .text-link {
    color: var(--blue-medium);
}

.top5__list {
    list-style: url(/assets/icons/components/blog/articulos/top-5/check.svg);
    padding-left: 1.3rem;
}

.top5__list li {
    font-size: var(--size-400);
}

.top5__list .text-link {
    font-size: var(--size-400);
    color: var(--blue-medium);
}

.tag__link {
    font-size: var(--size-400);
}

.article__share-banner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

@media screen and (min-width: 900px) {
    .cta__banner {
        display: none;
    }
}

/* FINAL '.ARTICLE' ================================================================> */
/* INICIO '.ASIDE' =================================================================> */

.aside__title {
    position: relative;
    font-size: var(--size-700);
    line-height: 1.2;
}
  
.aside__title::before {
    content: "";
    position: absolute;
    top: 105%;
    width: 10%;
    left: 0;
    height: 3px;
    border-radius: 2px;
    background: linear-gradient(to right, var(--blue-light), var(--blue-light));
}

.aside__articles {
    padding: 0;
}

@media screen and (min-width: 900px) {
    .aside__title {
        font-size: var(--size-500);
    }
}

/* FINAL '.ASIDE' ==================================================================> */
/* INICIO 'ASIDE ARTICLES' =========================================================> */

.article__card {
    margin-bottom: 2rem;
}

.ribbon {
    display: none;
}

/* FINAL 'ASIDE ARTICLES' ==========================================================> */