.announcement-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.announcement-popup {
    background: #fff;
    border-radius: 12px;
    max-width: 798px;
    min-width: 300px;
    width: 92%;
    max-height: 80vh;
    overflow-y: auto;
    padding: 32px 28px 24px;
    position: relative;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}

.announcement-close-btn {
    width: 24px;
    height: 24px;
    padding: 0;
    margin: 0;
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    font-size: 36px;
    cursor: pointer;
    color: #b0b0b0;
    line-height: 1;
}

.announcement-title {
    font-size: 20px;
    font-weight: 600;
    color: #003971;
    margin-bottom: 12px;
}

.announcement-text {
    font-size: 16px;
    line-height: 22px;
    color: #333;
}

.announcement-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid #eee;
}

.announcement-prev-btn,
.announcement-next-btn {
    background: #fff;
    color: #fff;
    border: 1px solid;
    border-radius: 6px;
    width: 36px;
    height: 36px;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .announcement-prev-btn img,
    .announcement-next-btn img {
        width: 24px;
        height: 24px;
    }

    .announcement-prev-btn:disabled,
    .announcement-next-btn:disabled {
        background: #fff;
        opacity: 0.3;
        cursor: not-allowed;
    }

.announcement-page-info {
    font-size: 16px;
    color: #666;
}

.announcement-img-wrapper {
    text-align: center;
    margin-bottom: 16px;
}

    .announcement-img-wrapper img {
        max-width: 100%;
        height: auto;
        border-radius: 8px;
        object-fit: cover;
    }

.announcement-text {
    font-size: 16px;
    line-height: 22px;
    color: #333;
    margin-bottom: 20px;
}

.detail-btn {
    display: flex;
    gap: 8px;
    width: fit-content;
    height: fit-content;
    justify-content: flex-start;
    align-items: center;
    background: #004990;
    color: #fff;
    font-size: 16px;
    text-align: start;
    word-wrap: break-word;
    text-decoration: none;
    line-height: 22px;
    padding: 10px 16px;
    border-radius: 8px;
    border: 0px solid transparent;
    text-decoration: none;
    text-align: center;
    transition: background 0.2s ease;
}

    .detail-btn:hover {
        background: #00509e;
        color: #fff;
    }
