/* About Page Styles */
.about-hero {
    background: #FCE8EE;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 35px 0;
    background: url('/wp-content/themes/analyst/assets/img/banner_index.webp') center/cover no-repeat;
}

/* 背景蜡烛图效果 */
.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        radial-gradient(circle at 40% 60%, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
        radial-gradient(circle at 60% 20%, rgba(255, 255, 255, 0.12) 1px, transparent 1px),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.09) 1px, transparent 1px);
    background-size: 100px 100px, 120px 120px, 80px 80px, 150px 150px;
    background-position: 0 0, 30px 30px, 60px 60px, 90px 90px;
    pointer-events: none;
    z-index: 1;
}

.about-hero .box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.about-left {
    position: relative;
}

.about-left img {
    width: 100%;
    height: auto;
    display: block;
}

.about-right {
    color: white;
    position: relative;
    z-index: 2;
}

.about-title {
    font-size: 56px;
    font-weight: 700;
    margin: 0 0 30px 0;
    line-height: 1.1;
    background-clip: text;
    color: white;
}
/* About Section Styles */
.about-header {
    background: #9BBEFE;
    padding: 10px 20px; /* 内边距 */
    border-radius: 30px; /* 圆角 */
    text-align: left; /* 左对齐 */
}

.about-list {
    list-style-type: none; /* 去掉列表样式 */
    padding-left: 20px; /* 左边距 */
}

.about-list li {
    margin-bottom: 10px; /* 列表项之间的间距 */
    color: #8F3A68; /* 字体颜色 */
}
.about-content {
    /* max-width: 500px; */
}
.about-content p {
    color : #36547F;
    font-size: 16px;
    text-align: left;
}
.about-text {
    margin: 0 0 20px 0;
}

.about-text:last-child {
    margin-bottom: 0;
}

/* Investment Message Section */
.investment-section {
    padding: 68px 0;
    position: relative;
    overflow: hidden;
}

.investment-section .box {
    background: url('/wp-content/themes/analyst/assets/img/about_banner_2.webp') center/cover no-repeat;
    display: grid;
    grid-template-columns: 60% 40%;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.investment-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    align-items: center;
    padding: 80px 0 10px 0;
}

.investment-left {
    position: relative;
}

.investment-right {
    position: relative;
    /* 预留空间，暂时为空 */
}

.investment-left img,
.investment-right img {
    width: auto;
    max-width: 360px;
    height: auto;
    display: block;
    border-radius: 15px;
}

.investment-center {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    position: relative;
    margin-top: -150px;
}

.chat-bubble {
    background: #a6b9cc;
    border-radius: 10px;
    padding: 30px 20px;
    position: relative;
    max-width: 500px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.chat-bubble p {
    margin: 0;
    color: #36547F;
    font-size: 16px;
    line-height: 1.3;
    font-weight: 500;
    text-align: left;
}

/* 尖角：向左下倾斜 */
.chat-bubble::after {
    content: "";
    position: absolute;
    bottom: -50px;
    left: 75px;
    width: 9px;
    height: 0;
    border-style: solid;
    border-width: 50px 64px 0 0;
    border-color: #a6b9cc transparent transparent transparent;
}

/* Investment Section 响应式设计 */
@media (max-width: 1024px) {
    .investment-section .box {
        grid-template-columns: 1fr;
        text-align: center;
        background: #8eb7cd; /* 1024px 及以下使用纯色背景 */
    }
    
    .investment-content {
        grid-template-columns: 1fr;
        padding: 30px 0 10px 0;
    }
    
    .investment-left {
        order: 2;
        display: flex;            /* 居中容器内容 */
        justify-content: center;  /* 水平居中图片 */
    }
    .investment-left img { margin: 0 auto; width: 100%; }
    
    .investment-center {
        order: 1;
        margin-top: 0px;
    
    }
    
    .investment-right {
        display: none;
    }
    
    .chat-bubble::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .about-list{
        padding-left: 0;
    }
    .investment-section {
        padding: 40px 0;
    }
    
    .chat-bubble {
        padding: 20px 25px;
        max-width: 100%;
    }
    
    .chat-bubble p {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .investment-section {
        padding: 30px 0;
    }
    
    .chat-bubble {
        padding: 15px 20px;
    }
    
    .chat-bubble p {
        font-size: 14px;
    }
}

/* 动画效果 */
.about-hero {
    animation: fadeInUp 1s ease-out;
}

.about-left {
    animation: slideInLeft 1s ease-out 0.3s both;
}

.about-right {
    animation: slideInRight 1s ease-out 0.6s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* 悬停效果 */
.about-left img {
    transition: all 0.3s ease;
}

.about-left img:hover {
    transform: translateY(-5px);
}

/* 响应式设计 */
@media (max-width: 1024px) {
    .about-title {
        font-size: 2.5rem;
    }
}
@media (max-width: 768px) {
    .about-hero .box {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .about-hero{
        padding-bottom: 65px;
    }
    .about-content {
        max-width: 100%;
        text-align: center;
    }

}

@media (max-width: 480px) {
    .about-title {
        font-size: 1.5rem;
    }

    .about-text {
        font-size: 1rem;
    }

}
