.notice-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.notice-item {
    border: 1px solid rgba(200, 255, 0, 0.25);
    border-radius: 12px;
    background: rgba(18, 18, 18, 0.88);
    transition: border-color 0.25s ease, transform 0.25s ease;
}

.notice-item:hover {
    border-color: rgba(200, 255, 0, 0.55);
    transform: translateY(-2px);
}

.notice-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    width: 100%;
    padding: 1.1rem 1.2rem;
    color: inherit;
    text-decoration: none;
}

.notice-main {
    min-width: 0;
}

.notice-title {
    margin: 0 0 0.35rem;
    color: #fff;
    font-size: 1.05rem;
    line-height: 1.5;
}

.notice-excerpt {
    margin: 0;
    color: #a7a7a7;
    font-size: 0.92rem;
    line-height: 1.6;
}

.notice-meta {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex-shrink: 0;
}

.notice-date {
    color: #cccccc;
    font-size: 0.9rem;
    letter-spacing: 0.02em;
}

.notice-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    padding: 0.24rem 0.65rem;
    border: 1px solid rgba(200, 255, 0, 0.5);
    color: var(--primary-color);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.notice-note {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: #9c9c9c;
}

.notice-path {
    color: #fff;
    font-family: 'Kanit', 'Jost', sans-serif;
    letter-spacing: 0.02em;
}

.notice-article {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.notice-article-header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(200, 255, 0, 0.18);
}

.notice-article-title {
    margin: 0;
    color: #fff;
    font-size: 1.9rem;
    line-height: 1.35;
}

.notice-body {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.notice-body p {
    margin: 0;
    color: #c5c5c5;
    line-height: 1.9;
}

.notice-body h2 {
    margin: 0;
    color: var(--primary-color);
    font-size: 1.25rem;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .notice-link {
        flex-direction: column;
        align-items: flex-start;
    }

    .notice-meta {
        width: 100%;
        justify-content: space-between;
    }

    .notice-title {
        font-size: 1rem;
    }

    .notice-excerpt {
        font-size: 0.88rem;
    }

    .notice-article-title {
        font-size: 1.45rem;
    }
}
