/* Utils */
.hr-line {
    margin-top: 32px;
    margin-bottom: 32px;
    border-color: var(--border);
}

.article-link {
    transition: var(--transition);
}

.article-link:hover {
    color: var(--primary) !important;
}
/* End Utils */

/* Header */
header {
    padding-top: 112px;
}

.header-img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-radius);
    margin-bottom: 32px;
}
/* Header */

/* Detail */
.prev-btn {
    color: #FFF;
    padding: 8px 16px;
    border-radius: var(--border-radius);
    background: var(--primary);
    font-family: var(--font-1);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    transition: var(--transition);
}

.text-description {
    color: var(--text);
    white-space: pre-line;
    font-family: var(--font-1);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.prev-btn:hover {
    filter: var(--hover-state);
    color: var(--white);
}

.sidebar-sticky {
    position: sticky;
    top: 100px;
}

.social-container {
    width: 100%;
    padding: 8px 16px;
    border-radius: var(--border-radius);
    color: var(--White, #FFF);
    font-family: var(--font-1);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 150% */
    display: flex;
    align-items: center;
    transition: var(--transition);
}

.social-container:hover {
    filter: var(--hover-state);
}

.social-container i {
    font-size: 24px;
}

.social-container.twitter {
    background-color: #00ACEE;
}

.social-container.instagram {
    background-color: #C13584;
}

.social-container.youtube {
    background-color: #F00;
}

.article-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: var(--border-radius);
    margin-bottom: 16px;
}
/* End Detail */


@media (max-width: 997.98px) {

    /* Header */
    .header-img {
        height: 280px;
    }
    /* End Header */

}
