.radostna_news {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 20px;
}

.radostna_news_item {
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 8px;
}

.radostna_news_item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.radostna_news_item img {
    max-width: 100%;
    height: auto;
    margin-bottom: 10px;
}

.radostna_news_item h4 {
    margin: 0;
}

.radostna_news_error {
    background-color: #ffebee;
    border: 1px solid #f44336;
    color: #d32f2f;
    padding: 15px;
    margin: 10px 0;
    border-radius: 4px;
}

.radostna_news_error p {
    margin: 0;
}
