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

.navbar-marketing {
    box-shadow: 0px 1px 8px rgba(0, 0, 0, 0.1) !important;
    border-bottom: 1px solid #F1F1F1 !important;
    background-color: white !important;
}

.header-img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: var(--border-radius);
}

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

/* Cari berita */
#cariBerita {
    margin-top: 56px;
}
/* End Cari berita */

/* Section divider */
.section-divider {
    margin-top: 32px;
    margin-bottom: 32px;
    border-color: var(--border-color);
}
/* End Section divider */

/* Berita terbaru */
#beritaTerbaru {
    margin-top: 56px;
}

.beter-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--border-radius);
    margin-bottom: 24px;
    transition: var(--transition);
}

.beter-item:hover .beter-img {
    box-shadow: var(--shadow);
}

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

.beter-item h3 {
    transition: var(--transition);
}

.beter-item:hover h3 {
    color: var(--primary);
}

.beter-gutter {
    margin-left: -16px;
    margin-right: -16px;
}

.beter-gutter > [class^="col-"],
.beter-gutter > [class^=" col-"] {
    padding-left: 16px;
    padding-right: 16px;
    margin-bottom: 32px;
}

.not-found-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 32px;
}

.not-found-container .not-found-img {
    width: 200px;
}
/* End Berita terbaru */

@media (max-width: 767.98px) {

    /* Header */
    .header-img {
        width: 100%;
        height: 220px;
        margin-bottom: 24px;
    }
    /* End Header */

    /* Berita terbaru */
    .beter-item {
        padding-bottom: 24px;
        border-bottom: 1px solid var(--border-color);
    }

    .beter-img {
        height: 180px;
    }

    #cariBerita form {
        justify-content: space-between;
    }

    #cariBerita form .form-control {
        width: 70% !important;
        padding-left: 12px;
        height: 45px;
        font-size: 16px;
    }
    /* End Berita terbaru */
}


@media (min-width: 768px) and (max-width: 991.98px) {

    /* Berita terbaru */
    .beter-item {
        border-bottom: 1px solid var(--border-color);
    }

    .beter-img {
        height: 180px;
    }
    /* End Berita terbaru */
}
