.text-cols {
    padding: 100px 0;
    background-color: var(--bg-color)
}

.text-cols__container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px
}

.text-cols__title {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    color: var(--heading-color);
    margin: 0 0 40px;
    font-weight: 700;
    line-height: 1.2;
    text-align: center
}

.text-cols__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px
}

.text-cols__content {
    font-family: var(--font-body);
    font-size: 1.7rem;
    line-height: 1.85;
    color: var(--text-color)
}

.text-cols__content p {
    margin-bottom: 18px;
    font-size: 1.7rem
}

.text-cols__content h2,
.text-cols__content h3,
.text-cols__content h4 {
    font-family: var(--font-heading);
    color: var(--heading-color);
    margin-top: 28px;
    margin-bottom: 14px
}

.text-cols__content h2 {
    font-size: 2.4rem
}

.text-cols__content h3 {
    font-size: 2rem
}

.text-cols__content h4 {
    font-size: 1.7rem
}

.text-cols__content strong {
    color: var(--heading-color);
    font-weight: 600
}

.text-cols__content a {
    color: var(--accent-color);
    text-decoration: underline;
    text-underline-offset: 3px
}

.text-cols__content a:hover {
    color: var(--heading-color)
}

.text-cols__content ul,
.text-cols__content ol {
    padding-left: 24px;
    margin-bottom: 18px
}

.text-cols__content ul li,
.text-cols__content ol li {
    margin-bottom: 8px;
    font-size: 1.7rem;
    line-height: 1.7
}

.text-cols__content blockquote {
    border-left: 4px solid var(--accent-color);
    padding: 14px 20px;
    margin: 24px 0;
    background: var(--badge-color);
    border-radius: 0 var(--radius) var(--radius) 0;
    font-style: italic;
    color: var(--heading-color)
}

.text-cols__content img {
    border-radius: var(--radius);
    max-width: 100%;
    height: auto;
    margin: 20px 0
}

@media(max-width:768px) {
    .text-cols__title {
        font-size: 2.6rem;
        margin-bottom: 32px
    }

    .text-cols__grid {
        grid-template-columns: 1fr;
        gap: 40px
    }
}