/**
 * Features Bar Styles
 *
 * @package Hello Elementor Child
 */

/* 特性栏主容器 */
.features-bar {
    background-color: #222222;
    background-image: url('../images/features-background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #ffffff;
    padding: 60px 0;
    position: relative;
    width: 100%;
}

/* 添加黑色半透明遮罩 */
.features-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

/* 内容容器 */
.features-container {
    width: 1200px;
    max-width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    padding: 0 15px;
    box-sizing: border-box;
}

/* 单个特性项目 */
.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: calc(33.33% - 30px);
}

/* 特性图标 */
.feature-icon {
    margin-bottom: 20px;
}

.feature-icon img {
    width: 48px;
    height: 48px;
}

/* 特性内容 */
.feature-content {
    width: 100%;
}

/* 特性标题 */
.feature-title {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 12px;
    color: #F5D7A3;
}

/* 特性描述 */
.feature-description {
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
}

/* 响应式调整 */
@media (max-width: 1240px) {
    .features-container {
        width: 90%;
        max-width: 1200px;
    }
}

@media (max-width: 768px) {
    .features-bar {
        padding: 40px 0;
    }
    
    .features-container {
        flex-direction: column;
    }
    
    .feature-item {
        width: 100%;
        margin-bottom: 30px;
    }
    
    .feature-item:last-child {
        margin-bottom: 0;
    }
}
