h2#updates-header {
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--vitta-orange-light);
    text-transform: uppercase;
    text-align: center;
}

#jumbotron {
    background-color: var(--bg-2);
    padding: 3rem 0;
}

#jumbotron h3 {
    font-weight: 800;
    margin-bottom: 1rem;
    text-transform: uppercase;
    text-align: center;
    color: var(--text-0);
}

#jumbotron h3>span {
    color: var(--vitta-orange-light);
}

.update-jumbo-cards {
    display: flex;
    flex-direction: row;
    align-content: center;

    max-width: 125ch;
    margin: 0 auto;
}

@media (max-width: 767px) {
    .update-jumbo-cards {
        flex-direction: column;
    }
}

.update-jumbo-cards>.update-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-wrap: nowrap;

    flex: 1;

    text-align: center;
    align-content: center;

    border-radius: 0.5em;
    padding: 1rem;
    margin: 1rem;

    background: var(--bg-1);
    border: 2px solid var(--vitta-shadow-color);
}

#website-updates h3 {
    font-weight: 700;
    color: var(--text-1);
    font-size: 1.35rem;

}

#website-updates #website-updates-table>tr {
    display: grid;
    grid-template-columns: auto max-content auto auto;
    align-items: center;

    gap: 1em;
    padding: 0.25rem 0.5rem;

    border: 1px solid var(--vitta-shadow-color);
    border-radius: 1rem;
}

#website-updates #website-updates-table .website-update-icon img {
    width: 4rem;
    height: auto;
}

#website-updates #website-updates-table .website-update-info h4 {
    margin-bottom: 0px;
    font-weight: 600;
    font-size: inherit;
}

#website-updates #website-updates-table .website-update-desc {
    min-width: 100%;
    max-width: 100%;

    overflow: hidden;
    text-overflow: ellipsis;
    overflow: hidden;

    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

@media (max-width: 767px) {

    #website-updates #website-updates-table>tr {
        grid-template-columns: auto 1fr;
        grid-template-rows: auto auto auto;
    }

    #website-updates #website-updates-table .website-update-desc,
    #website-updates #website-updates-table .website-update-link {
        grid-column-end: 3;
        grid-column-start: 1;
    }

    #website-updates #website-updates-table .website-update-link a{
        width: 100%;
    }
}

#server-status h3 {
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    color: var(--vitta-green);
}

#website-info h3 {
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1rem;
}

#website-info #website-info-container {
    display: flex;
    flex-direction: row;
    align-content: center;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 2rem;
    border: 1px solid var(--vitta-shadow-color);
    border-radius: 1rem;
}

#website-info #website-info-container>* {
    flex: 1;
}

#website-info #website-info-container>*>h4 {
    font-size: 1rem;
    font-weight: 700;
}

#website-info #website-info-container>*>p {
    margin-bottom: unset;
}

@media (max-width: 767px) {
    #website-info #website-info-container {
        flex-direction: column;
    }
}