/* ===== О НУМЕРОЛОГЕ — ДЕСКТОП ===== */
.about-numerologist {
    background: #EFEFEE;
    padding: 60px 0 80px 0;
}

.about-numerologist-wrapper {
    display: flex;
    gap: 60px;
    align-items: center;
    max-width: 1240px;
    margin: 0 auto;
}

.about-numerologist-left {
    flex: 0 0 420px;
    max-width: 420px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.about-numerologist-title {
    color: #3E1A3E;
    font-size: 36px;
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    line-height: 1.2;
    margin: 0;
}

.about-numerologist-text {
    color: rgba(49, 49, 49, 0.50);
    font-size: 18px;
    font-family: 'Manrope', sans-serif;
    font-weight: 300;
    line-height: 1.5;
    width: 610px;
}

.about-numerologist-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.about-numerologist-image-wrapper {
    position: relative;
    width: 570px;
    height: 570px;
    flex-shrink: 0;
}

.about-numerologist-image-bg {
    width: 570px;
    height: 570px;
    position: absolute;
    background: #D9D9D9;
    border-radius: 12px;
    top: 0;
    right: 0;
    z-index: 1;
}

.about-numerologist-image-main {
    width: 570px;
    position: absolute;
    top: 0;
    right: 0px;
    object-fit: cover;
    border-radius: 12px;
    z-index: 2;
}

.about-numerologist-image-decoration {
    /*width: 1293px;
    height: 1293px;
    position: absolute;
    top: -208px;
    right: -308px;
    object-fit: cover;
    opacity: 0.05;
    z-index: 0;
    pointer-events: none;
	*/
}


/* ===== АДАПТИВ: ПЛАНШЕТ ===== */
@media (max-width: 1280px) {
    .about-numerologist-wrapper {
        flex-direction: column;
        gap: 40px;
    }
    
    .about-numerologist-left {
        flex: 0 0 auto;
        max-width: 100%;
        width: 100%;
    }
    
    .about-numerologist-text {
        width: 100%;
    }
    
    .about-numerologist-right {
        justify-content: center;
        width: 100%;
    }
    
    .about-numerologist-image-wrapper {
        width: 100%;
        max-width: 570px;
        height: auto;
        aspect-ratio: 1 / 1;
    }
    
    .about-numerologist-image-bg {
        width: 100%;
        height: 100%;
    }
    
    .about-numerologist-image-main {
        width: 109%;
        height: 109%;
        right: -4.5%;
    }
    
    .about-numerologist-image-decoration {
        width: 227%;
        height: 227%;
        top: -36.5%;
        right: -54%;
    }
}


/* ===== АДАПТИВ: МОБИЛЬНЫЙ (320px - 767px) ===== */
@media (max-width: 767px) {
    .about-numerologist-wrapper {
        flex-direction: column;
        gap: 12px;
        padding: 0 16px;
    }
    
    .about-numerologist-left {
        gap: 12px;
    }
    
    .about-numerologist-title {
        font-size: 22px;
        width: 266px;
    }
    
    .about-numerologist-text {
        font-size: 14px;
        width: 100%;
    }
    
    .about-numerologist-right {
        justify-content: center;
        width: 100%;
    }
    
    .about-numerologist-image-wrapper {
        width: 353px;
        height: 353px;
        max-width: 100%;
    }
    
    .about-numerologist-image-bg {
        width: 353px;
        height: 353px;
        max-width: 100%;
    }
    
    .about-numerologist-image-main {
        width: 384px;
        height: 384px;
        left: -16px;
        right: auto;
        top: 0;
    }
    
    .about-numerologist-image-decoration {
        width: 800px;
        height: 800px;
        left: -224px;
        right: auto;
        top: -129px;
    }
}