/**
 * WP News Aggregator Styles
 */

.news-feed-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

/* List Layout */
.news-layout-list {
    flex-direction: column;
}
.news-layout-list .news-item {
    display: flex;
    gap: 15px;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
    margin-bottom: 15px;
}
.news-layout-list .news-image {
    flex: 0 0 150px;
}

/* Grid Layout */
.news-layout-grid .news-item {
    width: calc(33.333% - 20px);
    border: 1px solid #e5e5e5;
    background: #fff;
    padding: 15px;
    border-radius: 4px;
    transition: transform 0.2s ease;
}
.news-layout-grid .news-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* General Elements */
.news-image img {
    max-width: 100%;
    height: auto;
    border-radius: 3px;
    display: block;
}
.news-title {
    margin: 0 0 10px 0;
    font-size: 1.1em;
}
.news-title a {
    text-decoration: none;
    color: #333;
}
.news-date {
    display: block;
    font-size: 0.85em;
    color: #888;
    margin-bottom: 8px;
}
.news-excerpt {
    font-size: 0.95em;
    line-height: 1.5;
    color: #555;
}

/* Responsive */
@media(max-width: 768px) {
    .news-layout-grid .news-item { 
        width: 100%; 
    }
    .news-layout-list .news-item {
        flex-direction: column;
    }
}
