/* Flexible Content — Text + Image */

.fc-text-image .container {
    padding-top: 100px;
    padding-bottom: 100px;
    flex-direction: column;
}

.fc-text-image__inner {
    display: flex;
    flex-direction: row;
    gap: 5.6vw;
    align-items: center;
    justify-content: flex-start;
    align-self: stretch;
}

/* Реверс — картинка слева */
.fc-text-image--reverse .fc-text-image__inner {
    flex-direction: row-reverse;
}

/* Контент */
.fc-text-image__content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
    flex: 1;
    min-width: 0;
}

.fc-text-image__label {
    color: var(--text);
    font-family: "Open Sans", sans-serif;
    font-size: 18px;
    line-height: 130%;
    font-weight: 800;
    text-transform: uppercase;
}

.fc-bg--dark .fc-text-image__label {
    color: var(--white);
}

.fc-text-image__title {
    color: var(--text);
    font-family: var(--h2-font-family);
    font-size: clamp(32px, 5vw, 64px);
    line-height: var(--h2-line-height);
    font-weight: var(--h2-font-weight);
    align-self: stretch;
}

.fc-bg--dark .fc-text-image__title {
    color: var(--white);
}

.fc-text-image__subtitle {
    color: var(--text);
    font-family: "Manrope", sans-serif;
    font-size: clamp(18px, 2.5vw, 32px);
    line-height: 130%;
    font-weight: 500;
    align-self: stretch;
}

.fc-bg--dark .fc-text-image__subtitle {
    color: var(--white);
}

.fc-text-image__desc {
    color: var(--text);
    font-family: var(--text1-font-family);
    font-size: var(--text1-font-size);
    line-height: var(--text1-line-height);
    font-weight: var(--text1-font-weight);
    align-self: stretch;
}

.fc-bg--dark .fc-text-image__desc {
    color: rgba(255,255,255,0.85);
}

/* Ссылки */
.fc-text-image__links {
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-self: stretch;
    margin-top: 8px;
}

.fc-text-image__link {
    background: var(--button-who-choose);
    border-bottom: 1px solid var(--line);
    padding: 10px 20px 10px 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    align-self: stretch;
    text-decoration: none;
    transition: background 0.2s;
}

.fc-text-image__link:hover {
    background: var(--accent);
}

.fc-text-image__link:hover span {
    color: var(--white);
}

.fc-bg--dark .fc-text-image__link {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.2);
}

.fc-bg--dark .fc-text-image__link:hover {
    background: var(--accent);
}

.fc-text-image__link span {
    color: var(--text);
    font-family: "Open Sans", sans-serif;
    font-size: 16px;
    line-height: 130%;
    font-weight: 300;
    text-transform: uppercase;
    transition: color 0.2s;
}

.fc-bg--dark .fc-text-image__link span {
    color: var(--white);
}

.fc-text-image__link img {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* Медиа */
.fc-text-image__media {
    flex-shrink: 0;
    width: 50%;
    max-width: 700px;
}

.fc-text-image__media img {
    width: 100%;
    height: auto;
    max-height: 773px;
    object-fit: cover;
    display: block;
    border-radius: 8px;
}

/* ── Адаптив ────────────────────────────────────────────────── */
@media (max-width: 1200px) {
    .fc-text-image__inner,
    .fc-text-image--reverse .fc-text-image__inner {
        flex-direction: column;
        gap: 40px;
    }

    .fc-text-image__media {
        width: 100%;
        max-width: 100%;
    }

    .fc-text-image .container {
        padding-top: 60px;
        padding-bottom: 60px;
    }
    .fc-text-image__content {
    
        width: 100%;
    }
}