/* WEBSITE CONTENT */
@media only screen and (min-width: 1320px) {
    .website_content {
        width: 1220px;
    }
}

/* FIRST TITLE */
#compilations {
    top: -59px;
}

#leditors {
    top: -59px;
}

.title {
    margin-bottom: 20px;
}
.website_content .title .anchor {
    top: -36px;
}
.website_content p {
    margin: 20px 50px 0 50px;
}
.website_content .grayed_out {
    color: rgba(255, 255, 255, 0.75);
    font-size: 20px;
    line-height: 26px;
    & b {
        color: rgba(255, 255, 255, 0.75);
        font-size: 20px;
        line-height: 26px;
        font-weight: 500;
    }
}
.website_content .grid a p {
    font-size: 20px;
    line-height: 26px;
}

.website_content .grid {
    padding-top: 0px;
}

.website_content ul {
    margin: 20px 50px 0 50px;
}
.website_content  li::marker {
    content: '— ';
}

.website_content h3 {
    margin: 50px 50px 0 50px;
    font-family: 'Red Hat Display';
    font-style: normal;
    font-weight: 300;
    font-size: 36px;
    line-height: 48px;
}

.website_content .content {
    margin: 0 50px;
}

.selector {

    margin-top: 20px;



    & .buttons {

        height: 50px;
        display: flex;
    
    
        & .button {
            position: relative;
            border: none;
            background-color: rgba(0, 0, 0, 0.25);
        
            display: flex;
            align-items: center;
            width: fit-content;
            height: 100%;
            padding: 0 30px;

            user-select: none;
        
            font-family: 'Red Hat Display';
            font-weight: 300;
            font-size: 20px;
            line-height: 26px;
            text-wrap: nowrap;


            transition-property: all;
            transition: 0.15s ease 0s;

            & input {
                margin: 0;

                position: absolute;
                left: 0;
                top: 0;
                width: 100%;
                height: 100%;
                opacity: 0;
                cursor: pointer;
            }
        }
    }
}

.selector .buttons .button:before {
    position: absolute;
    z-index: -1;
    left: 0;
    content: "";
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.25) 100%);
    opacity: 0;
    transition: opacity 0.15s ease 0s;
}

.selector .buttons .button:hover:before {
    opacity: 100%;
}
.selector .buttons .button:has(input:checked):hover:before {
    opacity: 0;
}
.selector .buttons .button:has(input:checked) {
    background-color: rgba(0, 0, 0, 0.5);
}

.selector_content {
    position: relative;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    border: solid;
    border-width: 0 0 4px 0;
    border-color: rgba(255, 255, 255, 0.75);
    transition: height 0.15s ease 0s;
}
.selector_content .option {
    display: flex;
    position: absolute;
    left: 0;
    width: 100%;
    transition: opacity 0.15s ease 0s, left 0.15s ease 0s;
}
.website_content .image_text_grid {
    margin: 20px;
    position: relative;

    display: grid;
    grid-template-columns: 70px auto;
    column-gap: 20px;
    row-gap: 20px;

}
.website_content .image_text_grid .text p {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    margin: 0;
}
.website_content .selector .image_text_grid {
    margin: 0 20px;
    padding: 20px 0;
}