/**
 * お知らせセクションのスタイル
 */

.rushian-news-list {
    display: flex !important;
    gap: 2rem !important;
    overflow-x: auto !important;
    padding: 1rem 0 !important;
}

.news-item {
    flex: 0 0 auto !important;
    width: 300px !important;
    background: #ffffff !important;
    border: 1px solid #e0e0e0 !important;
    border-radius: 8px !important;
    padding: 1.5rem !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}

.news-item:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
}

.news-date {
    display: block !important;
    color: #8B7355 !important;
    font-size: 0.85rem !important;
    margin-bottom: 0.5rem !important;
}

.news-title {
    font-size: 1rem !important;
    line-height: 1.5 !important;
    margin: 0 0 0.75rem 0 !important;
}

.news-title a {
    color: #333333 !important;
    text-decoration: none !important;
    transition: color 0.3s ease !important;
}

.news-title a:hover {
    color: #8B7355 !important;
}

.news-excerpt {
    color: #666666 !important;
    font-size: 0.9rem !important;
    line-height: 1.6 !important;
    margin: 0 !important;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .news-item {
        width: 250px !important;
    }
}

@media (max-width: 600px) {
    .rushian-news-list {
        gap: 1rem !important;
    }

    .news-item {
        width: 280px !important;
    }
}
