/* Clean template — minimal, readable */

/* Minimal hero */
.template-clean .hero-minimal {
    height: 1.5rem;
}

/* List cards — divider-only, no cards */
.template-clean .video-card-list {
    border: none;
    border-bottom: 1px solid var(--brand-border);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    transition: background-color 0.2s ease;
}
.template-clean .video-card-list:hover {
    background-color: var(--brand-card-hover, rgba(0,0,0,0.02));
}
.template-clean .video-card-list:last-child {
    border-bottom: none;
}
.template-clean .video-card-list-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
}
.template-clean .video-card-list .card-title {
    font-weight: 400;
}
.template-clean .video-card-list .card-title a {
    text-decoration: none;
    color: var(--brand-text);
}
.template-clean .video-card-list .card-title a:hover {
    color: var(--brand-primary);
}

/* Minimal footer */
.template-clean .footer-minimal {
    border-top: 1px solid var(--brand-border);
    background: transparent;
    color: var(--brand-text-muted);
}
.template-clean .footer-minimal a {
    color: var(--brand-text-muted);
}
.template-clean .footer-minimal a:hover {
    color: var(--brand-primary);
}

/* Section titles */
.template-clean .section-title {
    font-weight: 500;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--brand-text-muted);
}

/* General clean overrides */
.template-clean .card {
    box-shadow: none;
}
