.blog-container {
    max-width: 900px;
    margin: 40px auto;
    text-align: left; /* Μετακίνηση λίγο πιο δεξιά */
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.articles-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
}

.article-card {
    padding: 15px;
    background: #f9f9f9;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.article-card:hover {
    transform: translateY(-3px);
    box-shadow: 0px 5px 12px rgba(0, 0, 0, 0.2);
}

.article-link {
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    color: #007BFF;
    display: flex;
    align-items: center;
    gap: 8px;
}

.article-link:hover {
    color: #0056b3;
}

.icon {
    font-size: 22px;
}

.article-comment {
    font-size: 14px;
    color: #555;
    margin-top: 5px;
}

.card-img-top {
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.carousel-caption {
    color: white; /* Λευκό κείμενο για καλύτερη αντίθεση */
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8); /* Σκιά στο κείμενο */
}

.carousel-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* Σκούρο overlay */
}

.carousel-item img {
    position: relative;
    z-index: -1;
}
