        .parent {
            margin: 05vh 10vh;
            display: grid;
            /* height: 100vh; */
            gap: 2%;
            grid-template-columns: repeat(6, minmax(0, 1fr));
        }

        .rightContainer {
            display: flex;
            flex-direction: column;
            width: 100%;
            grid-column: span 2 / span 2;
        }

        .newsContainer {
            grid-column: span 4 / span 4;
        }

        .adsContainer {
            /* grid-area: 1 / 3 / 2 / 4; */
            background-color: rgb(255, 255, 255);
            /* height: 400px; */
            aspect-ratio: 4/5;
            margin: 0 5%;
            display: flex;
            justify-content: center;
            align-items: center;
            border-radius: 20px;
        }

        .newsContainer .contentDescription {
            color: white !important;
            padding: 10px;
            background: rgba(0, 0, 0, 0.2);
            border-radius: 8px;
            font-size: 1rem;
        }

        .newsContainer .contentDescription * {
            color: white !important;
        }

        .newsContainer .contentDescription a {
            color: #E19625 !important;
            text-decoration: underline;
        }

        .suggestionContainer {
            display: flex;
            flex-direction: column;
            padding: 50px;
            gap: 10px;
        }

        .suggestionContainer .topUpLink {
            border: 1px solid #E19625;
            padding: 10px 30px;
            border-radius: 20px;
            text-align: center;
            text-decoration: none;
            font-weight: bold;
        }

        .suggestionContainer .topUpLink:hover {
            background-color: #E19625;
        }

        .suggestionContainer .title {
            font-size: 1.5em;
        }

        .news {
            text-decoration: none;
        }

        .news:hover {
            color: #E19625;
        }

        .newsImage {
            width: 300px;
            height: 150px;
            background-color: white;
            background-position: center;
            background-size: cover;
            background-repeat: no-repeat;
            border-radius: 20px;
        }

        .recomendation .newsImage {
            width: 300px;
            height: 150px;
            background-color: white;
            background-position: center;
            background-size: cover;
            background-repeat: no-repeat;
            border-radius: 20px;
        }

        .news .contentTitle {
            font-size: 1.3em;
        }

        .news .newsTitle {
            font-size: 1em;
        }

        .contentImage {
            width: auto;
            height: 400px;
            background-color: white;
            background-position: center;
            background-size: cover;
            background-repeat: no-repeat;
            border-radius: 20px;
        }

        .newsCategory {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            padding-top: 7vh
        }

        .newsCategory .category {
            text-decoration: none;
            font-weight: bold;
            padding: 5px 20px;
            background-color: #e19625c7;
            color: white;
            border-radius: 20px;
            /* border-inline-end: 2px solid ; */

        }

        .newsCategory .category:hover {
            color: rgb(14, 77, 164);
        }

        .lineBreak {
            /* width: 5px; */
            height: 20px;
            border-inline-start: 2px solid white;
        }

        .newsDescription {
            color: white !important;
        }

        .recomendationContainer {
            display: flex;
            flex-direction: row;
        }

        .recomendationContainer .news {
            width: calc(100%/3);
        }

        .newsDescription_md {
            display: none;
        }

        .newsDescription_xl {
            display: block;
        }

        .categoryDropdown {
            display: none;
        }

        @media screen and (max-width: 992px) {
            .parent {
                margin: 20px 2vh;
            }

            .newsCategory {
                padding-top: 5vh;
                font-size: 0.8em;
                /* width: 70%; */
            }

            .suggestionContainer {
                /* background-color: salmon; */
                height: 60vh;
                padding: 10px;

            }

            .adsContainer {
                background-color: rgb(255, 255, 255);
                /* height: 275px; */
                aspect-ratio: 9/14;
                margin: 0 5%;
                display: flex;
                justify-content: center;
                align-items: center;
                border-radius: 20px;
            }

            .suggestionContainer .topUpLink:hover {
                background-color: #E19625;
            }

            .suggestionContainer .title {
                font-size: 1.5em;
            }

            .news {
                text-decoration: none;
            }

            .news:hover {
                color: #E19625;
            }

            .newsImage {
                width: 300px;
                height: 150px;
                background-color: white;
                background-position: center;
                background-size: cover;
                background-repeat: no-repeat;
                border-radius: 20px;
            }

            .recomendation .newsImage {
                width: 300px;
                height: 150px;
                background-color: white;
                background-position: center;
                background-size: cover;
                background-repeat: no-repeat;
                border-radius: 20px;
            }

            .news .contentTitle {
                font-size: 1.2em;
            }

            .news .newsInformation {
                font-size: 0.8em;
            }

            .news .contentDescription {
                font-size: 0.8em;
            }

            .news .newsTitle {
                font-size: 1em;
                /* background-color: #E19625; */
                /* width: 100%; */
            }

            .contentImage {
                width: auto;
                height: 300px;
                /* aspect-ratio: 11/5; */
                background-color: white;
                background-position: center;
                background-size: cover;
                background-repeat: no-repeat;
                border-radius: 20px;
            }

            .recomendation {
                width: 100vw;
                padding-right: 5%;
            }

            .recomendationContainer {
                flex-direction: column;
            }

            .recomendationContainer .news {
                width: calc(100%/1);
            }

            .newsDescription_md {
                display: block;
            }

            .newsDescription_xl {
                display: none;
            }
        }

        @media screen and (max-width: 640px) {
            .parent {
                margin: 20px 2vh;
                display: grid;
                grid-template-columns: repeat(1, minmax(0, 1fr));
                gap: 0;
            }

            .news .newsInformation {
                font-size: 0.8em;
            }

            .news .contentDescription {
                font-size: 0.8em;
            }

            .categoryDropdown {
                display: block;
                text-decoration: none;
                text-align: center;
                align-content: center;
                font-weight: bold;
                padding: 10px 20px;
                width: 200px;
                height: 50px;
                background-color: #e19625c7;
                color: white;
                border-radius: 20px;
            }

            .adsContainer {
                background-color: rgb(255, 255, 255);
                /* height: 275px; */
                aspect-ratio: 9/10;
                margin: 0 5%;
                display: flex;
                justify-content: center;
                align-items: center;
                border-radius: 20px;
            }

            .suggestionContainer {
                height: 70vh;
            }

            .newsImage {
                width: 150px;
                height: 75px;
            }

            .recomendationContainer {
                flex-direction: column;
            }

            .recomendationContainer .news {
                width: calc(100%/1);
            }

            .contentImage {
                width: auto;
                height: 200px;
                background-color: white;
                background-position: center;
                background-size: cover;
                background-repeat: no-repeat;
                border-radius: 20px;
            }

            .recomendation .newsImage {
                width: 100%;
                height: 200px;
            }

            .newsCategory {
                width: 100%;
                height: 15vh;
                display: grid;
                padding-top: 3vh;
                /* margin-bottom: 2vh; */
            }

            .newsCategory .category {
                display: none;

            }

            .newsCategory .category:hover {
                color: rgb(14, 77, 164);
            }

            .lineBreak {
                /* width: 5px; */
                height: 20px;
                border-inline-start: 2px solid white;
            }

            .newsDescription_md {
                display: none;
            }

            .newsDescription_xl {
                display: none;
            }
        }
