.slider-v2-3-across {
    .widget-header {
        .widget-title {
            font-size: clamp(1.5625rem, 0.842rem + 1.80vw, var(--text-5xl));
        }

        .widget-desc {
            text-wrap: pretty;
            max-width: 50ch;
        }
    }
    .slider-cont {
        display: grid;
        max-width: calc(var(--width-base) - var(--space-10) + 40px); /* Added the padding-inline to the width calc */
        width: 100%;

        .glide__arrows {
            position: static;
            transform: unset;
            order: 2;
            /* justify-content: space-between; */
            margin-top: var(--space-5);

            @media (width >= 64em) {
                justify-content: end;
            }
        }

        .glide__slides {
            height: 100%;
            padding-bottom: 30px;

            .glide__slide {
                padding-inline: 20px;

                .inner {
                    height: 100%;
                    border-radius: 35px;
                    box-shadow: var(--shadow);

                    .slide-top {
                        margin: 0;
                        padding-bottom: var(--space-5);

                        .credits {
                            bottom: unset;
                            top: 5px;
                        }

                        .img-cont {
                            border-radius: 35px;
                            overflow: hidden;
                        }
                    }
                    
                    .content-section {
                        padding: var(--space-5);

                        .details .info-item.date {
                            display: none;
                        }

                        .slide-title {
                            font-size: var(--text-xl);
                            font-family: var(--font-title-b)
                        }

                        .info-flag {
                            margin-bottom: var(--space-5);
                        }

                        .read-more {
                            color: var(--black);

                            @media (width >= 64em) {
                                &:hover {
                                    color: var(--black) !important;
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}