.news-container {
    width: 100%;
    padding: 50px 0;
    background-color: #297496;
    font-family: 'Roboto', sans-serif;
    position: relative;
    overflow: hidden;
}

.news-header {
    text-align: left;
    padding: 0 150px;
    margin-bottom: 30px;
}

.news-subheader {
    color: #b0bec5;
    font-size: 14px;
    margin: 0;
    text-transform: uppercase;
}

.news-title-header {
    color: #ffffff;
    font-size: 36px;
    margin: 0;
    font-weight: bold;
}

.news-slider {
    position: relative;
    overflow: hidden;
    width: 100%;
    display: flex;
    justify-content: center;
}

.news-items-wrapper {
    display: flex;
    align-items: center;
    overflow: hidden;
    width: 100%;
    position: relative;
}

.news-items {
    display: flex;
    transition: transform 0.5s ease-in-out;
    justify-content: center;
    gap: 20px;
}

.news-item {
    flex: 0 0 1000px;
    height: 514.5px;
    display: flex;
    align-items: center;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.15);
    padding: 24px;
    transform: scale(0.9);
    opacity: 0.7;
    transition: all 0.5s ease-in-out;
}

.news-item.active {
    transform: scale(1);
    opacity: 1;
    box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.3);
}

.news-text {
    flex: 1;
    padding-right: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.news-title-text {
    color: #333;
    font-size: 24px;
    margin: 0;
    font-weight: bold;
}

.news-category-text {
    color: #666;
    font-size: 14px;
    text-transform: uppercase;
    margin-top: 5px;
}

.news-description-text {
    color: #666;
    font-size: 16px;
    line-height: 1.4;
    flex-grow: 1;
    margin-bottom: 15px;
    overflow-wrap: break-word;
    word-wrap: break-word;
    display: flex;
    align-items: flex-end;
}

.news-link-text {
    color: #004d99;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
}

.news-link-text:hover {
    text-decoration: underline;
}

.news-image {
    flex: 0 0 466.5px;
    height: 466.5px;
    border-radius: 10px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.news-navigation {
    position: absolute;
    bottom: 20px;
    right: 50px;
    display: flex;
    gap: 15px;
}

.prev-btn, .next-btn {
    background: rgba(0, 77, 153, 0.7);
    border: none;
    color: #fff;
    font-size: 24px;
    padding: 12px;
    cursor: pointer;
    transition: background 0.3s ease;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.prev-btn:hover, .next-btn:hover {
    background: rgba(0, 77, 153, 1);
}
