/*
 * ПОЛНОСТЬЮ ИЗОЛИРОВАННЫЕ СТИЛИ ДЛЯ SEO-БЛОКА
 */

.seo-section {
    margin-top: 140px;
    margin-bottom: 200px;
}

.seo-section-container {
    max-width: 1536px;
    margin: 0 auto;
    padding: 0 16px;
}

.seo-section-content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.seo-section-image-container img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 6px;
}

.seo-section-text-container {
    position: relative;
}

.seo-section-text-content {
    background-color: white;
    padding: 20px;
    border-radius: 6px;
}

.seo-section-title {
    color: rgba(0, 0, 0, 1);
    font-family: 'Trajan Pro 3', serif;
    font-size: 30px;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: left;
    margin-bottom: 20px;
}

.seo-section-description-wrapper {
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.seo-section-description {
    color: rgba(51, 51, 51, 1);
    font-family: 'Century Gothic', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 17px;
    text-align: left;
    margin-bottom: 30px;
}

.seo-section-show-more-btn {
    margin-top: 16px;
    padding: 10px 20px;
    background-color: #748059;
    color: white;
    font-family: 'Century Gothic', sans-serif;
    font-size: 14px;
    font-weight: 600;
    border: none;
    border-radius: 54px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: none;
}

.seo-section-show-more-btn:hover {
    background-color: #485231;
}

.seo-section-decorative-element {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 126px;
    height: auto;
}

/* Десктопная версия (≥ 1024px) */
@media (min-width: 1024px) {
    .seo-section-content-wrapper {
        flex-direction: row;
        align-items: center;
    }

    .seo-section-image-container {
        width: 40%;
        margin: 0;
    }

    .seo-section-image-container img {
        border-radius: 0;
    }

    .seo-section-text-container {
        width: 60%;
        margin: 0;
    }

    .seo-section-text-content {
        padding: 48px 140px 48px 48px;
        background-color: white;
        border-radius: 0;
        border-top-right-radius: 6px;
        border-bottom-right-radius: 6px;
    }

    .seo-section-decorative-element {
        bottom: -50px;
        right: -50px;
        width: auto;
    }
}