.news-section-title {
    font-size: 40px;
    margin: 5px 0px 20px 38px;
    font-family: 'Lora';
    font-weight: bold;
}

.news-content {
    margin: 10px 0 0 25px
}

.news-date {
    font-size: 20px;
    color: white;
    font-weight: 600;
}

.news-title {
    font-size: 26px;
    margin-top: 10px;
    color: white;
    font-weight: 600;
}

.news-section .image-wrapper {
    position: relative;
    overflow: hidden;
}

.news-section .image-wrapper img {
    display: block;
    height: 400px;
    width: 600px;
}

.news-section .image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: white;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
    transition: background 0.3s ease;
}

.news-section .image-overlay a {
    font-size: small;
    color: white;
    text-decoration: underline;
}

.news-card:hover .image-overlay {
    background: rgba(0, 0, 0, 0);
    cursor: pointer;
}