/* andW News - リストレイアウト */

.andw-news-wrapper.andw-news-layout-list {
    margin: 0;
    padding: 0;
}

.andw-news-list {
    margin-bottom: 20px;
}

.andw-news-item {
    border-bottom: 1px solid #e1e1e1;
    padding: 15px 0;
    margin: 0;
}

.andw-news-item:last-child {
    border-bottom: none;
}

.andw-news-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.andw-news-date {
    color: #666;
    font-size: 14px;
    margin: 0;
    font-weight: normal;
}

.andw-news-title {
    margin: 0;
    font-size: 16px;
    line-height: 1.4;
}

.andw-news-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.2s ease;
}

.andw-news-title a:hover {
    color: #0073aa;
    text-decoration: underline;
}

.andw-news-excerpt {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

.andw-news-subcontents {
    margin-top: 8px;
    color: #666;
    font-size: 14px;
    line-height: 1.5;
}

.andw-event-date,
.andw-event-period,
.andw-event-text {
    background: #f0f0f0;
    color: #333;
    font-size: 12px;
    padding: 2px 6px;
    border-radius: 3px;
    display: inline-block;
    margin-top: 5px;
}

/* カテゴリーバッジ */
.andw-categories-wrapper {
    margin-bottom: 8px;
}

.andw-categories-wrapper:empty {
    display: none;
}

.andw-category {
    display: inline-block;
    padding: 4px 8px;
    margin-right: 8px;
    margin-bottom: 4px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: bold;
    text-decoration: none;
}

/* カテゴリー別の色設定 */
.andw-category-news {
    background-color: #e3f2fd;
    color: #1976d2;
}

.andw-category-event {
    background-color: #f3e5f5;
    color: #7b1fa2;
}

.andw-category-info {
    background-color: #e8f5e8;
    color: #388e3c;
}

.andw-category-important {
    background-color: #ffebee;
    color: #d32f2f;
}

.andw-category-notice {
    background-color: #fff3e0;
    color: #f57c00;
}

/* デフォルトカテゴリー色 */
.andw-category:not([class*="andw-category-"]) {
    background-color: #f5f5f5;
    color: #666;
}

.andw-news-empty,
.andw-news-error {
    text-align: center;
    padding: 40px 20px;
    color: #666;
    background: #f9f9f9;
    border: 1px solid #e1e1e1;
    border-radius: 4px;
}

.andw-news-error {
    background: #ffeaea;
    border-color: #ff6b6b;
    color: #c92a2a;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .andw-news-item {
        padding: 12px 0;
    }

    .andw-news-title {
        font-size: 15px;
    }

    .andw-news-excerpt {
        font-size: 13px;
    }
}