/* =====================================================
   AISLING KOREA - Notice Page Styles (Premium Editorial)
   ===================================================== */

/* =====================================================
   Notice List Section
   ===================================================== */
.notice-section {
    padding: 120px 0;
    background: #ffffff;
}

.notice-list {
    margin-top: 40px;
    border-top: 2px solid #1a1a1a;
}

.notice-item {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 32px 0;
    border-bottom: 1px solid #e0e0e0;
    transition: background 0.3s ease;
}

.notice-item:hover {
    background: #f5f5f5;
    padding-left: 24px;
    padding-right: 24px;
    margin: 0 -24px;
}

.notice-item:first-child {
    border-top: none;
}

.notice-date {
    flex-shrink: 0;
    width: 120px;
    font-family: var(--s-font-display, 'Playfair Display', serif);
    font-size: 1.1rem;
    color: var(--s-color-primary);
}

.notice-content {
    flex: 1;
    min-width: 0;
}

.notice-title {
    font-size: 1.15rem;
    font-weight: 500;
    color: #1a1a1a;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color 0.3s ease;
}

.notice-title a {
    color: inherit;
    text-decoration: none;
}

.notice-item:hover .notice-title {
    color: var(--s-color-primary);
}

.notice-arrow {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999999;
    border: 1px solid transparent;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.notice-item:hover .notice-arrow {
    background: #ffffff;
    border-color: #eeeeee;
    color: var(--s-color-primary);
    transform: translateX(4px);
}

.notice-arrow svg {
    width: 18px;
    height: 18px;
}

.notice-empty {
    text-align: center;
    padding: 80px 0;
    color: #999999;
    font-size: 1.05rem;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 64px;
}

.pagination-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    font-size: 1rem;
    font-weight: 500;
    color: #666666;
    background: transparent;
    border: 1px solid transparent;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pagination-btn:hover {
    color: var(--s-color-primary);
    background: #f5f5f5;
}

.pagination-btn.active {
    color: #ffffff;
    background: var(--s-color-primary);
    border-color: var(--s-color-primary);
}

.pagination-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    background: transparent;
}

.pagination-btn svg {
    width: 18px;
    height: 18px;
}

/* =====================================================
   Responsive Styles
   ===================================================== */
@media (max-width: 991px) {
    .notice-section {
        padding: 80px 0;
    }
}

@media (max-width: 767px) {
    .notice-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding: 24px 0;
    }

    .notice-item:hover {
        padding-left: 16px;
        padding-right: 16px;
        margin: 0 -16px;
    }

    .notice-date {
        width: auto;
        font-size: 1rem;
    }

    .notice-title {
        font-size: 1.05rem;
        white-space: normal;
    }

    .notice-arrow {
        display: none;
    }
}