.notice-list {
    padding: 0;
    margin: 0;
}

.notice-item {
    margin-bottom: 20px;
    padding-left: 20px;
    border-left: 2px solid #f4a300;
}

.notice-date {
    display: block;
    font-size: 12px;
    color: #cccccc;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.notice-title {
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    color: #303030;
}

#notice-ticker {
    width: 100%;
    overflow: hidden
}

#notice-ticker ul {
    display: inline-block;
    white-space: nowrap;
    margin: 0;
    padding: 0;
    animation: ticker 30s linear infinite
}

#notice-ticker ul:hover {
    animation-play-state: paused
}

#notice-ticker li {
    display: inline-block;
    padding: 0 15px;
    border-right: 1px solid #297ea9
}

#notice-ticker li:first-child {
    padding-left: 100px!important
}

#notice-ticker li:last-child {
    border-right: none
}

@keyframes ticker {
    0% {
        transform: translateX(0)
    }

    100% {
        transform: translateX(-100%)
    }
}
.notice-card {
    position: relative;
    overflow: hidden;
}

.notice-ribbon {
    position: absolute;
    top: 19px;
    right: -56px;
    background: linear-gradient(135deg, #d4af37, #f5d76e);
    color: #000;
    padding: 3px 45px;
    font-size: 10px;
    font-weight: 600;
    transform: rotate(46deg);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.25);
    z-index: 10;
    text-transform: unset;
}
.notice-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
}

.notice-view-btn {
    transition: all 0.3s 
ease;
    background-color: transparent;
    font-weight: 600;
    color: #fff;
    text-transform: capitalize;
    font-family: Open Sans;
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
}

.notice-view-btn:hover {
    color: #D2AE6D;
}

.notice-3col-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.notice-3col-card {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.notice-3col-card .notice-title {
    font-size: 18px;
    margin-bottom: 10px;
}

.notice-3col-card .notice-desc {
    font-size: 14px;
    margin-bottom: 12px;
}

.notice-3col-card .notice-date {
    display: block;
    font-size: 13px;
    color: #666;
    margin-bottom: 12px;
}

.notice-pdf-btn {
    display: inline-block;
    padding: 8px 14px;
    background: #b38b2e;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
}

.notice-pdf-btn:hover {
    background: #8d6f1f;
}

/* Responsive */
@media (max-width: 991px) {
    .notice-3col-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .notice-3col-grid {
        grid-template-columns: 1fr;
    }
}
