.article-detail-card-container {
    display: flex;
    flex-direction: column;
    border-radius: 16px;
    background-color: #FFFFFE;
    padding: 48px;
}

.sticky-col {
    position: sticky;
    top: 6rem;
}

.article-header {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.article-header-title-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.article-tag {
    display: inline-block;
    border: 1px solid #E0F0F8;
    background: #EFF7FC;
    color: #02659E;
    border-radius: 8px;
    padding: 6px 9px 6px 7px;
    white-space: nowrap;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.main-article-title {
    color: #111418;
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.article-synopsis {
    color: #424B57;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.article-header-misc-container {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.article-misc {
    display: flex;
    align-items: center;
    gap: 8px;
}

.divider {
    border: none;
    border-top: 2px solid #E8E8E8;
    margin: 24px 0;
}

.main-article-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.p-side-title {
    color: #111418;
    font-size: 19px;
    font-style: normal;
    font-weight: 500;
    margin: 0;
}

.side-section-container {
    display: flex;
    flex-direction: column;
    padding: 32px 0;
    gap: 16px;
}

.padding-btm-0 {
    padding-bottom: 0;
}

.pdf-not-supported-icon-text-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    color: #424B57;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
}

.download-button {
    border-radius: 38px;
    border: 1px solid #2382A4;
    background: #FFF;
    padding: 9px 15px;
    width: 100%;
    color: #2382A4;
}

/*share article css*/
.share-buttons-container {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.share-button {
    border-radius: 50%;
    color: white;
    border: none;
    width: 40px;
    height: 40px;
}

.facebook-background {
    background-color: #4267B2;
}

.twitter-background {
    background-color: #000000;
}

.whatsapp-background {
    background-color: #24D366;
}

.mail-background {
    background-color: #FFB200;
}

.print-background {
    background-color: #945EB1;
}

/*latest articles section css*/
.no-decor {
    text-decoration: none !important;
}

.latest-articles-cards-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.latest-article-card {
    background: #FFFFFE;
    border-radius: 8px;
}

.latest-article-img {
    border-radius: 8px 8px 0 0;
    width: 100%;
}

.latest-article-info-container {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 16px;
}

.latest-article-title {
    color: #111418;
    font-size: 19px;
    font-style: normal;
    font-weight: 700;
}

.latest-article-misc-container {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    color: #424B57;
}

/*article disclaimer css*/
.article-disclaimer {
    color: #6E6E6E;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

/*mobile view css*/
@media (max-width: 768px) {
    .article-detail-card-container {
        padding: 16px 8px;
    }

    .main-article-col {
        background-color: #FFFFFE;
    }

    .hide-when-mobile-view {
        display: none;
    }

    .show-when-mobile-view {
        display: block !important;
    }
}