.news-slider-container {
    padding: 40px 0;
    font-family: Arial, sans-serif;
}

.news-slider-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
    padding-bottom: 0;
}

.news-title {
    font-size: 36px;
    font-weight: bold;
    color: #333;
    margin: 0;
    border-bottom: 2px solid #ccc;
    padding-bottom: 10px;
    flex: 0 0 40%; /* Take 40% of the width */
}

.news-slider-nav {
    display: flex;
    gap: 15px;
    z-index: 999;
    position: relative;
    pointer-events: auto;
    border-bottom: 2px solid #ccc;
    padding-bottom: 5px;
    flex: 0 0 47%; /* Take 40% of the width */
    justify-content: flex-end;
}

.news-slider-nav button {
    background: none;
    border: none;
    cursor: pointer !important;
    font-size: 32px;
    color: #999;
    padding: 10px; /* More clickable area */
    line-height: 1;
    transition: all 0.3s;
    pointer-events: auto !important;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    min-height: 44px;
}

.news-slider-nav button:hover, .news-slider-nav button:focus {
    color: #333;
    opacity: 0.7;
	background: none;
}

.news-slider-nav button .nav-arrow {
    pointer-events: none; /* Let the button handle the click */
}

/* .news-slider {
    margin: 0 -15px;
} */

.news-item {
    padding: 0 15px;
}

.news-item-inner {
    padding: 30px 15px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.news-date {
    font-size: 14px;
    color: #888;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.news-content-title {
    font-size: 24px;
    font-weight: bold;
    color: #c0392b; /* Dark red/brown color from image */
    margin-bottom: 20px;
    text-transform: uppercase;
}

.news-excerpt {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
    flex-grow: 1;
}

.news-footer {
    display: flex;
    justify-content: flex-start;
}

.read-more {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #333;
    font-weight: bold;
    font-size: 12px;
}

.read-more-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border: 1px solid #ddd;
    border-radius: 50%;
    transition: all 0.3s;
}

.read-more:hover .read-more-icon {
    background-color: #333;
    color: #fff;
    border-color: #333;
}

/* Slick adjustments */
/* .slick-list {
    margin: 0 -15px;
} */

/* Responsive */
@media (max-width: 768px) {
    .news-slider-header {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    .news-title {
        font-size: 28px;
    }

}
