.experience-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    width: 100%;
}

.experience-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0;
    padding: 0.7rem;
}

.experience-logo {
    flex: 0 0 55px;
    margin-right: 1.75rem;
    /* 增加间距到 1.5rem */
}

.experience-logo img {
    width: 60px;
    /* 设置图片宽度 */
    height: 60px;
    /* 设置图片高度 */
    object-fit: contain;
}

/* 为阿里巴巴logo添加特定样式 */
/* .experience-logo img[alt="Alibaba Logo"] {
    object-fit: cover;
    object-position: center;
    padding: 10px;
    background-color: white;
    border-radius: 8px;
} */

.experience-content {
    flex: 1;
    min-width: 0;
    /* 防止内容溢出 */
    padding-right: 5rem;
    /* 添加右边距 */
}

/* 机构名称和时间在同一行 */
.experience-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.3rem;
}

.experience-content h3 {
    margin: 0;
    color: var(--text-primary);
    font-size: 15px;
    font-weight: 600;
}

.experience-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.experience-title {
    margin: 0;
    color: var(--text-primary);
    font-size: 13px;
    font-weight: 500; /* 增加权重使其更突出 */
}

.experience-duration {
    margin: 0;
    color: var(--text-tertiary);
    font-size: 12.5px;
    font-style: italic;
}

.experience-location {
    margin: 0;
    color: var(--text-tertiary);
    font-size: 12.5px;
}

/* 移动端响应式设计 */
@media (max-width: 768px) {
    .experience-container {
        grid-template-columns: 1fr;
    }

    .experience-item {
        flex-direction: row;
    }

    .experience-logo {
        width: 60px;
        margin: 0 1.75rem 0 0;
    }
}

.experience-section-title {
    color: var(--text-primary);
    font-size: 18px;
    font-weight: 600;
    margin: 1.5rem 0 1rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border-color);
}