.latest-articles-slider {
    position: relative;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
    touch-action: pan-y;
    box-sizing: border-box;
}

.latest-articles-slider *,
.latest-articles-slider *::before,
.latest-articles-slider *::after {
    box-sizing: border-box;
}

.latest-articles-slider .las-wrapper {
    position: relative;
    width: 100%;
    height: var(--las-height, 390px);
    overflow: hidden;
    background: #111;
}

.latest-articles-slider .las-stage {
    position: relative;
    width: 100%;
    height: 100%;
    min-width: 0;
    overflow: hidden;
    background: #111;
}

.latest-articles-slider .las-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease, visibility .5s ease;
}

.latest-articles-slider .las-slide.is-active {
    opacity: 1;
    visibility: visible;
}

.latest-articles-slider .las-slide[aria-hidden="true"] {
    pointer-events: none;
}

.latest-articles-slider .las-slide img,
.latest-articles-slider .las-no-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

.latest-articles-slider.las-image-top .las-slide > img { object-position: center top; }
.latest-articles-slider.las-image-bottom .las-slide > img { object-position: center bottom; }
.latest-articles-slider.las-image-left .las-slide > img { object-position: left center; }
.latest-articles-slider.las-image-right .las-slide > img { object-position: right center; }

.latest-articles-slider.las-transition-zoom .las-slide > img {
    transform: scale(1.06);
    transition: transform 1.2s ease;
}

.latest-articles-slider.las-transition-zoom .las-slide.is-active > img {
    transform: scale(1);
}

.latest-articles-slider .las-no-image {
    background: linear-gradient(135deg, #333, #777);
}

.latest-articles-slider .las-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, var(--las-overlay-top, rgba(0,0,0,.05)), var(--las-overlay-bottom, rgba(0,0,0,.55)));
    pointer-events: none;
}

.latest-articles-slider .las-full-link {
    position: absolute;
    inset: 0;
    z-index: 2;
}

.latest-articles-slider .las-category {
    position: absolute;
    top: var(--las-category-top, 0);
    z-index: 3;
    background: var(--las-category-bg, #b91c1c);
    color: var(--las-category-color, #fff);
    padding: var(--las-category-padding-y, 7px) var(--las-category-padding-x, 12px);
    border-radius: var(--las-category-radius, 0);
    font-size: var(--las-category-font-size, 20px);
    line-height: 1;
    font-weight: var(--las-category-font-weight, 800);
    text-transform: var(--las-category-transform, uppercase);
    box-sizing: border-box;
    overflow-wrap: anywhere;
    max-width: calc(100% - (2 * var(--las-category-side, 0px)));
}

.latest-articles-slider .las-category-right {
    right: var(--las-category-side, 0);
}

.latest-articles-slider .las-category-left {
    left: var(--las-category-side, 0);
}

.latest-articles-slider .las-title {
    position: absolute;
    bottom: var(--las-title-bottom, 46px);
    z-index: 3;
    max-width: var(--las-title-max-width, 86%);
    display: inline;
    background: var(--las-title-bg, #1976d2);
    color: var(--las-title-color, #fff);
    padding: var(--las-title-padding-y, 6px) var(--las-title-padding-x, 12px);
    border-radius: var(--las-title-radius, 0);
    font-size: var(--las-title-font-size, 28px);
    line-height: 1.25;
    font-weight: var(--las-title-font-weight, 800);
    text-decoration: none;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
}

.latest-articles-slider .las-title-left { left: 14px; }
.latest-articles-slider .las-title-right { right: 14px; text-align: right; }
.latest-articles-slider .las-title-center { left: 50%; transform: translateX(-50%); text-align: center; }

.latest-articles-slider .las-details {
    position: absolute;
    bottom: var(--las-title-bottom, 46px);
    z-index: 3;
    max-width: var(--las-title-max-width, 86%);
    color: #fff;
    text-shadow: 0 1px 3px rgba(0,0,0,.9);
    pointer-events: none;
}

.latest-articles-slider .las-details-left { left: 14px; text-align: left; }
.latest-articles-slider .las-details-right { right: 14px; text-align: right; }
.latest-articles-slider .las-details-center { left: 50%; transform: translateX(-50%); text-align: center; }

.latest-articles-slider .las-excerpt {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    font-size: 14px;
    line-height: 1.35;
    margin-bottom: 5px;
}

.latest-articles-slider .las-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 4px 8px;
    justify-content: inherit;
    font-size: 12px;
    line-height: 1.2;
    opacity: .92;
}

.latest-articles-slider .las-details-right .las-meta { justify-content: flex-end; }
.latest-articles-slider .las-details-center .las-meta { justify-content: center; }

.latest-articles-slider.las-has-details .las-title {
    bottom: calc(var(--las-title-bottom, 46px) + 58px);
}

.latest-articles-slider .las-title:hover,
.latest-articles-slider .las-title:focus {
    color: var(--las-title-color, #fff);
    text-decoration: none;
}

.latest-articles-slider .las-title:focus-visible,
.latest-articles-slider .las-arrow:focus-visible,
.latest-articles-slider .las-dot:focus-visible {
    outline: 3px solid #fff;
    outline-offset: -3px;
}

.latest-articles-slider .las-arrow {
    position: absolute;
    top: 50%;
    z-index: 5;
    transform: translateY(-50%);
    border: 0;
    background: var(--las-arrow-bg, transparent);
    color: var(--las-arrow-color, #fff);
    border-radius: var(--las-arrow-radius, 0);
    font-size: var(--las-arrow-size, 68px);
    line-height: 1;
    cursor: pointer;
    padding: 4px 12px;
    opacity: .95;
    font-family: Arial, sans-serif;
}

.latest-articles-slider .las-arrow:hover {
    filter: brightness(1.2);
}

.latest-articles-slider .las-progress {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 7;
    height: var(--las-progress-height, 3px);
    background: rgba(255,255,255,.18);
    overflow: hidden;
    pointer-events: none;
}

.latest-articles-slider .las-play-pause {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 8;
    width: 34px;
    height: 34px;
    padding: 0;
    border: 1px solid rgba(255,255,255,.65);
    border-radius: 50%;
    background: rgba(0,0,0,.45);
    color: #fff;
    font: 700 16px/1 Arial, sans-serif;
    cursor: pointer;
}

.latest-articles-slider .las-play-pause:hover,
.latest-articles-slider .las-play-pause:focus-visible {
    background: rgba(0,0,0,.72);
}

.latest-articles-slider .las-progress span {
    display: block;
    width: 100%;
    height: 100%;
    background: var(--las-progress-color, #fff);
    transform: scaleX(0);
    transform-origin: left center;
}

.latest-articles-slider.las-progress-running .las-progress span {
    animation: las-progress var(--las-duration, 4000ms) linear forwards;
}

@keyframes las-progress {
    to { transform: scaleX(1); }
}

.latest-articles-slider .las-prev {
    left: 0;
}

.latest-articles-slider .las-next {
    right: 0;
}

.latest-articles-slider .las-dots {
    position: absolute;
    left: 92px;
    right: 84px;
    bottom: 0;
    z-index: 6;
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 1fr;
    height: 38px;
    border-top: 1px solid rgba(255,255,255,.25);
}

.latest-articles-slider .las-dot {
    border: 0;
    border-right: 1px solid rgba(255,255,255,.1);
    background: rgba(0,0,0,.75);
    color: #fff;
    font-size: 20px;
    font-weight: 800;
    cursor: pointer;
    appearance: none;
}

.latest-articles-slider .las-dot.is-active {
    background: #b91c1c;
}

.latest-articles-slider .las-empty {
    padding: 16px;
    border: 1px solid #ddd;
    background: #fff;
}

@media (max-width: 768px) {
    .latest-articles-slider .las-wrapper {
        height: var(--las-height-mobile, 300px);
    }

    .latest-articles-slider .las-title {
        font-size: var(--las-title-font-size-mobile, 21px);
        max-width: 82%;
    }

    .latest-articles-slider .las-category {
        font-size: var(--las-category-font-size-mobile, 15px);
    }

    .latest-articles-slider .las-arrow {
        font-size: min(var(--las-arrow-size, 68px), 48px);
    }

    .latest-articles-slider .las-dots {
        left: 48px;
        right: 48px;
    }

    .latest-articles-slider .las-dot {
        font-size: 15px;
    }
}

/* v3.5.0 - Large lead story with side news cards */
.latest-articles-slider.las-layout-side_news {
    overflow: hidden;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(15, 23, 42, .08);
}

.latest-articles-slider.las-layout-side_news .las-wrapper {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(240px, var(--las-side-width, 32%));
    gap: var(--las-side-gap, 14px);
    width: 100%;
    min-width: 0;
    height: var(--las-height, 390px);
    padding: var(--las-side-gap, 14px);
    overflow: hidden;
    border-radius: inherit;
    background: #fff;
}

.latest-articles-slider.las-layout-side_news.las-single .las-wrapper {
    grid-template-columns: minmax(0, 1fr);
}

.latest-articles-slider.las-layout-side_news.las-side-left .las-stage { order: 2; }
.latest-articles-slider.las-layout-side_news.las-side-left .las-dots { order: 1; }

.latest-articles-slider.las-layout-side_news .las-stage {
    height: 100%;
    border-radius: 12px;
}

.latest-articles-slider.las-layout-side_news .las-dots,
.latest-articles-slider.las-layout-side_news.las-indicator-thumb .las-dots {
    position: relative;
    inset: auto !important;
    z-index: 7;
    display: flex !important;
    width: auto !important;
    height: 100%;
    min-width: 0;
    flex-direction: column;
    justify-content: flex-start !important;
    align-items: stretch !important;
    gap: 8px !important;
    padding: 2px 4px 2px 0 !important;
    overflow-x: hidden !important;
    overflow-y: auto !important;
    overscroll-behavior: contain;
    scrollbar-width: thin;
    scroll-behavior: smooth;
    background: transparent;
    border: 0;
}

.latest-articles-slider.las-layout-side_news .las-dot,
.latest-articles-slider.las-layout-side_news.las-indicator-thumb .las-dot {
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr);
    align-items: center;
    gap: 11px;
    width: 100% !important;
    min-width: 0 !important;
    max-width: none !important;
    height: auto !important;
    min-height: 68px;
    flex: 0 0 auto !important;
    padding: 7px !important;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    background: #f8fafc;
    color: #111827;
    text-align: left;
    opacity: 1;
    transition: border-color .2s ease, background .2s ease, transform .2s ease;
}

.latest-articles-slider.las-layout-side_news .las-dot:hover,
.latest-articles-slider.las-layout-side_news .las-dot:focus-visible {
    border-color: #94a3b8;
    background: #fff;
}

.latest-articles-slider.las-layout-side_news .las-dot.is-active {
    border-color: var(--las-thumb-active, #b91c1c);
    background: #fff5f5;
    box-shadow: inset 4px 0 0 #b91c1c;
}

.latest-articles-slider.las-layout-side_news .las-dot img,
.latest-articles-slider.las-layout-side_news.las-indicator-thumb .las-dot img {
    width: 92px !important;
    height: 58px !important;
    border-radius: 7px;
    object-fit: cover !important;
    object-position: center !important;
}

.latest-articles-slider.las-layout-side_news .las-dot-copy {
    display: block;
    min-width: 0;
}

.latest-articles-slider.las-layout-side_news .las-dot-copy small,
.latest-articles-slider.las-layout-side_news .las-dot-copy strong {
    display: block;
    overflow: hidden;
}

.latest-articles-slider.las-layout-side_news .las-dot-copy small {
    margin-bottom: 4px;
    color: #b91c1c;
    font-size: 10px;
    font-weight: 800;
    line-height: 1.15;
    text-transform: uppercase;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.latest-articles-slider.las-layout-side_news .las-dot-copy strong {
    display: -webkit-box;
    color: #172033;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.25;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.latest-articles-slider.las-layout-side_news .las-title {
    max-width: min(var(--las-title-max-width, 86%), calc(100% - 28px));
    bottom: max(var(--las-title-bottom, 20px), 20px);
}

.latest-articles-slider.las-layout-side_news .las-details {
    bottom: max(var(--las-title-bottom, 20px), 20px);
}

.latest-articles-slider.las-layout-side_news.las-has-details .las-title {
    bottom: calc(max(var(--las-title-bottom, 20px), 20px) + 58px);
}

@media (max-width: 900px) {
    .latest-articles-slider.las-layout-side_news .las-wrapper {
        grid-template-columns: minmax(0, 1fr) minmax(210px, 34%);
        gap: 10px;
        padding: 10px;
    }

    .latest-articles-slider.las-layout-side_news .las-dot,
    .latest-articles-slider.las-layout-side_news.las-indicator-thumb .las-dot {
        grid-template-columns: 72px minmax(0, 1fr);
        min-height: 60px;
        gap: 8px;
        padding: 6px !important;
    }

    .latest-articles-slider.las-layout-side_news .las-dot img,
    .latest-articles-slider.las-layout-side_news.las-indicator-thumb .las-dot img {
        width: 72px !important;
        height: 48px !important;
    }
}

@media (max-width: 700px) {
    .latest-articles-slider.las-layout-side_news {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        overflow: hidden;
        border-radius: 12px;
    }

    .latest-articles-slider.las-layout-side_news .las-wrapper {
        display: flex;
        width: 100%;
        max-width: 100%;
        min-width: 0;
        height: auto;
        flex-direction: column;
        gap: 8px;
        padding: 8px;
    }

    .latest-articles-slider.las-layout-side_news.las-side-left .las-stage,
    .latest-articles-slider.las-layout-side_news.las-side-left .las-dots {
        order: initial;
    }

    .latest-articles-slider.las-layout-side_news .las-stage {
        height: var(--las-height-mobile, 300px);
    }

    .latest-articles-slider.las-layout-side_news .las-dots,
    .latest-articles-slider.las-layout-side_news.las-indicator-thumb .las-dots {
        display: flex !important;
        width: 100% !important;
        max-width: 100%;
        min-width: 0;
        height: auto;
        max-height: none;
        flex-direction: row;
        gap: 8px !important;
        padding: 2px 0 4px !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        scroll-snap-type: x mandatory;
        overscroll-behavior-x: contain;
        scrollbar-width: none;
        -ms-overflow-style: none;
        -webkit-overflow-scrolling: touch;
    }

    .latest-articles-slider.las-layout-side_news .las-dots::-webkit-scrollbar,
    .latest-articles-slider.las-layout-side_news.las-indicator-thumb .las-dots::-webkit-scrollbar {
        display: none;
    }

    .latest-articles-slider.las-layout-side_news .las-dot,
    .latest-articles-slider.las-layout-side_news.las-indicator-thumb .las-dot {
        grid-template-columns: 78px minmax(0, 1fr);
        width: 100% !important;
        min-width: 100% !important;
        max-width: 100% !important;
        min-height: 68px;
        flex: 0 0 100% !important;
        scroll-snap-align: start;
        scroll-snap-stop: always;
    }

    .latest-articles-slider.las-layout-side_news .las-dot img,
    .latest-articles-slider.las-layout-side_news.las-indicator-thumb .las-dot img {
        width: 78px !important;
        height: 54px !important;
    }

    .latest-articles-slider.las-layout-side_news .las-title {
        left: 14px;
        right: 14px;
        max-width: none;
        bottom: 14px;
        font-size: var(--las-title-font-size-mobile, 21px);
        overflow-wrap: anywhere;
    }

    .latest-articles-slider.las-layout-side_news .las-title-center {
        left: 50%;
        right: auto;
        width: calc(100% - 28px);
    }

    .latest-articles-slider.las-layout-side_news .las-details {
        left: 14px;
        right: 14px;
        max-width: none;
        bottom: 14px;
    }

    .latest-articles-slider.las-layout-side_news .las-details-center {
        left: 50%;
        right: auto;
        width: calc(100% - 28px);
    }

    .latest-articles-slider.las-layout-side_news.las-has-details .las-title {
        bottom: 72px;
    }

    .latest-articles-slider.las-layout-side_news .las-category {
        font-size: min(var(--las-category-font-size-mobile, 15px), 13px);
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .latest-articles-slider .las-wrapper {
        height: var(--las-height-tablet, 350px);
    }
}


/* Turkoglu Articles Slider - indicator type support */
.latest-articles-slider.las-indicator-dot .las-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    left: 92px;
    right: 84px;
    height: 38px;
}

.latest-articles-slider.las-indicator-dot .las-dot {
    width: 14px;
    height: 14px;
    border: 2px solid rgba(255,255,255,.9);
    border-radius: 50%;
    background: rgba(0,0,0,.45);
    font-size: 0;
    padding: 0;
}

.latest-articles-slider.las-indicator-dot .las-dot.is-active {
    background: #b91c1c;
}

.latest-articles-slider.las-indicator-thumb .las-dots {
    position: absolute;
    left: 70px;
    right: 70px;
    bottom: 0;
    z-index: 6;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--las-thumb-gap, 4px);
    height: calc(var(--las-thumb-height, 40px) + 12px);
    padding: 6px 8px;
    background: rgba(0,0,0,.55);
    box-sizing: border-box;
}

.latest-articles-slider.las-indicator-thumb .las-dot {
    width: 64px;
    height: var(--las-thumb-height, 40px);
    padding: 0;
    border: 2px solid transparent;
    background: rgba(0,0,0,.45);
    overflow: hidden;
    flex: 0 1 64px;
}

.latest-articles-slider.las-indicator-thumb .las-dot:not(.is-active) {
    opacity: var(--las-thumb-opacity, .75);
}

.latest-articles-slider.las-indicator-thumb .las-dot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.latest-articles-slider.las-indicator-thumb .las-dot.is-active {
    border-color: var(--las-thumb-active, #fff);
    background: #b91c1c;
}

.latest-articles-slider.las-indicator-thumb .las-title {
    bottom: max(var(--las-title-bottom, 46px), calc(var(--las-thumb-height, 40px) + 22px));
}

@media (max-width: 768px) {
    .latest-articles-slider.las-indicator-thumb .las-dots {
        left: 48px;
        right: 48px;
        height: calc(var(--las-thumb-height, 40px) + 10px);
    }

    .latest-articles-slider.las-indicator-thumb .las-dot {
        width: 48px;
        height: var(--las-thumb-height, 40px);
        flex-basis: 48px;
    }

    .latest-articles-slider.las-indicator-thumb .las-title {
        bottom: max(var(--las-title-bottom, 46px), calc(var(--las-thumb-height, 40px) + 18px));
    }
}


/* v3.0.1 - Thumbnail strip fills the full width */
.latest-articles-slider.las-indicator-thumb .las-dots {
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    display: flex !important;
    justify-content: stretch !important;
    align-items: center !important;
    gap: var(--las-thumb-gap, 4px) !important;
    padding: 6px 8px !important;
    box-sizing: border-box !important;
}

@media (prefers-reduced-motion: reduce) {
    .latest-articles-slider .las-slide {
        transition: none;
    }

    .latest-articles-slider .las-slide > img,
    .latest-articles-slider .las-progress span {
        transition: none;
        animation: none !important;
    }
}

.latest-articles-slider.las-indicator-thumb .las-dot {
    flex: 1 1 0 !important;
    width: auto !important;
    min-width: 0 !important;
    max-width: none !important;
    height: var(--las-thumb-height, 40px) !important;
    box-sizing: border-box !important;
}

.latest-articles-slider.las-indicator-thumb .las-dot img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

@media (max-width: 768px) {
    .latest-articles-slider.las-indicator-thumb .las-dots {
        left: 0 !important;
        right: 0 !important;
        padding: 5px 6px !important;
        gap: var(--las-thumb-gap, 4px) !important;
    }

    .latest-articles-slider.las-indicator-thumb .las-dot {
        height: var(--las-thumb-height, 40px) !important;
    }

    .latest-articles-slider.las-thumbs-mobile-hide .las-dots {
        display: none !important;
    }

    .latest-articles-slider.las-thumbs-mobile-hide .las-title {
        bottom: var(--las-title-bottom, 46px);
    }
}

.latest-articles-slider.las-indicator-thumb .las-details {
    bottom: max(var(--las-title-bottom, 46px), calc(var(--las-thumb-height, 40px) + 22px));
}

.latest-articles-slider.las-has-details.las-indicator-thumb .las-title {
    bottom: calc(max(var(--las-title-bottom, 46px), calc(var(--las-thumb-height, 40px) + 22px)) + 58px);
}

.latest-articles-slider.las-thumbs-scroll.las-indicator-thumb .las-dots {
    justify-content: flex-start !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    scrollbar-width: thin;
    scroll-behavior: smooth;
}

.latest-articles-slider.las-thumbs-scroll.las-indicator-thumb .las-dot {
    flex: 0 0 74px !important;
    min-width: 74px !important;
}

@media (max-width: 768px) {
    .latest-articles-slider.las-thumbs-mobile-hide .las-details {
        bottom: var(--las-title-bottom, 46px);
    }

    .latest-articles-slider.las-has-details.las-thumbs-mobile-hide .las-title {
        bottom: calc(var(--las-title-bottom, 46px) + 58px);
    }
}

/* Side News must take precedence over classic indicator variants. */
.latest-articles-slider.las-layout-side_news .las-dots,
.latest-articles-slider.las-layout-side_news.las-indicator-dot .las-dots,
.latest-articles-slider.las-layout-side_news.las-indicator-thumb .las-dots,
.latest-articles-slider.las-layout-side_news.las-thumbs-scroll .las-dots {
    position: relative;
    inset: auto !important;
    display: flex !important;
    width: auto !important;
    height: 100%;
    min-width: 0;
    flex-direction: column;
    justify-content: flex-start !important;
    align-items: stretch !important;
    gap: 8px !important;
    padding: 2px 4px 2px 0 !important;
    overflow-x: hidden !important;
    overflow-y: auto !important;
    background: transparent;
    border: 0;
}

.latest-articles-slider.las-layout-side_news .las-dot,
.latest-articles-slider.las-layout-side_news.las-indicator-dot .las-dot,
.latest-articles-slider.las-layout-side_news.las-indicator-thumb .las-dot,
.latest-articles-slider.las-layout-side_news.las-thumbs-scroll .las-dot {
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr);
    align-items: center;
    gap: 11px;
    width: 100% !important;
    min-width: 0 !important;
    max-width: none !important;
    height: auto !important;
    min-height: 68px;
    flex: 0 0 auto !important;
    padding: 7px !important;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    background: #f8fafc;
    color: #111827;
    font-size: 13px;
    text-align: left;
    opacity: 1;
}

.latest-articles-slider.las-layout-side_news .las-dot.is-active {
    border-color: var(--las-thumb-active, #b91c1c);
    background: #fff5f5;
}

.latest-articles-slider.las-layout-side_news.las-indicator-thumb .las-title,
.latest-articles-slider.las-layout-side_news .las-title {
    bottom: max(var(--las-title-bottom, 20px), 20px);
}

.latest-articles-slider.las-layout-side_news.las-indicator-thumb .las-details,
.latest-articles-slider.las-layout-side_news .las-details {
    bottom: max(var(--las-title-bottom, 20px), 20px);
}

.latest-articles-slider.las-layout-side_news.las-has-details.las-indicator-thumb .las-title,
.latest-articles-slider.las-layout-side_news.las-has-details .las-title {
    bottom: calc(max(var(--las-title-bottom, 20px), 20px) + 58px);
}

@media (max-width: 900px) and (min-width: 701px) {
    .latest-articles-slider.las-layout-side_news .las-dot,
    .latest-articles-slider.las-layout-side_news.las-indicator-dot .las-dot,
    .latest-articles-slider.las-layout-side_news.las-indicator-thumb .las-dot,
    .latest-articles-slider.las-layout-side_news.las-thumbs-scroll .las-dot {
        grid-template-columns: 72px minmax(0, 1fr);
        min-height: 60px;
        gap: 8px;
        padding: 6px !important;
    }
}

@media (max-width: 700px) {
    .latest-articles-slider.las-layout-side_news.las-thumbs-mobile-hide .las-dots,
    .latest-articles-slider.las-layout-side_news .las-dots,
    .latest-articles-slider.las-layout-side_news.las-indicator-dot .las-dots,
    .latest-articles-slider.las-layout-side_news.las-indicator-thumb .las-dots,
    .latest-articles-slider.las-layout-side_news.las-thumbs-scroll .las-dots {
        display: flex !important;
        width: 100% !important;
        max-width: 100%;
        height: auto;
        flex-direction: row;
        gap: 8px !important;
        padding: 2px 0 4px !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        scrollbar-width: none;
    }

    .latest-articles-slider.las-layout-side_news .las-dot,
    .latest-articles-slider.las-layout-side_news.las-indicator-dot .las-dot,
    .latest-articles-slider.las-layout-side_news.las-indicator-thumb .las-dot,
    .latest-articles-slider.las-layout-side_news.las-thumbs-scroll .las-dot {
        grid-template-columns: 78px minmax(0, 1fr);
        width: 100% !important;
        min-width: 100% !important;
        max-width: 100% !important;
        min-height: 68px;
        flex: 0 0 100% !important;
    }

    .latest-articles-slider.las-layout-side_news.las-indicator-thumb .las-title,
    .latest-articles-slider.las-layout-side_news .las-title {
        bottom: 14px;
    }

    .latest-articles-slider.las-layout-side_news.las-has-details.las-indicator-thumb .las-title,
    .latest-articles-slider.las-layout-side_news.las-has-details .las-title {
        bottom: 72px;
    }

    .latest-articles-slider.las-layout-side_news.las-indicator-thumb .las-details,
    .latest-articles-slider.las-layout-side_news .las-details {
        bottom: 14px;
    }
}
