div#container {
    display: flex;
    justify-content: space-around;
    gap: 2vw;
}

    div#container > section#left {
        background: var(--color-surface);
        padding: 3vw;
        width: 54vw;
        box-shadow: var(--shadow-soft);
        border-radius: 0.5vw;
        transition: all 0.3s ease;
        border: 1px solid var(--color-border-strong);
    }
    
    div#container > section#left:hover {
        box-shadow: var(--shadow-hover);
        transform: translateY(-2px);
    }
            div#container > section#left > div#one > div#title {
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
            }

            div#container > section#left > div#one > div#title > h1 {
                color: var(--color-heading);
                font-size: 2.5vw;
                background: linear-gradient(135deg, #7D45FF, #FF095A);
                -webkit-background-clip: text;
                -webkit-text-fill-color: transparent;
                background-clip: text;
                font-weight: bold;
            }                div#container > section#left > div#one > div#title > hr {
                    margin-top: 0.2vw;
                    width: 3vw;
                    border: 0.05vw #8B0FE8 solid;
                }

                div#container > section#left > div#one > div#title > h4 {
                    margin-top: 0.2vw;
                    color: var(--color-text-secondary);
                    font-size: 1.5vw;
                }

            div#container > section#left > div#one > div#media {
                margin-top: 1.5vw;
            }

                div#container > section#left > div#one > div#media > iframe {
                    width: 54vw;
                    height: 30.375vw;
                    display: block;
                }

            div#container > section#left > div#one > div#text {
                margin-top: 1.5vw;
                font-size: 1vw;
                display: flex;
                flex-direction: column;
                align-items: flex-start;
                justify-content: center;
            }

            div#container > section#left > div#one > div#text.quote {
                border-left: 0.2vw #FF095A solid;
                background: var(--color-quote-background);
                padding: 0.4vw 0.6vw 0.4vw 0.6vw;
            }

                div#container > section#left > div#one > div#text > p {
                    text-align: justify;
                    margin: 0;
                }

                div#container > section#left > div#one > div#text > h4 {
                    font-size: 1.3vw;
                    font-weight: 600;
                    margin-bottom: -0.6vw;
                }

                    div#container > section#left > div#one > div#text > p > i {
                        font-style: italic;
                    }

                    div#container > section#left > div#one > div#text > p > b {
                        font-weight: bold;
                    }

                    div#container > section#left > div#one > div#text > p > code {
                        font-family: 'Courier New', monospace;
                        color: var(--color-text-primary);
                    }

                div#container > section#left > div#one > div#text > p:nth-child(n+2) {
                    margin-top: 1vw;
                }

            div#container > section#left > div#one > div#stats {
                margin-top: 1.5vw;
                font-size: 1vw;
                display: flex;
                align-items: center;
                justify-content: center;
            }

            div#container > section#left > div#one > div#stats > div#one {
                color: var(--color-text-inverse);
                width: 100%;
                padding: 1vw 0;
                display: flex;
                align-items: center;
                justify-content: space-around;
                border-radius: 0.3vw;
                position: relative;
                overflow: hidden;
            }
            
            div#container > section#left > div#one > div#stats > div#one::before {
                content: '';
                position: absolute;
                top: -50%;
                left: -50%;
                width: 200%;
                height: 200%;
                background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
                transform: rotate(45deg);
                transition: all 0.5s;
            }
            
            div#container > section#left > div#one > div#stats > div#one:hover::before {
                left: 100%;
            }                div#container > section#left > div#one > div#stats.one > div#one {
                    background: #7D45FF;
                }

                div#container > section#left > div#one > div#stats.two > div#one {
                    background: #8B0FE8;
                }

                div#container > section#left > div#one > div#stats.three > div#one {
                    background: #DA1EFF;
                }

                div#container > section#left > div#one > div#stats.four > div#one {
                    background: #E80FC0;
                }

                div#container > section#left > div#one > div#stats.five > div#one {
                    background: #FF095A;
                }

                    div#container > section#left > div#one > div#stats > div#one > div#article {
                        display: flex;
                        flex-direction: column;
                        align-items: center;
                        justify-content: center;
                    }

                        div#container > section#left > div#one > div#stats > div#one > div#article > h4 {
                            font-size: 2.5vw;
                            font-weight: bold;
                        }
                                
                        div#container > section#left > div#one > div#stats > div#one > div#article > p {
                            font-size: 1vw;
                        }

div#container > section#right {
    box-shadow: var(--shadow-soft);
    background: var(--color-surface);
    width: 26vw;
    padding: 1vw;
    border-radius: 0.5vw;
    transition: all 0.3s ease;
    border: 1px solid var(--color-border-strong);
}

div#container > section#right:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-2px);
}

    div#container > section#right > div#one {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1vw;
    }

        div#container > section#right > div#one > div#one {
            margin-bottom: 1vw;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

            div#container > section#right > div#one > div#one > h2 {
                color: var(--color-heading);
                font-size: 1.5vw;
            }

            div#container > section#right > div#one > div#one > hr {
                margin-top: 0.2vw;
                width: 3vw;
                border: 0.05vw #8B0FE8 solid;
            }

        div#container > section#right > div#one > div#two {
            position: relative;
        }

            div#container > section#right > div#one > div#two > div {
                    width: 26vw;
                    height: 25vw;
                    background: url('../../images/article.png');
                    background-size: cover;
                    border-radius: 0.5vw;
                    overflow: hidden;
                    position: relative;
                    transition: all 0.3s ease;
                    display: flex;
                    flex-direction: column;
                    justify-content: flex-end;
                    gap: 0.6vw;
                    padding: 1.2vw;
                }
            
            div#container > section#right > div#one > div#two > div:hover {
                transform: scale(1.02);
                box-shadow: 0 0 1.5vw rgba(125, 69, 255, 0.4);
            }

                div#container > section#right > div#one > div#two > div > h2,
                div#container > section#right > div#one > div#two > div > h3 {
                    padding: 0.4vw 0.8vw;
                    background: rgba(0, 0, 0, 0.6);
                    color: #fff;
                    font-size: 1.1vw;
                    line-height: 1.2;
                    border-radius: 0.4vw;
                    margin: 0;
                    position: relative;
                    z-index: 3;
                    pointer-events: none;
                }

                div#container > section#right > div#one > div#two > div > h3 {
                    font-size: 0.9vw;
                    opacity: 0.85;
                }

                div#container > section#right > div#one > div#two > div > a {
                    position: absolute;
                    inset: 0;
                    z-index: 2;
                }

        div#container > section#right > div#one > div#three {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 1.1vw;
            width: 100%;
        }

            div#container > section#right > div#one > div#three > div {
                height: 11.5vw;
                background: url('../../images/article.png');
                background-size: cover;
                margin-top: 0;
                border-radius: 0.5vw;
                overflow: hidden;
                position: relative;
                transition: all 0.3s ease;
                display: flex;
                flex-direction: column;
                justify-content: flex-end;
                gap: 0.5vw;
                padding: 0.8vw;
                box-sizing: border-box;
            }
            
            div#container > section#right > div#one > div#three > div:hover {
                transform: scale(1.05);
                box-shadow: 0 0 1vw rgba(255, 9, 90, 0.4);
            }

                div#container > section#right > div#one > div#three > div > h2,
                div#container > section#right > div#one > div#three > div > h3 {
                    padding: 0.35vw 0.6vw;
                    background: rgba(0, 0, 0, 0.6);
                    color: #fff;
                    font-size: 1.1vw;
                    line-height: 1.2;
                    border-radius: 0.3vw;
                    margin: 0;
                    position: relative;
                    z-index: 3;
                    pointer-events: none;
                }

                div#container > section#right > div#one > div#three > div > h3 {
                    font-size: 0.9vw;
                    opacity: 0.85;
                }

                div#container > section#right > div#one > div#three > div > a {
                    position: absolute;
                    inset: 0;
                    z-index: 2;
                }

    div#container > section#right > div#two {
        margin-top: 3vw;
        display: flex;
        flex-direction: column;
        align-items: center;
        height: auto;
        width: 100%;
        gap: 1.2vw;
    }

        div#container > section#right > div#two > div#one {
            margin-bottom: 1vw;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

            div#container > section#right > div#two > div#one > h2 {
                color: var(--color-heading);
                font-size: 1.5vw;
            }

            div#container > section#right > div#two > div#one > hr {
                margin-top: 0.2vw;
                width: 3vw;
                border: 0.05vw #8B0FE8 solid;
            }

        div#container > section#right > div#two > div#two {
            height: auto;
            max-height: 360px;
            width: 100%;
            overflow: auto;
        }

@media (max-width: 1200px) {
    div#container {
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        gap: 2rem;
    }

    div#container > section#left,
    div#container > section#right {
        width: auto;
        margin: 0 1rem;
    }
}

@media (max-width: 768px) {
    div#container {
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        padding: 1rem !important;
        gap: 1.25rem;
    }

    div#container > section#left,
    div#container > section#right {
        padding: 1.5rem;
        width: 100%;
        box-sizing: border-box;
        margin: 0;
    }

    div#container > section#right {
        order: -1;
    }

    div#container > section#left > div#one > div#title > h1 {
        font-size: 1.75rem;
        line-height: 1.3;
    }

    div#container > section#left > div#one > div#title > h4 {
        font-size: 1.1rem;
        line-height: 1.4;
    }

    div#container > section#left > div#one > div#title > hr {
        width: 3rem;
        margin-top: 0.5rem;
    }

    div#container > section#left > div#one > div#text {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    div#container > section#left > div#one > div#text > p {
        text-align: left;
    }

    div#container > section#left > div#one > div#stats > div#one {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1.5rem 0;
    }

    div#container > section#left > div#one > div#stats > div#one > div#article > h4 {
        font-size: 2rem;
    }

    div#container > section#left > div#one > div#stats > div#one > div#article > p {
        font-size: 1rem;
    }

    div#container > section#right > div#one > div#one {
        margin-bottom: 0.6rem;
    }

    div#container > section#right > div#one > div#one > h2,
    div#container > section#right > div#two > div#one > h2 {
        font-size: 1.5rem;
        margin-bottom: 0.3rem;
    }

    div#container > section#right > div#one > div#one > hr,
    div#container > section#right > div#two > div#one > hr {
        margin-top: 0.3rem;
        margin-bottom: 0.6rem;
    }

    div#container > section#right > div#one > div#two > div {
        width: 100%;
        height: 200px;
        padding: 1.1rem;
        gap: 0.7rem;
    }

    div#container > section#right > div#one > div#two > div > a {
        width: 100%;
        height: 100%;
    }

    div#container > section#right > div#one > div#three {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1rem;
    }

    div#container > section#right > div#one > div#three > div {
        height: 160px;
        min-height: 140px;
        padding: 0.9rem;
        gap: 0.6rem;
        box-sizing: border-box;
    }

    div#container > section#right > div#one > div#three > div > a {
        width: 100%;
        height: 100%;
    }

    div#container > section#right > div#one > div#two > div > h2 {
        font-size: 1.1rem;
        padding: 0.4rem 0.7rem;
    }

    div#container > section#right > div#one > div#three > div > h2 {
        font-size: 1rem;
        padding: 0.35rem 0.6rem;
    }

    div#container > section#right > div#one > div#two > div > h3,
    div#container > section#right > div#one > div#three > div > h3 {
        font-size: 0.9rem;
        padding: 0.35rem 0.6rem;
    }

    div#container > section#right > div#two {
        margin-top: 1.5rem;
        height: auto;
        gap: 1rem;
    }

    div#container > section#right > div#two > div#one {
        margin-bottom: 0.8rem;
    }

    div#container > section#right > div#two > div#two {
        height: auto;
        min-height: 320px;
        max-height: 360px;
        width: 100%;
    }
}