.tc-about {
    padding: 40px 0;
}

.tc-about__content {
    position: relative;
}

.tc-about__content h2 {
    color: var(--color-bronze);
    margin-bottom: 12px;
    max-width: 450px;
}

.tc-about__content p {
    max-width: 450px;
}

.tc-about__image {
    position: relative;
    margin-bottom: 32px;
}

.tc-about__image img {
    width: 100%;
    height: auto;
}

@media only screen and (min-width: 767px) {
    .tc-about__inner > .container {
        display: flex;
        flex-flow: row;
        justify-content: space-between;
        gap: 60px;
        align-items: center;
    }

    .tc-about__content {
        flex: 0 0 60%;
    }

    .tc-about__image {
        flex: 1;
        margin-bottom: 0;
    }
}