@media (min-width: 1400px) {
    .notice-board {
        max-width: 1070px;
    }
}

.h-100.fill {
    background-color: var(--light-ash);
}

.notice-board .featured-notice {
    border: 1px solid rgba(0, 0 , 0, 0.15);
    border-radius: 5px;
    display: flex;
    background-color: var(--light-ash);
}

.notice-board .featured-notice h2 {
    font-family: "Inter", sans-serif;
    font-size: 40px;
    line-height: 45px;
    font-weight: 200;
}

/* Featured notice image */
.notice-board .featured-notice img {
    height: 408px !important;
    object-fit: cover !important;
    width: 100% !important;
    border-radius: 5px;
}

.notice-board .featured-notice .content {
    padding-left: 30px;
    font-size: 15px;
    font-weight: 300;
    line-height: 25px;
}

.notice-card {
    background-color: var(--light-ash);
}

.notice-board .notice-card .card {
    border-top: none;
}

.notice-card .card .card-body {
    padding: 18px 18px 8px 18px;
}

.notice-board .notice-card img {
    height: 181px !important;
    object-fit: cover !important;
    width: 100% !important;
}

.notice-card h3 {
    font-family: "Inter", sans-serif;
    font-size: 22px;
    line-height: 30px;
    font-weight: 300;
    margin-bottom: 12px;
    padding-bottom: 8px;
}

.notice-card p {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.6;
    margin: 12px 0 10px 0;
}

.notice-board .col-non-featured {
    padding: 0 12px;
}

.notice-body {
    max-width: 350px;
}

.notice-card .card-img-top {
    height: 181px;
    object-fit: cover;
    width: 100%;
}

.featured-notice-item {
    display: flex;
    border: 1px solid rgba(0, 0 , 0, 0.15);
    border-radius: 5px;
}

.notice-board .featured-image {
    width: 50%;
    padding: 0;
}

.notice-board .featured-content {
    width: 50%;
}

/* Small devices (landscape phones, less than 768px) */
@media (max-width: 767.98px) {
    .notice-board .featured-notice {
        flex-direction: column;
    }

    .notice-board .featured-image {
        width: 100%;
    }

    .notice-board .featured-content {
        width: 100%;
    }
    .notice-board .featured-notice .content {
        padding: 18px;
    }
    .notice-board .featured-notice h2 {
        font-size: 25px;
        line-height: 30px;
        font-weight:300;
    }
    .notice-board .featured-notice img {
        height: 181px !important;
    }
}