/* ========== 总结页 ========== */
.summary-text {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 15px;
}

.final-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
    gap: 20px;
    align-items: stretch;
    margin-top: 10px;
}

.final-points {
    display: grid;
    gap: 16px;
}

.compact-summary-card {
    margin-bottom: 0;
}

.video-caption {
    margin-top: 10px;
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 14px;
}

.video-caption .en-sub,
.summary-card p .en-sub {
    font-size: 12px;
    margin-top: 8px;
}

.summary-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

.summary-video {
    width: 100%;
    display: block;
    border-radius: 16px;
    background: #101418;
    max-height: 290px;
}

.speech-card {
    margin-top: 18px;
}

.restart-btn {
    padding: 14px 40px;
    background: var(--accent);
    color: white;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(230,97,0,0.3);
    text-decoration: none;
    display: inline-block;
}

.restart-btn .en-sub {
    color: rgba(255,255,255,0.92);
    font-size: 11px;
    margin-top: 3px;
}

.restart-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230,97,0,0.4);
}

@media (max-width: 640px) {
    .final-layout { grid-template-columns: 1fr; }
}
