/**
 * Title Description Items Section Block
 *
 * Full-width white section: centred navy title, description and a two-column
 * bulleted item list (navy text and bullets).
 * Matches child-theme-sections-screenshots/title-description-items-section.png
 */

:root {
    --color-navy: #385d8c;
    --color-pale: #eef3f8;
    --color-teal: #93cddc;
    --color-sky:  #d2eaf0;
    --color-text: #787878;
    --color-white: #ffffff;
}

.tdis {
    background-color: var(--color-white);
    font-family: 'Roboto', sans-serif;
    padding: 60px 0;
    padding-bottom: 0 !important;
}

.tdis__container {
    max-width: var(--theme-normal-container-max-width, 1290px);
    width: var(--theme-container-width, 100%);
    margin: 0 auto;
    padding: 0 20px;
}

.tdis__title {
    color: var(--color-navy);
    font-weight: 700;
    font-size: 30px;
    line-height: 1.3;
    text-align: center;
    margin: 0 0 24px;
}

.tdis__intro {
    color: var(--color-text);
    font-size: 18px;
    line-height: 1.6;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 40px;
}

.tdis__intro p {
    color: inherit;
    margin: 0 0 1em;
}

.tdis__intro p:last-child {
    margin-bottom: 0;
}

/* Two-column item list, centred as a group */
.tdis__columns {
    display: grid;
    grid-template-columns: repeat(2, auto);
    justify-content: center;
    gap: 16px 70px;
    max-width: 900px;
    margin: 0 auto;
}

.tdis__list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.tdis__item {
    position: relative;
    color: var(--color-navy);
    font-size: 19px;
    font-weight: 600;
    line-height: 1.5;
    padding-left: 28px;
    margin-bottom: 16px;
}

.tdis__item:last-child {
    margin-bottom: 0;
}

.tdis__item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.4em;
    width: 12px;
    height: 12px;
    background-color: var(--color-navy);
    border-radius: 50%;
}

/* Tablet */
@media (min-width: 769px) and (max-width: 1023px) {
    .tdis__title {
        font-size: 26px;
    }

    .tdis__columns {
        gap: 14px 40px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .tdis {
        padding: 45px 0;
    }

    .tdis__title {
        font-size: 24px;
    }

    .tdis__intro {
        font-size: 16px;
    }

    .tdis__columns {
        grid-template-columns: 1fr;
        gap: 16px;
        max-width: 420px;
    }

    .tdis__item {
        font-size: 17px;
    }
}
