.container.page-container{
    max-width: 800px;
}

.page-title{
    text-align: center;
    leading-trim: both;
    text-edge: cap;
    font-size: 64px;
    font-style: normal;
    font-weight: 700;
    line-height: 115%;
    margin: 60px 0 64px;
    background: linear-gradient(180deg, #FFF 47.74%, #C5B6D3 100%);
    background: linear-gradient(180deg, color(display-p3 1 1 1) 47.74%, color(display-p3 0.7627 0.7155 0.8179) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@media (max-width: 768px){
    .page-title{
        margin: 15px 0 40px;
        font-size: 32px;
    }
}

.page-content{
    color: #FFF;
    leading-trim: both;
    text-edge: cap;
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: 135%;
    margin: 0 0 60px;
}

.page-content a{
    text-decoration: underline;
    text-underline-offset: 4px;

    &:hover{
        text-decoration: none;
    }
}

.page-content h2{
    margin: 40px 0 20px;
    color: #FFF;
    leading-trim: both;
    text-edge: cap;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 135%;
}

.page-content h3{
    margin: 40px 0 20px;
    color: #FFF;
    leading-trim: both;
    text-edge: cap;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 135%; 
}

.page-content table{
    min-width: 100%;
    table-layout: fixed;
    margin: 55px 0;
    color: #FFF;
    leading-trim: both;
    text-edge: cap;
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: 135%;
    word-break: break-word;
}

@media (max-width: 768px){
    .page-content table{
        margin: 25px 0;
        width: 800px !important;
    }

    .table-wrapper{
        margin: 0 -20px;
        overflow-y: auto;
    }
}

.page-content tr{
    border: 1px solid #3E3751;
    border: 1px solid color(display-p3 0.2392 0.2157 0.3098);

    &:nth-child(odd){
        background: rgba(255, 255, 255, 0.10);
        background: color(display-p3 1 1 1 / 0.10);
    }
}

.page-content tr + tr{
    border-top: 0;
}

.page-content td{
    padding: 24px;
    vertical-align: top;
}

.page-content td + td{
    border-left: 1px solid #3E3751;
}