/* 标题居中样式已移至 26website-title-1.css */
/* 标题通过 Element 模板渲染，使用 .page-title-container 类 */

.worth-grid {
    display: grid;
    grid-template-columns: repeat(2, 460px);
    grid-template-rows: repeat(2, 128px);
    gap: 20px;
    padding: 40px 0;
    width: 940px;
    margin: 0 auto;
    justify-content: center;
}

.worth-item {
    border: 1px solid #D5D8D6;
    border-radius: 8px;
    padding: 20px 24px;
    background: #ffffff;
    transition: box-shadow 0.3s ease;
    width: 460px;
    height: 128px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.worth-item:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.worth-title {
    font-size: 20px;
    font-weight: 600;
    color: #1E293B;
    margin-bottom: 12px;
    text-align: center;
}

.worth-content {
    color: #6B7280;
    line-height: 1.6;
}

.worth-desc {
    margin: 4px 0;
    font-size: 14px;
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 12px;
}

.worth-desc::before {
    content: '';
    position: absolute;
    left: 0;
    width: 4px;
    height: 4px;
    background-color: #6246E8;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
}

@media (max-width: 1024px) {
    .worth-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
        width: 100%;
        max-width: 940px;
        gap: 16px;
        padding: 24px 16px;
    }
    .worth-item {
        width: 100%;
        height: auto;
        min-height: 128px;
        padding: 20px 24px;
    }
}

@media (max-width: 768px) {
    .worth-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        width: 100%;
        gap: 16px;
        padding: 24px 16px;
    }
    .worth-item {
        width: 100%;
        height: auto;
        min-height: 128px;
        padding: 20px 24px;
    }
}
