/* ========================================
   yz-methodology.css — 评测方法论页样式
   ======================================== */

.yz-dim-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1rem;
}
.yz-dim-item {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 12px;
    padding: 1.25rem 1.25rem 1rem;
    transition: border-color .2s;
}
.yz-dim-item:hover {
    border-color: rgba(255,255,255,.18);
}
.yz-dim-item__head {
    display: flex;
    align-items: center;
    gap: .6rem;
    margin-bottom: .6rem;
}
.yz-dim-item__icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .95rem;
    flex-shrink: 0;
}
.yz-dim-item__name {
    font-weight: 600;
    color: #e5e5e5;
    font-size: 1.05rem;
}
.yz-dim-item__weight {
    margin-left: auto;
    font-size: .85rem;
    font-weight: 600;
    color: #a78bfa;
    background: rgba(167,139,250,.12);
    padding: 2px 10px;
    border-radius: 20px;
}
.yz-dim-item__desc {
    font-size: .9rem;
    color: #999;
    line-height: 1.6;
}
.yz-formula-box {
    background: rgba(167,139,250,.08);
    border: 1px solid rgba(167,139,250,.2);
    border-radius: 10px;
    padding: 1.25rem 1.5rem;
    font-family: 'Courier New', Consolas, monospace;
    font-size: .95rem;
    color: #d4d4d4;
    line-height: 1.8;
    overflow-x: auto;
    white-space: nowrap;
}
.yz-formula-box strong {
    color: #a78bfa;
}
.yz-info-table th {
    width: 30%;
}
@media (max-width: 640px) {
    .yz-dim-grid { grid-template-columns: 1fr; }
    .yz-formula-box { font-size: .82rem; padding: 1rem; }
    .yz-info-table th { width: auto; }
}
@media (max-width: 480px) {
    .yz-formula-box { font-size: .75rem; padding: .75rem; white-space: normal; }
}
