.tech-section {
    padding: 80px 24px;
    background: #ffffff;
}

/*.tech-section__container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 55% 45%;
    gap: 60px;
    align-items: center;
}*/

.tech-section__container {
    max-width: var(--container-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 55% 45%;
    grid-template-areas:
        "image   header"
        "image   features";
    column-gap: 60px;
    row-gap: 24px;
    align-items: start;
}

/* ─── Левая колонка: изображение ─── */
/*.tech-section__image-col {
    display: flex;
    align-items: center;
    justify-content: center;
}*/

.tech-section__image-col {
    grid-area: image;
    display: flex;
    align-items: flex-end;
}

.tech-section__image {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    border-radius: 16px;
}

/* ─── Правая колонка: контент ─── */
.tech-section__content-col {
    display: flex;
    flex-direction: column;
    gap: 36px;
    height: 85%;
}

/* ─── Заголовки ─── */
/*.tech-section__header {
    display: flex;
    flex-direction: column;
    gap: 55px;
}*/
.tech-section__header {
    grid-area: header;
    display: flex;
    flex-direction: column;
    gap: 55px;
}

.tech-section__subheader {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.tech-section__title {
    font-family: var(--font-main);
    font-size: 24px;
    font-weight: 700;
    color: var(--color-primary);
    margin: 0;
    line-height: 1.25;
}

.tech-section__subtitle {
    font-family: var(--font-main);
    font-size: 22px;
    font-weight: 500;
    color: var(--color-primary);
    margin: 0;
    line-height: 1.35;
}

.tech-section__intro {
    font-family: var(--font-main);
    font-size: 15px;
    font-weight: 400;
    color: var(--color-primary);
    margin: 0;
    line-height: 1.75;
    max-width: 90%;
}

/* ─── Список характеристик ─── */
/*.tech-features {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
}*/

.tech-features {
    grid-area: features;
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 90%;
}

.tech-feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.tech-feature__icon-wrap {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tech-feature__icon {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.tech-feature__body {
    display: flex;
    flex-direction: column;
    gap: 6px;
    max-width: 85%;
}

.tech-feature__title {
    font-family: var(--font-main);
    font-size: 16px;
    font-weight: 500;
    color: var(--color-black);
    margin: 0;
    line-height: 1.4;
}

.tech-feature__text {
    font-family: var(--font-main);
    font-size: 14px;
    font-weight: 400;
    color: var(--color-black);
    margin: 0;
    line-height: 1.65;
}

@media (max-width: 768px) {
    .tech-section__container {
        grid-template-columns: 1fr 1fr;
        grid-template-areas:
            "header    features"
            "image     features";
        column-gap: 16px;
        row-gap: 16px;
    }

    .tech-features {
        background-color: var(--color-blue-light);
        padding: 12px;
    }

    .tech-section__header {
        gap: 25px;
    }

    .tech-section__title {
        font-size: 20px;
    }

    .tech-section__subtitle {
        font-size: 17px;
    }

    .tech-section {
        padding: 40px 16px;
    }
}

@media (max-width: 600px) {
    .tech-section__container {
        grid-template-columns: 1fr 1fr;
        grid-template-areas:
            "title      title"
            "subheader  image"
            "features   features";
        column-gap: 16px;
        row-gap: 16px;
    }
    .tech-section__header {
        display: contents;
    }
    .tech-section__title {
        grid-area: title;
        text-align: center;
        font-size: 18px;
    }
    .tech-section__subheader {
        grid-area: subheader;
    }
    .tech-section__subtitle {
        font-size: 14px;
    }
    .tech-section__intro {
        font-size: 13px;
    }
    .tech-section__image-col {
        grid-area: image;
    }
    .tech-features {
        grid-area: features;
	max-width: 100%;
    }
    .tech-section__title {
        font-size: 23px;
    }
}
