<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.advanced-slider {
    position: relative;
    width: 100%; /* Or set a fixed width */
    height: 600px;
    max-width: 800px; /* Example max-width */
    margin: 0 auto; /* Center the slider */
    overflow: hidden; /* Hide overflowing parts of images */
    border: 1px solid #ddd; /* Optional: A subtle border */
}

.slider-images {
    display: flex; /* Use flexbox for easier horizontal arrangement */
    transition: transform 0.5s ease-in-out; /* Smooth transition for sliding */
}

.slider-item {
    min-width: 100%; /* Each item takes the full width of the slider */
    box-sizing: border-box; /* Include padding and border in the element's total width and height */
}

.slider-item img {
    width: 100%;
    height: auto;
    display: block; /* Remove extra space below image */
}

/* Navigation Arrows */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 10px;
    box-sizing: border-box;
    z-index: 10; /* Ensure arrows are above images */
}

.slider-arrow {
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 24px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.slider-arrow:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

#prevArrow {
    margin-left: 10px;
}

#nextArrow {
    margin-right: 10px;
}

/* Optional: Pagination Dots */
.slider-dots {
    text-align: center;
    padding: 10px 0;
}

.dot {
    height: 10px;
    width: 10px;
    margin: 0 5px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active {
    background-color: #717171;
}
.news-inner__content-page p {
    margin: 0 !important;
}

.slider-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    text-align: center;
    padding: 10px 15px; /* Added horizontal padding for better readability */
    overflow: hidden; /* Keep hidden to prevent scrollbar, text will wrap */
    font-size: 18px;
    font-weight: bold;
    z-index: 5;
    box-sizing: border-box; /* Include padding in the width calculation */
}
.slider-item {
    height: 600px;
    min-width: 100%;
    box-sizing: border-box;
    position: relative; /* Needed for absolute positioning of caption inside */
    display: flex; /* Use flex to align image and potentially control caption space */
    flex-direction: column; /* Stack image and caption */
    justify-content: flex-end; /* Push caption to the bottom */
}
.slider-item img {
    width: 100%;
    /* Let height adjust automatically based on width, or set max-height */
    height: auto;
    max-height: 100%; /* Ensure image doesn't overflow its container */
    object-fit: cover; /* Crop image to fit without distorting aspect ratio */
    display: block;
    flex-grow: 1; /* Allow image to take up available space above caption */
}</pre></body></html>