.notice-card
{
    display: flex;
    background-color: #f3f3f3;
    padding: 1rem;
    margin-bottom: 1rem;
    transition: background-color 0.2s ease-in-out, box-shadow 0.3s ease-in-out;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
}

.notice-item-link:hover .notice-card
{
    background-color: #ffffff;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.12);
    border-color: #d5d5d5;
}

.thumb-wrapper
{
    width: 100px;
    height: 100px;
    overflow: hidden;
    flex-shrink: 0;
    margin-right: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.notice-thumb
{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.notice-body
{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
    position: relative;
    padding-right: 6rem;
}

.notice-top
{
    display: flex;
    align-items: center;
}

.notice-seq
{
    color: #555555;

    width: 28px;
    height: 28px;

    font-size: 0.9rem;
    font-weight:380;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-right: 0.6rem;
    flex-shrink: 0;

    transform: translateY(3px);
}


.notice-title
{
    font-size: 1rem;
    font-weight: 400;
    margin-top: 0.3rem;
    margin-left: 0.2rem;
    color: #333333;
}

.notice-date
{
    font-size: 0.875rem;
    color: #7e7e7e;
    position: absolute;
    bottom: 0;
    right: 0.2rem;
    white-space: nowrap;
}

.pagination
{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.25rem;
    margin-top: 2rem;
    list-style: none;
    padding-left: 0;
}

.page-item
{
    display: inline-block;
}

.page-link
{
    color: #5a558b;
    background-color: #ffffff;
    border: 1px solid #d8cfc4;
}

.page-link:hover
{
    background-color: #f4ede6;
    color: #6c5a44;
    border-color: #c9b9a7;
}

.page-item.active .page-link
{
    background-color: #5a558b;
    color: #ffffff;
    border-color: #5a558b;
}

.page-item.disabled .page-link
{
    color: #b9b0a5;
    background-color: #f1efec;
    border-color: #e4ded7;
}

.btn-notice-back
{
    background-color: #484368;
    color: #ffffff;
    border: 1px solid #484368;
    padding: 0.45rem 1.1rem;
    transition: background-color 0.15s ease, transform 0.1s ease;
}

.btn-notice-back:hover
{
    background-color: #ffffff !important;
    color: #000000 !important;
}

.btn-notice-more
{
    display: inline-block;
    background-color: #f3f3f3;
    color: #111827d8;
    padding: 6px 12px;
    border-radius: 8px;
    border: 1px solid #d1d5db;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.25s ease;
}

.btn-notice-more:hover
{
    background-color: #e5e7eb;
    border-color: #a7afb9;
    transform: translateY(-2px);
}

@media (max-width: 768px)
{
    .notice-seq
    {
        display: none;
    }
}