/* CSS стили для страницы full_descriptions.php */

.full-description-wrapper {
    max-width: 1100px;
    margin: 0 auto;
}

/* Чуть отделим карточку от шапки */
.full-description-wrapper .right-section {
    margin-top: 20px;
}

/* Вступительный список преимуществ */
.fd-intro {
    margin-bottom: 20px;
}

/* Общий вид секций с текстом и картинкой */
.fd-section {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 24px 0;
    border-top: 1px solid #ecf0f1;
}

.fd-section:first-of-type {
    border-top: 1px solid #ecf0f1;
}

/* Чередование: для чётных секций меняем порядок */
.fd-section--reverse {
    flex-direction: row-reverse;
}

/* Колонки */
.fd-text,
.fd-image {
    flex: 1;
    min-width: 0;
}

/* Текстовая часть секции */
.full-section-title {
    font-size: 18px;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 8px 0;
}

.full-section-lead {
    color: #2c3e50;
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 12px 0;
}

.full-section-text {
    color: #2c3e50;
    font-size: 14px;
    line-height: 1.5;
    margin: 0 0 6px 0;
}

/* Блок с картинкой */
.fd-image {
    display: flex;
    justify-content: center;
}

.fd-image-frame {
    width: 100%;
    max-width: 420px;
    border-radius: 12px;
    border: 1px solid #e1e5e9;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(0,0,0,0.06);
    background: #f8f9fa;
}

.fd-image-frame img {
    display: block;
    width: 100%;
    height: auto;
}

/* CTA-блок внизу */
.full-description-cta {
    margin-top: 32px;
    text-align: center;
}

.prices-link {
    display: inline-block;
    margin-top: 14px;
    font-size: 14px;
    font-weight: 600;
    color: #667eea;
    text-decoration: none;
    transition: color 0.3s ease;
}

.prices-link:hover {
    text-decoration: underline;
    color: #764ba2;
}

/* Адаптивное поведение */
@media (max-width: 992px) {
    .fd-section,
    .fd-section--reverse {
        flex-direction: column;
        align-items: flex-start;
    }

    .fd-image {
        width: 100%;
    }

    .fd-image-frame {
        max-width: 100%;
    }
}

@media (max-width: 600px) {
    .full-description-wrapper .right-section {
        margin-top: 10px;
    }

    .full-section-title {
        font-size: 16px;
    }

    .full-section-lead,
    .full-section-text {
        font-size: 13px;
    }
}
