.home-news-section {
    /*padding: 50px 0 60px;*/
    background: #ffffff;
}

.home-news-container {
    max-width: 100%;
    margin: 0 auto;
}

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

.home-news-title {
    font-size: 32px;
    font-weight: 700;
    color: #212121;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
}

.home-news-nav {
    display: flex;
    align-items: center;
    gap: 12px;
}

.home-news-view-all {
    font-size: 13px;
    font-weight: 600;
    color: #00acc1;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.2s ease;
}

.home-news-view-all:hover {
    color: #008ba3;
}

.home-news-arrow {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: #666666;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}

.home-news-arrow:hover {
    background: #f5f5f5;
    color: #212121;
}

.home-news-arrow:active {
    transform: scale(0.95);
}

.home-news-slider-wrapper {
    position: relative;
    overflow: hidden;
}

.home-news-slider {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 10px 0 20px;
}

.home-news-slider::-webkit-scrollbar {
    display: none;
}

.home-news-card {
    flex: 0 0 calc(33.333% - 16px);
    min-width: 350px;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #e8ecef;
}

.home-news-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
    border-color: transparent;
}

.home-news-card-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
}

.home-news-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.home-news-card:hover .home-news-card-image img {
    transform: scale(1.05);
}

.home-news-views {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(255, 255, 255, 0.95);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: #212121;
    display: flex;
    align-items: center;
    gap: 4px;
}

.home-news-views svg {
    width: 14px;
    height: 14px;
}

.home-news-card-content {
    padding: 20px;
}

.home-news-date {
    display: block;
    font-size: 12px;
    color: #999999;
    margin-bottom: 10px;
    font-weight: 500;
}

.home-news-card-title {
    font-size: 16px;
    font-weight: 700;
    color: #212121;
    margin-bottom: 10px;
    line-height: 1.4;
}

.home-news-card-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.home-news-card-title a:hover {
    color: #00acc1;
}

.home-news-card-excerpt {
    font-size: 14px;
    color: #666666;
    line-height: 1.6;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@media (max-width: 1199px) {
    .home-news-card {
        flex: 0 0 calc(50% - 18px);
        min-width: 300px;
    }
}

@media (max-width: 767px) {
    .home-news-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    
    .home-news-title {
        font-size: 24px;
    }
    
    .home-news-nav {
        width: 100%;
        justify-content: space-between;
    }
    
    .home-news-card {
        flex: 0 0 calc(100% - 24px);
        min-width: 280px;
    }
}
