/* Utils */
.row.custom-gutter {
    margin-left: -16px;
    margin-right: -16px;
}

.row.custom-gutter > [class^="col-"],
.row.custom-gutter > [class^=" col-"] {
    padding-left: 16px;
    padding-right: 16px;
}
/* EndUtils */

/* Header */
.page-header {
    padding-top: 92px;
    padding-bottom: 0;
}

.header-overlay-container {
    width: 100%;
    height: auto;
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}

.header-overlay-img {
    width: 100%;
    height: 558px;
    display: block;
    object-fit: cover;
}

.header-overlay-content {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    padding: 16px;
    background: linear-gradient(
        0deg,
        rgba(0, 175, 239, 0.6),
        rgba(0, 175, 239, 0.6)
    );
    border-radius: 4px;
    opacity: 1;
    transition: var(--transition);
}

.header-desc {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
/* End Header */

/* Subhighlight */
#subHighlight {
    margin-top: 64px;
}

.subhigh-img {
    width: 100%;
    height: 306px;
    object-fit: cover;
    margin-bottom: 16px;
    border-radius: 4px;
}

.subhigh-title {
    transition: var(--transition);
}

.subhigh-desc {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.subhigh-item:hover .subhigh-title {
    color: var(--primary);
}
/* End Subhighlight */

/* Articles */
#articles {
    margin-top: 64px;
    overflow-y: hidden;
    max-height: 230vh;
}

.articles-item {
    margin-bottom: 32px;
}

.articles-img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    margin-bottom: 16px;
    border-radius: 4px;
}

.articles-title {
    transition: var(--transition);
    text-transform: capitalize;
}

.articles-desc {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.articles-item:hover .articles-title {
    color: var(--primary);
}

.articles-more-container {
    background: linear-gradient(0deg, #000000 1.9%, rgba(0, 0, 0, 0) 100%);
    position: absolute;
    width: 100%;
    bottom: 0;
    padding-top: 64px;
    padding-bottom: 64px;
    display: flex;
    justify-content: center;
    width: 100%;
}

.articles-more-btn {
    background: #00afef;
    border-radius: 4px;
    font-family: var(--font-2);
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    color: #ffffff;
    padding: 6px 12px;
}
/* End Articles */

@media (max-width: 767.98px) {
    /* Header */
    .page-header {
        padding-top: 120px;
    }

    .header-overlay-content {
        opacity: 1;
    }

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

    /* Subhigh */
    .subhigh-img {
        height: 240px;
    }
    /* End Subhigh */

    /* Articles */
    .articles-img {
        height: 160px;
    }
    /* End Articles */
}

@media (min-width: 768px) and (max-width: 768px) {
    /* Header */
    .page-header {
        padding-top: 148px;
    }

    .header-overlay-content {
        opacity: 1;
    }
    /* End Header */
}
