/* ========== 通用字体类 ========== */
.tag {
    display: inline-block;
    font-size: 24px;
    font-weight: 800;
    background: linear-gradient(to right, #FFFFFF 0%, #D6B367 69%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    margin-bottom: 16px;
}

.title {
    font-size: 48px;
    font-weight: 400;
    margin: 0 0 16px;
    line-height: 1.15;
    color: #fff;
}

.desc {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

/* 移动端适配 */
@media (max-width: 640px) {
    .tag {
        font-size: 12px;
    }
    .title {
        font-size: 26px;
    }
    .desc {
        font-size: 14px;
    }
}
