/*
 * Plugin: e24Ghanta News Collector
 * Description: Styles for the news grid.
 */

.e24ghanta-news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
    font-family: Arial, sans-serif;
}

.e24ghanta-news-item {
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    background-color: #fff;
    display: flex;
    flex-direction: column;
}

.e24ghanta-news-item:hover {
    transform: translateY(-5px);
}

.news-image-container {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.news-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-title {
    font-size: 1.25em;
    margin: 15px;
    line-height: 1.4;
}

.news-title a {
    text-decoration: none;
    color: #333;
}

.news-title a:hover {
    color: #0073aa;
}

.news-description {
    font-size: 0.9em;
    color: #666;
    margin: 0 15px 15px;
    flex-grow: 1;
}

.news-error,
.news-no-results {
    text-align: center;
    font-size: 1.2em;
    color: #e44d26;
    padding: 20px;
}