.products-page {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 32px;

    .dataset-list {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;

        @media(max-width: 992px) {
            grid-template-columns: 1fr;
            gap: 12px;
        }

        .dataset-item {

            .dataset-item-header {
                display: flex;
                align-items: center;
                justify-content: space-between;

                h2 {
                    display: flex;
                    align-items: center;
                    font-size: 1.1em;
                    font-weight: 500;
                    height: 60px;

                    a {
                        display: flex;
                        align-items: center;
                        gap: 12px;
                        font-size: 1em;

                        i {
                            font-size: 1em;
                            margin-top: 3px;
                        }
                    }
                }

                h3 {
                    font-size: 1.4em;
                    font-weight: 500;
                    width: 100%;
                    height: 60px;

                    a {
                        display: flex;
                        align-items: center;
                        gap: 12px;
                        align-items: center;
                        height: 100%;

                        i {
                            transition: all 0.1s;
                        }

                    }

                    i {
                        font-size: 1.1em;
                    }
                }
            }
        }
    }

    .dataset-sublist {
        display: flex;
        flex-direction: column;
        gap: 8px;
        padding-left: 35px;

        a {
            color: var(--gray-700);

            &:hover {
                color: black;
                text-decoration: underline;
            }
        }
    }

}

.carousel {
    overflow: hidden;
    aspect-ratio: 4/3;
    position: relative;
    margin-bottom: 24px;

    .carousel-latest-products {
        position: absolute;
        left: 0px;
        right: 0px;
        top: 0px;
        bottom: 0px;
        display: flex;
        width: 100%;
        height: 100%;
        overflow: hidden !important;

        .slick-arrow {
            width: 30px;
            height: 30px;
            background: none;
            position: absolute;
            top: 50%;
            bottom: 50%;
            transform: translateY(-15px);
            z-index: 3;
            background-color: rgba(255, 255, 255, 0.6);
            cursor: pointer;
        }

        .bi-chevron-right {
            right: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .bi-chevron-left {
            left: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
        }



        .slick-dots {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 6px;
            position: absolute;
            left: 0px;
            right: 0px;
            bottom: 0px;
            height: 30px;

            button {
                width: 8px;
                height: 8px;
                font-size: 0px;
                padding: 0px;
                border-radius: 200px;
                background-color: rgba(255, 255, 255, 0.5);
            }
        }

        .slick-active {
            button {
                background-color: white;
            }
        }

        .carousel-item {
            display: flex;
            align-items: center;
            height: 100%;
            aspect-ratio: 4/3;
            position: relative;

            img {
                width: 100%;
                aspect-ratio: 4/3;
                object-fit: cover;
                transition: all 0.2s;
                z-index: 0;

                &:hover {
                    filter: brightness(1.1);
                }
            }

            h3 {
                position: absolute;
                left: 0px;
                bottom: 0px;
                right: 0px;
                z-index: 2;
                height: 50px;
                padding: 0px 12px;
                text-align: cenger;
                color: white;
                width: 100%;
                display: flex;
                justify-content: center;
                font-size: 1em;
                font-weight: 500;
            }

        }


    }

}

.carousel-latest-products {
    opacity: 0;
    transition: opacity .6s ease;
}

.carousel-latest-products.is-loaded {
    opacity: 1;
}