/* ========================================
   News Section
   ======================================== */

.news-section {
    padding: 100px 40px;
    background-color: #f5f5f5;
}

.news-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.news-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.news-controls {
    display: flex;
    align-items: center;
    gap: 30px;
}

.news-scroll-buttons {
    display: flex;
    gap: 10px;
}

.news-scroll-btn {
    width: 40px;
    height: 40px;
    border: 1px solid #000;
    background: #fff;
    cursor: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
}

.news-scroll-btn:hover {
    background: #000;
    color: #fff;
}

.news-scroll-btn:disabled {
    opacity: 0.3;
    cursor: none;
}

.news-scroll-btn:disabled:hover {
    background: #fff;
    color: #000;
}

.view-all {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: #000;
    text-decoration: none;
    transition: gap 0.3s ease;
}

.view-all:hover {
    gap: 15px;
}

.view-all::after {
    content: '→';
    font-size: 18px;
}

.news-list-wrapper {
    position: relative;
}

.news-list {
    display: flex;
    gap: 40px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 20px;
    cursor: none;
    user-select: none;
}

.news-list:active {
    cursor: none;
}

.news-list::-webkit-scrollbar {
    height: 3px;
}

.news-list::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
}

.news-list::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.2);
}

.news-item {
    min-width: 350px;
    cursor: none;
    transition: opacity 0.3s ease;
}

.news-item:hover {
    opacity: 0.7;
}

.news-item-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.news-item-link:hover {
    text-decoration: none;
}

.news-image-wrapper {
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    margin-bottom: 20px;
    background: #f0f0f0;
}

.news-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    user-select: none;
    -webkit-user-drag: none;
    display: block;
}

.news-date {
    font-size: 11px;
    font-weight: 600;
    color: #999;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
    user-select: none;
}

.news-title {
    font-size: 12px;
    font-weight: 500;
    line-height: 1.6;
    color: #000;
    margin-bottom: 0;
    user-select: none;
}

.news-description {
    display: none;
}

/* ========================================
   News Archive Page
   ======================================== */

.news-archive-section {
    padding: 100px 40px;
    background-color: #fff;
}

.news-archive-container {
    max-width: 1200px;
    margin: 0 auto;
}

.news-archive-section .section-title {
    margin-bottom: 50px;
    text-align: center;
    font-size: 48px;
    font-weight: 700;
    letter-spacing: 2px;
}

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

/* ========================================
   Responsive Design
   ======================================== */

@media (max-width: 1024px) {
    .news-date {
        font-size: 12px;
    }
}

@media (max-width: 1024px) {
    .news-title {
        font-size: 13px;
    }
}
