.news-card {
    position: relative;
    width: 100%;
    height: 45vh;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}
.no-news-message {
    text-align: center;
    padding: 20px 0 40px;
    color: #0761b0;
    font-size: 1.5rem;
    font-weight: 500;
    margin-top: 0;
}

.static-news-container {
    padding: 15px 0;
}

.glide__slide {
    padding: 15px;
    height: 45vh;
}

.news-card {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.news-card:hover {
    transform: translateY(-5px);
}

.news-content {
    position: relative;
    width: 100%;
    height: 100%;
}

.title-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
    transition: all 0.4s ease;
    width: 100%;
}
.news-title {
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    text-shadow: 0 5px 5px black;
    margin: 0 0 10px 0;
}

.read-more {
    display: block;
    color: rgba(255,255,255,0.9);
    font-size: 2rem;
    margin-top: 10px;
    transition: all 0.3s ease;
    text-shadow: 0 5px 5px black;
}

.news-card:hover .title-wrapper {
    top: 20px;
    left: 0;
    transform: translate(0, 0);
    text-align: left;
    padding: 0 20px;
    width: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.5) 0%, transparent 100%);
}

.news-card:hover .news-title {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.news-card:hover .read-more {
    font-size: 0.9rem;
    position: static;
    text-align: left;
    display: block;
}

.image-container {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.news-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.news-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.news-description {
    color: white;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    overflow: auto;
    max-height: 70%;
}

.news-date {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
    align-self: flex-end;
}

.news-card:hover .news-overlay {
    opacity: 1;
}

.news-card:hover .news-img {
    transform: scale(1.05);
    filter: brightness(0.6) blur(2px);
}

.glide__arrows {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.glide__arrow {
    background: rgba(255,255,255,0.8);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 24px;
    cursor: pointer;
    z-index: 1;
    margin: 0 -4%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.glide__arrow:hover {
    background: white;
    transform: scale(1.1);
}