#content {
    #cover {
        aspect-ratio: 21/9;
        width: 90%;
        border-radius: 20px;
        overflow: hidden;
        position: relative;
        margin-bottom: 5%;
        scroll-behavior: smooth;

        &:hover {
            #c-bgImg {
                scale: 1.05;
            }
        }

        #c-bgImg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            transition: .5s ease;
        }

        #c-content {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 1.75% 2%;
            background-color: #00000050;

            p {
                color: var(--white);
                font-family: oswald;
                font-size: 2em;
            }
        }
    }

    section {
        width: 100%;
        margin-bottom: 2.5%;
        display: flex;
        flex-direction: column;
        align-items: center;

        h2 {
            font-size: 2.5em;
            padding-left: 2%;
            margin-bottom: .75%;
            width: 100%;
        }

        hr {
            width: 100%;
            border: 2px solid var(--purple-main);
            border-radius: 10px;
        }

        #trending-repeater {
            width: 99%;
            margin-top: 1%;
            position: relative;

            #trInner {
                width: 100%;
                display: flex;
                overflow-x: hidden;
                padding: .75% 0 .5%;
                scroll-behavior: smooth;

                .trItem {
                    aspect-ratio: 4/3;
                    width: 23%;
                    background-color: var(--white);
                    box-shadow: 0 3px 3px 0 grey, 0 3px 3px 0 grey;
                    border-radius: 5px;
                    margin: 0 .75%;
                    flex-shrink: 0;
                    overflow: hidden;

                    &:first-child {
                        margin-left: .15%;
                    }

                    &:last-child {
                        margin-right: .15%;
                    }

                    &:hover {
                        a {
                            figure {
                                img {
                                    scale: 1.1;
                                }
                            }
                        }
                    }

                    a {
                        width: 100%;
                        height: 100%;
                        text-decoration: none;

                        figure {
                            width: 100%;
                            height: 50%;
                            background-color: #FF0000;
                            position: relative;
                            overflow: hidden;

                            img {
                                position: absolute;
                                top: 0;
                                left: 0;
                                width: 100%;
                                height: 100%;
                                object-fit: cover;
                                object-position: center;
                                transition: .5s ease;
                            }

                            .triLabel {
                                position: absolute;
                                top: 5.5%;
                                left: 2%;
                                background-color: var(--purple-main);
                                padding: .5% 2.5% 1%;
                                border-radius: 5px;

                                p {
                                    color: var(--white);
                                }
                            }
                        }

                        .tri-content {
                            width: 100%;
                            height: 50%;
                            padding: 1% 1.75% 1.75%;
                            display: flex;
                            flex-direction: column;
                            justify-content: space-between;

                            .tric-title {
                                width: 100%;

                                h3 {
                                    font-size: 1.4em;
                                    color: var(--black);
                                }
                            }

                            .tric-details {
                                display: flex;
                                justify-content: space-between;
                                align-items: flex-end;

                                .tricd-locDate {
                                    p {
                                        opacity: .5;
                                        color: var(--black);
                                    }
                                }

                                .tricd-date {
                                    border: 2px solid lightgrey;
                                    border-radius: 5px;
                                    width: 27.5%;
                                    padding: 1.5%;

                                    display: flex;
                                    flex-direction: column;
                                    align-items: center;

                                    p {
                                        font-weight: bold;
                                        font-size: 1.2em;
                                        color: var(--black);
                                    }
                                }
                            }
                        }
                    }
                }

            }

            #trLeft {
                position: absolute;
                left: 0;
                top: 42.5%;
                transform: translate(-50%, -50%);
                aspect-ratio: 1/1;
                background-color: var(--white);
                box-shadow: 0 1px 1px 0 lightgrey, 0 1px 2px 0 lightgrey;
                width: 2.5%;
                border-radius: 50%;

                display: flex;
                justify-content: center;
                align-items: center;

                transition: .5s ease;
                opacity: 0;

                img {
                    aspect-ratio: 1/1;
                    width: 75%;
                }

                &:hover {
                    cursor: pointer;
                }
            }

            #trRight {
                position: absolute;
                right: 0;
                top: 42.5%;
                transform: translate(50%, -50%);
                aspect-ratio: 1/1;
                background-color: var(--white);
                box-shadow: 0 1px 1px 0 lightgrey, 0 1px 2px 0 lightgrey;
                width: 2.5%;
                border-radius: 50%;

                display: flex;
                justify-content: center;
                align-items: center;

                transition: .5s ease;
                opacity: 1;

                img {
                    aspect-ratio: 1/1;
                    width: 75%;
                }

                &:hover {
                    cursor: pointer;
                }
            }
        }

        #selection-repeater {
            width: 99%;
            margin-top: 1%;
            position: relative;

            #srInner {
                width: 100%;
                display: flex;
                overflow-x: hidden;
                padding: .75% 0 .5%;
                scroll-behavior: smooth;


                .srItem {
                    aspect-ratio: 4/3;
                    width: 23%;
                    background-color: var(--white);
                    box-shadow: 0 3px 3px 0 grey, 0 3px 3px 0 grey;
                    border-radius: 5px;
                    margin: 0 .75%;
                    flex-shrink: 0;
                    overflow: hidden;

                    &:first-child {
                        margin-left: .15%;
                    }

                    &:last-child {
                        margin-right: .15%;
                    }

                    &:hover {
                        a {
                            figure {
                                img {
                                    scale: 1.1;
                                }
                            }
                        }
                    }

                    a {
                        width: 100%;
                        height: 100%;
                        text-decoration: none;

                        figure {
                            width: 100%;
                            height: 50%;
                            background-color: #FF0000;
                            position: relative;
                            overflow: hidden;

                            img {
                                position: absolute;
                                top: 0;
                                left: 0;
                                width: 100%;
                                height: 100%;
                                object-fit: cover;
                                object-position: center;
                                transition: .5s ease;
                            }

                            .sriLabel {
                                position: absolute;
                                top: 5.5%;
                                left: 2%;
                                background-color: var(--purple-main);
                                padding: .5% 2.5% 1%;
                                border-radius: 5px;

                                p {
                                    color: var(--white);
                                }
                            }
                        }

                        .sri-content {
                            width: 100%;
                            height: 50%;
                            padding: 1% 1.75% 1.75%;
                            display: flex;
                            flex-direction: column;
                            justify-content: space-between;

                            .sric-title {
                                width: 100%;

                                h3 {
                                    font-size: 1.4em;
                                    color: var(--black);
                                }
                            }

                            .sric-details {
                                display: flex;
                                justify-content: space-between;
                                align-items: flex-end;

                                .sricd-locDate {
                                    p {
                                        opacity: .5;
                                        color: var(--black);
                                    }
                                }

                                .sricd-date {
                                    border: 2px solid lightgrey;
                                    border-radius: 5px;
                                    width: 27.5%;
                                    padding: 1.5%;

                                    display: flex;
                                    flex-direction: column;
                                    align-items: center;

                                    p {
                                        font-weight: bold;
                                        font-size: 1.2em;
                                        color: var(--black);
                                    }
                                }
                            }
                        }
                    }
                }

            }

            #srLeft {
                position: absolute;
                left: 0;
                top: 42.5%;
                transform: translate(-50%, -50%);
                aspect-ratio: 1/1;
                background-color: var(--white);
                box-shadow: 0 1px 1px 0 lightgrey, 0 1px 2px 0 lightgrey;
                width: 2.5%;
                border-radius: 50%;

                display: flex;
                justify-content: center;
                align-items: center;

                transition: .5s ease;
                opacity: 0;

                img {
                    aspect-ratio: 1/1;
                    width: 75%;
                }

                &:hover {
                    cursor: pointer;
                }
            }

            #srRight {
                position: absolute;
                right: 0;
                top: 42.5%;
                transform: translate(50%, -50%);
                aspect-ratio: 1/1;
                background-color: var(--white);
                box-shadow: 0 1px 1px 0 lightgrey, 0 1px 2px 0 lightgrey;
                width: 2.5%;
                border-radius: 50%;

                display: flex;
                justify-content: center;
                align-items: center;

                transition: .5s ease;
                opacity: 1;

                img {
                    aspect-ratio: 1/1;
                    width: 75%;
                }

                &:hover {
                    cursor: pointer;
                }
            }
        }

        #rated-repeater {
            width: 99%;
            margin-top: 1%;
            position: relative;

            #rrInner {
                width: 100%;
                display: flex;
                overflow-x: hidden;
                padding: .75% 0 .5%;
                scroll-behavior: smooth;

                .rrItem {
                    aspect-ratio: 4/3;
                    width: 23%;
                    background-color: var(--white);
                    box-shadow: 0 3px 3px 0 grey, 0 3px 3px 0 grey;
                    border-radius: 5px;
                    margin: 0 .75%;
                    flex-shrink: 0;
                    overflow: hidden;

                    &:first-child {
                        margin-left: .15%;
                    }

                    &:last-child {
                        margin-right: .15%;
                    }

                    &:hover {
                        a {
                            figure {
                                img {
                                    scale: 1.1;
                                }
                            }
                        }
                    }

                    a {
                        width: 100%;
                        height: 100%;
                        text-decoration: none;

                        figure {
                            width: 100%;
                            height: 50%;
                            background-color: #FF0000;
                            position: relative;
                            overflow: hidden;

                            img {
                                position: absolute;
                                top: 0;
                                left: 0;
                                width: 100%;
                                height: 100%;
                                object-fit: cover;
                                object-position: center;
                                transition: .5s ease;
                            }

                            .rriLabel {
                                position: absolute;
                                top: 5.5%;
                                left: 2%;
                                background-color: var(--purple-main);
                                padding: .5% 2.5% 1%;
                                border-radius: 5px;

                                p {
                                    color: var(--white);
                                }
                            }
                        }

                        .rri-content {
                            width: 100%;
                            height: 50%;
                            padding: 1% 1.75% 1.75%;
                            display: flex;
                            flex-direction: column;
                            justify-content: space-between;

                            .rric-title {
                                width: 100%;

                                h3 {
                                    font-size: 1.4em;
                                    color: var(--black);
                                }
                            }

                            .rric-details {
                                display: flex;
                                justify-content: space-between;
                                align-items: flex-end;

                                .rricd-locDate {
                                    p {
                                        opacity: .5;
                                        color: var(--black);
                                    }
                                }

                                .rricd-date {
                                    border: 2px solid lightgrey;
                                    border-radius: 5px;
                                    width: 27.5%;
                                    padding: 1.5%;

                                    display: flex;
                                    flex-direction: column;
                                    align-items: center;

                                    p {
                                        font-weight: bold;
                                        font-size: 1.2em;
                                        color: var(--black);
                                    }
                                }
                            }
                        }
                    }
                }

            }

            #rrLeft {
                position: absolute;
                left: 0;
                top: 42.5%;
                transform: translate(-50%, -50%);
                aspect-ratio: 1/1;
                background-color: var(--white);
                box-shadow: 0 1px 1px 0 lightgrey, 0 1px 2px 0 lightgrey;
                width: 2.5%;
                border-radius: 50%;

                display: flex;
                justify-content: center;
                align-items: center;

                transition: .5s ease;
                opacity: 0;

                img {
                    aspect-ratio: 1/1;
                    width: 75%;
                }

                &:hover {
                    cursor: pointer;
                }
            }

            #rrRight {
                position: absolute;
                right: 0;
                top: 42.5%;
                transform: translate(50%, -50%);
                aspect-ratio: 1/1;
                background-color: var(--white);
                box-shadow: 0 1px 1px 0 lightgrey, 0 1px 2px 0 lightgrey;
                width: 2.5%;
                border-radius: 50%;

                display: flex;
                justify-content: center;
                align-items: center;

                transition: .5s ease;
                opacity: 1;

                img {
                    aspect-ratio: 1/1;
                    width: 75%;
                }

                &:hover {
                    cursor: pointer;
                }
            }
        }
    }
}