/* T2C Table Block */

.t2c-table-block {
    width: 100%;
}

.t2c-table-block__inner {
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
    padding: 40px 20px;
    box-sizing: border-box;
}

.t2c-table-block__header {
    display: grid;
    grid-template-columns: 260px 1fr 2fr;
    gap: 30px;
    align-items: center;
    margin-bottom: 22px;
}

.t2c-table-block__header-spacer {
    height: 1px;
}

.t2c-table-block__header-pill {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 82px;
    padding: 0;
    border-radius: 999px;
    color: #ffffff;
    font-weight: 500;
    font-size: 34px;
    line-height: 1.1;
    text-align: center;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.08);
    background: linear-gradient(180deg, #0077be 0%, #1db6e8 100%);
    font-family: var(--global-font-headers) !important;
}

.t2c-table-block__rows {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.t2c-table-block__row {
    display: grid;
    grid-template-columns: 260px 1fr 2fr;
    gap: 30px;
    align-items: center;
}

.t2c-table-block__year-pill {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 82px;
    padding: 0;
    border-radius: 999px;
    color: #ffffff;
    font-weight: 500;
    font-size: 30px;
    line-height: 1.1;
    text-align: center;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.08);
    background: linear-gradient(180deg, #006bb8 0%, #11b3e6 100%);
    font-family: var(--global-font-headers) !important;
}

.t2c-table-block__cell {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 82px;
    padding: 18px 28px;
    border-radius: 999px;
    background: #ffffff;
    border: 3px solid #1db6e8;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.06);
    text-align: center;
    box-sizing: border-box;
}

.t2c-table-block__cell--focus {
    color: #00a6a3;
    font-weight: 500;
    font-size: 26px;
    line-height: 1.25;
    font-family: var(--global-font-headers) !important;
}

.t2c-table-block__cell--purpose {
    color: #2b2b2b;
    font-weight: 500;
    font-size: 20px;
    line-height: 1.35;
}

.t2c-table-block__mobile-title {
    display: none;
    align-items: center;
    justify-content: center;
    min-height: 64px;
    padding: 0;
    border-radius: 999px;
    color: #ffffff;
    font-weight: 500;
    font-size: 24px;
    line-height: 1.1;
    text-align: center;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.08);
    background: linear-gradient(180deg, #0077be 0%, #1db6e8 100%);
    font-family: var(--global-font-headers) !important;
}

.t2c-table-block__empty {
    padding: 18px 22px;
    border: 1px dashed rgba(0,0,0,0.25);
    border-radius: 12px;
    background: rgba(255,255,255,0.7);
}

/* Responsive */

@media (max-width: 1100px) {
    .t2c-table-block__header,
    .t2c-table-block__row {
        grid-template-columns: 220px 1fr 2fr;
        gap: 22px;
    }

    .t2c-table-block__header-pill,
    .t2c-table-block__year-pill {
        font-size: 30px;
        min-height: 76px;
    }

    .t2c-table-block__cell {
        min-height: 92px;
    }

    .t2c-table-block__cell--focus {
        font-size: 24px;
    }
}

@media (max-width: 850px) {
    .t2c-table-block__header {
        display: none;
    }

    .t2c-table-block__row {
        display: flex;
        flex-direction: column;
        gap: 12px;
        align-items: stretch;
    }

    .t2c-table-block__mobile-title {
        display: flex;
        width: 100%;
    }

    .t2c-table-block__year-pill,
    .t2c-table-block__cell {
        width: 100%;
        min-height: 82px;
    }

    .t2c-table-block__cell--purpose {
        font-size: 18px;
    }
}
