/* ===== 片头资讯（widget/vod_hero）===== */
.plot-hero {
    display: flex;
    gap: 12px;
    background: var(--bg-white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 14px 16px;
    margin-bottom: 10px;
    align-items: flex-start;
}

.plot-hero-thumb-link {
    display: block;
    flex-shrink: 0;
}

.plot-hero-thumb {
    width: 60px;
    flex-shrink: 0;
    border-radius: 5px;
    overflow: hidden;
    margin: 0;
    background: var(--bg-light) url('../img/load.gif') no-repeat center center;
    background-size: cover;
}

.plot-hero-thumb img {
    width: 100%;
    aspect-ratio: 2/3;
    object-fit: cover;
    display: block;
}

.plot-hero-info {
    flex: 1;
    min-width: 0;
}

.plot-hero-title-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
    flex-wrap: wrap;
}

.plot-hero-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text);
}

.plot-hero-title a {
    color: inherit;
}

.plot-hero-title a:hover {
    color: var(--accent);
}

.plot-hero-badge {
    font-size: 11px;
    background: var(--accent);
    color: #fff;
    padding: 2px 8px;
    border-radius: 3px;
    font-weight: 500;
}

.plot-hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.plot-hero-sep {
    color: var(--border-mid);
}

.plot-hero-play {
    display: inline-block;
    background: var(--accent);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 5px 16px;
    border-radius: 5px;
    transition: background 0.15s;
}

.plot-hero-play:hover {
    background: var(--accent-active);
}
