

.newsroom-main {
    padding-top: 80px;
    background-color: #f5f5f7;
    min-height: 100vh;
    padding-bottom: 80px;
}

.newsroom-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.newsroom-page-header {
    text-align: center;
    padding: 40px 0 60px;
}
.newsroom-page-header h1 {
    font-size: 3.5rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: #1d1d1f;
    margin: 0 0 10px 0;
}
.newsroom-page-header p {
    font-size: 1.2rem;
    color: #86868b;
    margin: 0;
}


.news-card {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    text-decoration: none;
    color: #1d1d1f;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.news-card:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.news-image-wrapper {
    width: 100%;
    overflow: hidden;
}
.dummy-bg {
    width: 100%;
    height: 100%;
    background-color: #e5e5ea;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}
.news-card:hover .dummy-bg {
    transform: scale(1.03);
}

.news-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.news-category {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: #6e6e73;
    margin-bottom: 12px;
}
.news-title {
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 1.3;
    margin: 0 0 20px 0;
    flex-grow: 1;
}
.news-date {
    font-size: 0.85rem;
    color: #86868b;
    font-weight: 500;
}


.hero-card {
    margin-bottom: 40px;
}
.hero-card .news-image-wrapper {
    height: 500px;
}
.hero-card .news-title {
    font-size: 2.2rem;
}


.news-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.news-grid .news-image-wrapper {
    aspect-ratio: 16 / 10;
}


.hidden-article {
    display: none !important;
}

.load-more-container {
    text-align: center;
    margin-top: 60px;
    padding-bottom: 20px;
}

.load-more-btn {
    background-color: transparent;
    color: #1d1d1f;
    border: 1px solid #1d1d1f;
    padding: 12px 30px;
    border-radius: 980px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.load-more-btn:hover {
    background-color: #1d1d1f;
    color: #ffffff;
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #d2d2d7;
}

.page-numbers {
    display: flex;
    gap: 10px;
}

.page-num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1rem;
    font-weight: 500;
    color: #1d1d1f;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.page-num:hover {
    background-color: #f5f5f7;
}

.page-num.current {
    background-color: #1d1d1f;
    color: #ffffff;
    cursor: default;
}

.page-nav {
    font-size: 1rem;
    font-weight: 500;
    color: #000;
    text-decoration: none;
}

.page-nav:hover {
    text-decoration: underline;
}

.page-nav.disabled {
    color: #d2d2d7;
    pointer-events: none;
}
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
.news-grid .news-card {
    opacity: 1;
}


@media (max-width: 768px) {
    .newsroom-page-header h1 { font-size: 2.5rem; }
    
    .hero-card .news-image-wrapper { height: 300px; }
    .hero-card .news-title { font-size: 1.6rem; }
    
    .news-grid {
        display: grid !important;
        grid-template-columns: 1fr !important; 
        gap: 20px;
    }
    
    .news-grid .news-image-wrapper {
        aspect-ratio: 16 / 9;
    }
    .news-content { padding: 20px; }

    .more-news-card { height: 160px; }
    .more-news-title { font-size: 1.3rem; }
}