.text-box {
    max-width: 780px;
}


/* Size L */
/* @media (min-width: 64em) {
    .textbox {
        max-width: 780px;
    }
} */

/* Size M */
@media (min-width: 48em) {
    .text-box {
        max-width: 650px;
    }
}

/* Size S */
@media (min-width: 24.5em) {
    .text-box {
        max-width: 520px;
    }
}

.section-info {
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: .75rem;
    margin: auto;
}

.section-info .button-brand {
    align-self: flex-start;
}

.section-title {
    color: var(--text-brand-blue);
    padding-bottom: 24px;
}

/* BULLET POINTS -------------------------------------------------------------- */
.phosphor-check-list {
    list-style: none;
    padding-left: 0;
    padding-top: 8px;
}

.phosphor-check-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 10px;
}

.sub-check-list {
    list-style: none;
    padding-left: 0;
    padding-top: 8px;
}

.sub-check-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 10px;
}

.phosphor-check-list li i {
    margin-right: 8px;
    margin-top: 2px;
    font-size: 18px;
    flex-shrink: 0;
}

.phosphor-check-list li i.decorative {
    margin-right: 8px;
    margin-top: 2px;
    font-size: 24px;
    flex-shrink: 0;
    color: var(--text-brand-yellow);
}

.phosphor-check-list li span,
.phosphor-check-list li div {
    flex: 1;
}

.ol-check-list {
    list-style: none;
    padding-left: 0;
    padding-top: 8px;
    counter-reset: main-counter;
}

.ol-check-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 10px;
    counter-increment: main-counter;
}

.ol-check-list li .number {
    margin-right: 12px;
    margin-top: 3px;
}

.ol-check-list li div {
    flex: 1;
}

/* TABLE OVERRIDE -------------------------------------------------------------- */
.table thead th {
    background-color: var(--bg-brand-blue);
    color: var(--text-display);
    font-weight: 700;
    border-bottom: none;
}

.table {
    border: 1px solid var(--border-subtle);
    border-radius: .5rem;
}

.table-striped tbody tr:nth-of-type(odd) {
    background-color: var(--bg-subtle);
}

.table-striped tbody tr:nth-of-type(even) {
    background-color: var(--bg-input-hover); 
}

/* Layout Overrides */
.row {
    align-items: center;
}

