/* Press Release Container */
.press-release-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;font-family: 'Roboto', sans-serif;
}

/* Header Section */
.press-release-header {
    margin-bottom: 50px;
}

.press-release-header .page-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #222;
}

/* Category Filter Buttons */
.category-filter-buttons {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;justify-content:flex-end;margin:0; padding:0
}

.filter-btn {
     display:inline-block;
     padding: 12px 14px;
    background-color: #f2f2f2;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 18px;
    font-weight: normal;
    font-family:'Roboto';text-transform:none;
    color: #333;
    border:1px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
}

.filter-btn:hover {
    background-color: #009fe3;
    border-color: #009fe3;font-weight: 600;
    color: #fff;
}

.filter-btn.active {
    background-color: #009fe3;
    border-color: #009fe3;font-weight: 600;
    color: #fff;
}

.filter-btn.active:hover {
    background-color: #009fe3;
    border-color: #009fe3;font-weight: 600;
}

/* Press Release List */
.press-release-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.press-release-item {
    padding: 30px;
    background-color: #fff;
    border: 1px solid #e6e6e6;
    border-radius: 8px;
    transition: all 0.3s ease;
    opacity: 1;
}

.press-release-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-color: #d0d0d0;
}

.press-release-item.hidden {
    display: none;
}

/* Press Item Content */
.press-item-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.press-date {
    font-size: 18px;
    color: #999;
}

.press-category {
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.press-category.news-ko, .press-category.news-en{
    background-color: #e3f2fd;
    color: #1976d2;
}

.press-category.notice-ko, 
.press-category.notice-en{
    background-color: #f3e5f5;
    color: #7b1fa2;
}

.press-item-title {
    margin-bottom: 12px;
}

.press-item-title a {
    font-size: 22px;
    font-weight: 600;
    color: #222;
    text-decoration: none;
    transition: color 0.2s ease;
}

.press-item-title a:hover {
    color: #2c3e50;
}

.press-item-excerpt {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
}

/* Pagination */
.press-pagination {
    display: flex;
    justify-content: center;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #e5e5e5;
}

.pagination-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
}

.page-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 6 10px;
    background-color: #f5f5f5;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
}

.page-link:hover:not(.disabled):not(.current) {
    background-color: #f5f5f5;
    color: #333;
}

.page-link.current {
    background-color: #009fe3;
    color: #fff;
    cursor: default;
}

.page-link.disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.page-link.prev-link,
.page-link.next-link {
    font-size: 18px;
    font-weight: 600;
}

.page-dots {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    color: #999;
    font-weight: 500;
}

/* Loading State */
.press-release-list.loading {
    opacity: 0.5;
    pointer-events: none;
}

/* No Results Message */
.no-results {
    text-align: center;
    padding: 60px 20px;
}

.no-results p,
.no-posts p {
    font-size: 16px;
    color: #999;
}

/* Fade Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.press-release-item.fade-in {
    animation: fadeIn 0.4s ease forwards;
}

/* Responsive Design */
@media (max-width: 767px) {
    .press-release-container {
        padding: 60px 15px;
    }
.press-release-header {justify-content:flex-end}
    .press-release-header .page-title {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .category-filter-buttons {
        gap: 8px;justify-content:flex-end;
    }

    .filter-btn {
        font-size: 18px;
    }

    .press-release-item {
        padding: 20px;
    }

    .press-item-title a {
        font-size: 18px;
    }
h2 {line-height:18px!important;}
    .press-item-excerpt {
        font-size: 14px;
    }

    .press-pagination {
        margin-top: 40px;
        padding-top: 20px;
    }

    .pagination-wrapper {
        gap: 6px;
    }

    .page-link {
        min-width: 36px;
        height: 36px;
        padding: 0 10px;
        font-size: 13px;
    }

    .page-dots {
        min-width: 30px;
    }
}

@media (max-width: 480px) {
    .press-release-header .page-title {
        font-size: 24px;
    }

    .press-item-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    .press-item-excerpt {
        display:none;
    }
    .pagination-wrapper {
        gap: 4px;
    }

    .page-link {
        min-width: 32px;
        height: 32px;
        padding: 0 8px;
        font-size: 12px;
    }

    .page-link.prev-link,
    .page-link.next-link {
        font-size: 16px;
    }

    .page-dots {
        min-width: 24px;
        font-size: 12px;
    }
}