.news-item-card {
    background: #ffffff;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-item-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}


.news-item-card:hover .news-item-card__content {
    background-color: #003170;
}

.news-item-card__image {
    width: 100%;
    height: 220px;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: #eaecee;
    background-position: center;
    transition: all 0.3s ease;
}


.news-item-card:hover .news-item-card__image {
    filter: brightness(0.9);
}

.news-item-card__content {
    padding: 15px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    text-align: center;
    transition: background-color 0.3s ease;
}


.news-item-card:hover .news-item-card__title {
    color: #ffffff;
}

.news-item-card__title {
    font-size: 14px;
    font-weight: 700;
    color: #333;
    text-decoration: none;
    margin-bottom: 10px;
    display: block;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.news-item-card__title:hover {
    text-decoration: underline;
}


.news-item-card:hover .news-item-card__date {
    color: rgba(255, 255, 255, 0.8);
}

.news-item-card__date {
    font-size: 12px;
    color: #999;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}


.news-item-card__btn-wrapper {
    margin-top: auto;
    padding-top: 10px;
}


.news-item-card__btn {
    display: inline-block;
    padding: 8px 20px;
    background-color: #003170;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.3s ease;
    cursor: pointer;
}


.news-item-card:hover .news-item-card__btn {
    background-color: #ffffff;
    color: #003170;
}


.news-item-card__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}



.news-slider-section {
    margin-bottom: 40px;
}

.news-slider-wrapper {
    position: relative;
    width: 100%;
    margin: 0 auto;
    padding: 0 50px;
    box-sizing: border-box;
}

.news-slider-container {
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    position: relative;
    width: 100%;
    scrollbar-width: none !important;
    -ms-overflow-style: none !important;
}

.news-slider-container::-webkit-scrollbar {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
    background: transparent !important;
}

.news-slider {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    gap: 20px !important;
    width: max-content !important;
    margin: 0 !important;
    padding: 10px 0 20px 0 !important;
}

.news-slider-wrapper.is-centered .news-slider {
    width: 100% !important;
    justify-content: center;
}

.news-slider-wrapper.is-centered .slider-nav {
    display: none !important;
}

.news-slider.grid-list {
    display: flex !important;
    grid-template-columns: unset !important;
}

.news-slider .grid-list__item,
.news-slider .staff-block-inner__wrapper {
    flex: 0 0 auto;
    width: 360px;
    max-width: 360px;
    min-width: 360px;
    margin: 0 !important;
    padding: 0 !important;
}

.news-slider .news-item-card {
    height: 100%;
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: #ffffff;
    border: 1px solid #ddd;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0;
    font-weight: 700;
    line-height: 1;
    padding: 0;
    color: #333;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.slider-nav::before {
    display: block;
    font-size: 24px;
    line-height: 1;
    color: #333;
}

.slider-nav.prev::before {
    content: "\2039";
    transform: translateX(-1px);
}

.slider-nav.next::before {
    content: "\203A";
    transform: translateX(1px);
}

.slider-nav:hover {
    background: #f8f9fa;
    border-color: #999;
    transform: translateY(-50%) scale(1.05);
}

.slider-nav.prev {
    left: 0;
}

.slider-nav.next {
    right: 0;
}

.slider-nav.disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}

.staff-block-inner__section-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
    color: #333;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: #003170;
    width: 30px;
    border-radius: 5px;
}

@media (max-width: 1199px) {
    .news-slider .grid-list__item,
    .news-slider .staff-block-inner__wrapper {
        width: 300px;
        min-width: 300px;
        max-width: 300px;
    }
}

@media (max-width: 768px) {
    .news-slider-wrapper {
        padding: 0 30px;
    }

    .news-slider .grid-list__item,
    .news-slider .staff-block-inner__wrapper {
        width: 280px;
        min-width: 280px;
        max-width: 280px;
    }

    .news-slider {
        gap: 16px !important;
    }

    .slider-nav {
        width: 32px;
        height: 32px;
        font-size: 20px;
    }
}

@media (max-width: 576px) {
    .news-slider-wrapper {
        padding: 0 20px;
    }

    .news-slider .grid-list__item,
    .news-slider .staff-block-inner__wrapper {
        width: 280px;
        min-width: 280px;
        max-width: 280px;
    }

    .slider-nav {
        display: none;
    }
}