/* 修改荣誉卡片样式，使其与赛程议题卡片一致 */
.honor-card-row {
    position: relative;
    margin-bottom: 30px;
    padding-top: 20px;
    background: transparent;
}

.honor-card-row::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.honor-title-img {
    position: absolute;
    left: 0px;
    top: -10px;
    width: auto;
    height: 50px;
    z-index: 2;
}

.honor-card-container {
    margin-bottom: 30px;
    margin-top: 40px;
    position: relative;
}

.honor-award-title {
    position: absolute;
    top: -35px;
    left: -10px;
    font-size: 24px;
    font-style: italic;
    font-weight: bold;
    color: #7F5628;
    z-index: 1;
    display: flex;
    align-items: center;
}

.honor-award-title .btn-content {
    margin-left: 15px;
}

.honor-award-title .btn-slides {
    color: #7F5628;
    border-color: #7F5628;
    font-size: 14px;
    padding: 3px 10px;
}

.honor-card {
    padding: 0;
    margin-top: 0;
    background: transparent;
    border: transparent;
    overflow: hidden;
}

.card-content {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
    /* 增加卡片内容的最小高度，确保有足够的空间显示完整的文本 */
    min-height: 200px;
    height: 100%; /* 确保高度填满父元素 */
    box-sizing: border-box; /* 确保内边距不会增加元素大小 */
    overflow: visible; /* 确保内容不被裁剪 */
}

.player-img {
    width: 150px;
    height: auto;
}

.honor-card .diver {
    height: 180px;
    width: 1px;
    background: rgba(255, 255, 255, 0.2);
    margin: 0 20px;
    align-self: center;
}

/* 调整卡片布局 */
.honor-card-row {
    margin-top: 20px;
}

.cards-wrapper {
    margin-top: 30px;
}

.honor-card .left {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 150px;
    min-width: 150px;
}

.honor-card .introduce-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.honor-card .introduction-content h4,
.honor-card .introduction-content h5,
.honor-card .introduction-content h6 {
    margin-bottom: 0; /* 移除标题下方的边距 */
    /* 限制标题文本的行高，确保有足够的空间显示其他内容 */
    line-height: 1.2; /* 进一步减小行高 */
}

.honor-card .introduction {
    margin-top: 0; /* 移除上边距，使其紧贴横线 */
    font-size: 0.9rem;
    line-height: 1.4;
    /* 增加下方空间，确保文本能完全显示 */
    margin-bottom: 5px; /* 保持底部边距 */
    /* 增加容器高度，适应更长的文本 */
    min-height: 60px;
}

.honor-card .award-line {
    width: 100%;
    height: auto;
    margin: 0; /* 移除所有边距 */
}

/* 英文版特定样式，确保长文本能够完整显示 */
html[lang="en"] .honor-card .introduction-content h6 {
    font-size: 1rem;
    line-height: 1.2;
}

html[lang="en"] .honor-card .introduction {
    font-size: 15px;
    line-height: 1.2;
    min-height: 60px; /* 减少最小高度，从80px减少到60px */
    margin-top: 10px; /* 移除上边距，使其紧贴横线 */
    margin-bottom: 0px; /* 保持底部边距 */
    /* 添加文本换行属性，确保长文本能正确换行 */
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* 特殊类，用于处理特别长的文本 */
.long-text-fix {
    font-size: 15px !important;
    line-height: 1.1 !important;
    min-height: 60px !important; /* 减少最小高度，从90px减少到60px */
    margin-top: 10px !important; /* 移除上边距，使其紧贴横线 */
    margin-bottom: 0px !important; /* 最小下边距 */
}

/* 响应式样式 */
@media (max-width: 1199.98px) {
    .honor-card-container {
        margin-bottom: 50px;
    }
}

@media (max-width: 767.98px) {
    .honor-award-title {
        font-size: 18px;
        top: -25px;
        left: 15px;
    }

    .honor-title-img {
        height: 35px;
    }

    .card-content {
        flex-direction: column;
        align-items: center;
        min-height: 300px; /* 增加最小高度确保内容不被压缩 */
    }

    .honor-card .left {
        width: 100%;
        text-align: center;
        margin-bottom: 15px;
        justify-content: center;
    }

    .honor-card .diver {
        width: 100%;
        height: 1px !important;
        margin: 15px 0;
    }

    .honor-card-row {
        padding-top: 30px;
    }

    .honor-award-title .btn-content {
        margin-left: 10px;
    }

    .honor-award-title .btn-slides {
        font-size: 12px;
        padding: 2px 8px;
    }

    /* 移动端文字显示优化 */
    .honor-card .introduction-content h4 {
        font-size: 18px;
        margin-top: 5px;
        margin-bottom: 5px;
        text-align: center;
    }

    .honor-card .introduction-content h5 {
        font-size: 16px;
        margin-top: 10px;
        margin-bottom: 10px;
        text-align: center;
    }

    .honor-card .introduction {
        font-size: 14px;
        line-height: 1.3;
        text-align: center;
        margin: 10px auto;
        max-width: 100%;
    }

    .honor-card .introduction-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .honor-card .introduce-body {
        width: 100%;
        text-align: center;
    }

    /* 移动端卡片内容样式优化 */
    .card-content {
        padding: 15px;
    }

    .player-img {
        width: 120px;
        height: auto;
        margin-bottom: 10px;
    }
}

