/* .text-content-block {
    padding: 48px 0;
} */

.text-content-block .content-wrapper {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 24px;
}

.text-content-block .text-wrapper {
    width: calc(50% - 24px);
    flex: 1 auto;
}

.text-content-block .text-wrapper.w-100 {
    width: 100%;
}

.text-content-block iframe {
    width: 100%;
    height: auto;
    aspect-ratio: 1620 / 633;
}

.text-content-block .block-title.title-inner {
    margin-left: 0;
}

.text-content-block .text-content,
.text-content-block .text-wrapper {
    display: flex;
    flex-direction: column;
}

.text-content-block .text-wrapper {
    gap: 48px;
}

.text-content-block .text-content {
    gap: 8px;
}

.text-content-block .text-wrapper h3 {
    font-size: 22px;
    font-family: 'Alegreya Sans';
}

.text-content-block .text-wrapper ul {
    margin: 0;
    padding-left: 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    color: var(--content);
}

.text-content-block table {
    margin: 32px 0;
}

.text-content-block table:last-of-type {
    margin-bottom: 0;
}

@media (max-width:991px) {

    .text-content-block .text-content,
    .text-content-block .text-wrapper {
        gap: 24px;
    }

    .text-content-block .text-wrapper {
        width: 100%;
        gap: 32px;
    }

    .text-content-block .text-wrapper ul {
        gap: 12px;
    }
}