.article-container {
}
.article-container h1 {
    color: var(--c-primary);
    font-size: 48px;
    font-weight: 700;
    line-height: 52px;
    text-align: left;
    margin-top: 0;
}
.article-container .subtitle {
    font-size: 20px;
    font-weight: 400;
    line-height: 24px;
    color: #000000;
    margin: 23px 0 10px;
}
.article-container .subtitle strong {
    font-weight: 700;
}

.article-container .image {
    margin: 10px 0 16px;
    position: relative;
    visibility: hidden;
    opacity: 0;
}
.article-container .image .arrow-left,
.article-container .image .arrow-right {
    position: absolute;
    z-index: 2;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}
.article-container .image .arrow-left {
    left: 16px;
}
.article-container .image .arrow-right {
    right: 16px;
}
.article-container .thumbnails {
    margin: 16px -5px 24px;
    cursor: pointer;
    visibility: hidden;
    opacity: 0;
}
.article-container .thumbnails img {
    display: block;
    padding: 0 10px;
}

.article-container .title {
    font-family: var(--f-montserrat);
    font-size: 24px;
    font-weight: 700;
    line-height: 30px;
    margin-top: 10px;
}
.article-container p {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}
.article-container p a {
    font-family: var(--f-montserrat);
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    text-decoration: underline;
    color: var(--c-secondary);
}

@media (max-width: 768px) {
    .article-container h1 {
        font-size: 32px;
        font-weight: 700;
        line-height: 32px;
    }
}

/********************************
***********  Tabs   *************
*********************************/
.article-container .tabs {
    display: flex;
    border-bottom: 1px solid #d7d7d5;
}
.article-container .tabs > div {
    font-size: 20px;
    font-weight: 400;
    line-height: 24px;
    color: var(--c-gray);
    padding: 7px 12px;
    position: relative;
    text-align: center;
    cursor: pointer;
}
.article-container .tabs > div::after {
    display: block;
    content: attr(title);
    font-weight: 700;
    height: 0;
    overflow: hidden;
    visibility: hidden;
}
.article-container .tabs .active {
    font-weight: 700;
    color: #000;
    border: 1px solid #d7d7d5;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}
.article-container .tabs div:first-child.active {
    border-top-left-radius: 0;
    border-left: none;
}
.article-container .tabs .active:before {
    content: "";
    position: absolute;
    width: 100%;
    bottom: -3px;
    left: 0;
    height: 3px;
    background-color: #fff;
    z-index: 3;
}
.article-container .tabs-windows {
    display: none;
}
.article-container .tabs-windows.active {
    display: block;
}
