.dko-text-column {
    display: flex;
    flex-direction: column;
    padding: 50px var(--global-lateral-padding);
}
.dko-text-column__text-container.centered {
    text-align: center;
}

.dko-text-column__title {
    font-size: 48px;
    line-height: 64px;
}
.dko-text-column__text {
    margin: 45px 0;    
}

.dko-text-column__text.has_column {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 4%;
    text-align: left;
}
.dko-text-column__column {
    width: 100%;
}

.dko-text-column__text.has_column .dko-text-column__column {
    width: 48%;
}

.dko-text-column__column strong,
.dko-text-column__column b {
    font-weight: 700; 
}

.dko-text-column__column em { 
    font-style: italic;
    font-weight: 300;
}
.dko-text-column__column a {
    color: var(--crf--shiny-blue);
}

.cta-container.centered {
    display: flex;
    justify-content: center;
    align-items: center;
}
.cta-container {
    display: flex;
}

@media screen and (max-width: 990px) {
    .dko-text-column__text.has_column .dko-text-column__column {
        width: 100%;    
    }
    .dko-text-column__text.has_column .dko-text-column__column:last-child {
        margin-top: 30px;
    }
}

@media screen and (max-width: 768px) {
    .dko-text-column__title {
        font-size: 32px;
        line-height: 36px;
    }
    .dko-text-column__column {
        font-size: 16px;
        line-height: 28px;   
    }
    .dko-text-column__text {
        margin: 25px 0;    
    }
    .dko-text-column__text.has_column .dko-text-column__column:last-child {
        margin-top: 20px;
    }
}