.notice {
    background-color: var(---content-bg-color);
    padding: 20px;
}
.notice .container .notices-title {
    font-family: var(---outfit-font);
    font-size: var(---title-font);
    font-weight: bold;
    color: var(---menu-bg-color);
    margin-bottom: 15px;
}
.notice .container .notices-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.notice-content {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.notice-content > * {
    flex: 0 0 315px;
    box-sizing: border-box;
}

.notice-content-item {
    background-color: white;
    border-radius: 10px;
    padding: 5px;
    width: 315px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    justify-content: space-between;
}

.notice-content-item .new-date {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.notice-content-item .new-date .new .new-badge {
    background-color: red;
    color: white;
    font-weight: bold;
    font-size: 10px;
    margin-right: 5px;
    padding: 2px 5px;
    border-radius: 5px;
    animation: blink 1s infinite;
}

.notice-content-item .new-date .date {
    background-color: grey;
    font-size: var(---top-menus);
    color: white;
    padding: 2px 5px;
    border-radius: 5px;
}

.notice-content-item .pdf-detail {
    display: flex;
    /* align-items: center; */
    gap: 5px;
}

.notice-content-item .pdf-detail .pdf-icon img {
    width: 20px;
    height: 25px;
}

.notice-content-item .pdf-detail .detail a {
    font-family: var(---outfit-font);
    /* color: var(---text-color); */
    color: black;
    font-weight: 100;
    transition: color 0.3s ease;
    line-height: 0px;
}

.notice-content-item .pdf-detail .detail a:hover {
    color: var(---menu-bg-color);
}

/* MOBILE VIEW MEDIA QUERY */
@media (max-width: 768px) {
    .notice {
        padding: 20px 0;
    }
    .notice-content > * {
        flex: 0 0 100%;
        box-sizing: border-box;
        justify-content: space-between;
    }
}

/* TABLET VIEW */
@media (min-width: 768px) and (max-width: 1024px) {
    .notice-content > * {
        flex: 0 0 300px;
        box-sizing: border-box;
    }
}
