:root {
    --charcoal: #202020;
    --charcoal-soft: #2c2c2c;
    --lime: #e7ff59;
    --forest: #18362b;
    --ink: #13261e;
    --muted: #607168;
    --canvas: #f3f6ed;
    --surface: #ffffff;
    --line: #dbe2d7;
    --danger: #aa2b2b;
    --radius: 16px;
}

* { box-sizing: border-box; }

body {
    margin: 0;
    background: var(--canvas);
    color: var(--ink);
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.5;
}

img { display: block; max-width: 100%; }
.auth-page { min-height: 100vh; }

.auth-layout {
    min-height: 100vh;
    display: grid;
    grid-template-columns: minmax(300px, .9fr) minmax(480px, 1.1fr);
}

.brand-panel {
    background: var(--charcoal);
    color: #fff;
    min-height: 100%;
    padding: clamp(28px, 6vw, 76px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 48px;
}

.festival-logo { width: min(100%, 430px); }

.brand-copy {
    max-width: 390px;
    border-left: 3px solid var(--lime);
    padding-left: 16px;
}

.brand-copy p {
    color: var(--lime);
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .1em;
    margin: 0 0 6px;
    text-transform: uppercase;
}

.brand-copy span { color: #d4d8d2; display: block; }

.auth-main {
    display: grid;
    min-width: 0;
    place-items: center;
    padding: 28px;
}

.auth-card {
    width: min(100%, 440px);
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 20px 46px #17312614;
    padding: clamp(28px, 5vw, 46px);
}

.eyebrow {
    color: var(--forest);
    font-size: .74rem;
    font-weight: 700;
    letter-spacing: .1em;
    margin: 0 0 8px;
    text-transform: uppercase;
}

h1, h2, p { margin-top: 0; }

h1 {
    color: var(--forest);
    font-size: clamp(1.9rem, 3vw, 2.45rem);
    letter-spacing: -.035em;
    line-height: 1.08;
    margin-bottom: 12px;
}

.intro { color: var(--muted); margin-bottom: 28px; }

label {
    color: var(--ink);
    display: block;
    font-size: .92rem;
    font-weight: 700;
    margin: 18px 0 7px;
}

input {
    appearance: none;
    background: #fff;
    border: 1px solid #b7c3b9;
    border-radius: 9px;
    color: var(--ink);
    display: block;
    font: inherit;
    min-height: 46px;
    padding: 10px 12px;
    width: 100%;
}

textarea {
    background: #fff;
    border: 1px solid #b7c3b9;
    border-radius: 9px;
    color: var(--ink);
    display: block;
    font: inherit;
    min-height: 86px;
    padding: 10px 12px;
    resize: vertical;
    width: 100%;
}

select {
    appearance: none;
    background: #fff;
    border: 1px solid #b7c3b9;
    border-radius: 9px;
    color: var(--ink);
    display: block;
    font: inherit;
    min-height: 46px;
    padding: 10px 38px 10px 12px;
    width: 100%;
}

input:focus-visible,
button:focus-visible,
a:focus-visible {
    outline: 3px solid #80a697;
    outline-offset: 3px;
}

select:focus-visible {
    outline: 3px solid #80a697;
    outline-offset: 3px;
}

textarea:focus-visible {
    outline: 3px solid #80a697;
    outline-offset: 3px;
}

button {
    appearance: none;
    background: var(--lime);
    border: 1px solid var(--lime);
    border-radius: 9px;
    color: #182115;
    cursor: pointer;
    font: inherit;
    font-weight: 700;
    margin-top: 25px;
    min-height: 47px;
    padding: 10px 16px;
    transition: background .15s ease, transform .15s ease;
    width: 100%;
}

button:hover { background: #d7ef4e; transform: translateY(-1px); }

.alert {
    background: #fff0ef;
    border-left: 4px solid var(--danger);
    color: #7f1f1f;
    margin: 20px 0;
    padding: 11px 13px;
}

.dashboard-page { background: var(--canvas); min-height: 100vh; }

.topbar {
    align-items: center;
    background: var(--charcoal);
    display: flex;
    gap: 20px;
    justify-content: space-between;
    padding: 12px max(20px, calc((100% - 1160px) / 2));
}

.topbar-brand {
    align-items: center;
    color: #fff;
    display: flex;
    font-size: .86rem;
    font-weight: 700;
    gap: 12px;
    min-width: 0;
    text-decoration: none;
}

.topbar-brand img { height: 46px; object-fit: contain; width: 82px; }
.topbar-brand span { white-space: nowrap; }
.topbar-nav { display: flex; gap: 4px; margin-left: auto; }
.topbar-nav a { border-radius: 8px; color: #d4d8d2; font-size: .85rem; font-weight: 700; padding: 8px 10px; text-decoration: none; }
.topbar-nav a:hover, .topbar-nav a[aria-current="page"] { background: var(--charcoal-soft); color: var(--lime); }

.topbar-actions { align-items: center; display: flex; gap: 16px; }
.user-name { color: #d4d8d2; font-size: .9rem; }
.topbar-actions form { margin: 0; }

.secondary {
    background: transparent;
    border-color: #728078;
    color: #fff;
    margin: 0;
    min-height: 38px;
    width: auto;
}

.secondary:hover { background: var(--charcoal-soft); color: var(--lime); }

.container { margin: 0 auto; max-width: 1160px; padding: clamp(28px, 5vw, 62px) 20px; }

.dashboard-hero {
    align-items: end;
    display: flex;
    gap: 24px;
    justify-content: space-between;
    margin-bottom: 32px;
}

.dashboard-hero h1 { margin-bottom: 9px; }
.dashboard-hero p:not(.eyebrow) { color: var(--muted); margin-bottom: 0; }

.hero-tag {
    background: #e5eddf;
    border-radius: 999px;
    color: var(--forest);
    font-size: .78rem;
    font-weight: 700;
    padding: 8px 12px;
    white-space: nowrap;
}

.status-grid {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    margin-bottom: 24px;
}

.status-card,
.next-step {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 12px;
}

.status-card { min-height: 132px; padding: 18px; }
.status-card span { color: var(--muted); display: block; font-size: .82rem; font-weight: 700; line-height: 1.25; }
.status-card strong { color: var(--forest); display: block; font-size: 2.35rem; letter-spacing: -.05em; line-height: 1; margin-top: 22px; }
.status-validar { border-top: 4px solid var(--lime); }

.next-step { max-width: 650px; padding: 25px; }
.next-step h2 { color: var(--forest); font-size: 1.3rem; margin-bottom: 8px; }
.next-step p:last-child { color: var(--muted); margin-bottom: 0; }
.primary-link,
.detail-link { align-items: center; background: var(--lime); border: 1px solid var(--lime); border-radius: 9px; color: #182115; display: inline-flex; font-size: .92rem; font-weight: 700; justify-content: center; min-height: 44px; padding: 10px 14px; text-decoration: none; }
.primary-link { margin-top: 19px; }
.primary-link:hover, .detail-link:hover { background: #d7ef4e; }

.narrow-container { max-width: 700px; }
.page-heading { margin-bottom: 26px; max-width: 770px; }
.page-heading h1 { margin-bottom: 9px; }
.page-heading p:not(.eyebrow) { color: var(--muted); margin-bottom: 0; }
.content-card,
.filter-card,
.empty-state { background: var(--surface); border: 1px solid var(--line); border-radius: 12px; padding: clamp(21px, 4vw, 30px); }
.success { background: #ecf7e6; border-color: #4b8b50; color: #205a2c; }

.filters { align-items: end; display: grid; gap: 15px; grid-template-columns: minmax(210px, 1.5fr) repeat(4, minmax(150px, 1fr)) auto; }
.filter-field label { margin-top: 0; }
.filter-actions { align-items: center; display: flex; flex-direction: column; gap: 8px; }
.filter-actions button { margin: 0; white-space: nowrap; }
.clear-filter { color: var(--forest); font-size: .82rem; font-weight: 700; text-align: center; }
.results-summary { color: var(--muted); font-size: .92rem; margin: 22px 0 13px; }
.results-summary strong { color: var(--forest); }
.obligation-list { display: grid; gap: 13px; }
.obligation-card { align-items: center; background: var(--surface); border: 1px solid var(--line); border-radius: 12px; display: flex; gap: 20px; justify-content: space-between; padding: 20px; }
.obligation-card-main { min-width: 0; }
.card-kicker { align-items: center; color: var(--muted); display: flex; font-size: .78rem; font-weight: 700; gap: 10px; margin-bottom: 9px; }
.obligation-card h2 { color: var(--forest); font-size: 1.08rem; margin-bottom: 5px; }
.category-label { color: var(--forest); font-size: .78rem; font-weight: 700; margin-bottom: 12px; text-transform: uppercase; }
.compact-details { display: flex; flex-wrap: wrap; gap: 7px 22px; margin: 0; }
.compact-details div { max-width: 100%; }
.compact-details dt,
.source-details dt { color: var(--muted); font-size: .74rem; font-weight: 700; text-transform: uppercase; }
.compact-details dd,
.source-details dd { margin: 1px 0 0; }
.compact-details dd { font-size: .9rem; }
.status-pill { background: #e5eddf; border-radius: 999px; color: var(--forest); display: inline-block; font-size: .73rem; font-weight: 700; padding: 4px 8px; white-space: nowrap; }
.status-validar { background: #f2f6c9; }
.status-conferido { background: #dff3de; }
.status-enviado { background: #dcecf3; }
.status-excecao_documentada { background: #f7e6d4; }
.status-pendente { background: #eceeed; }
.detail-link { flex: 0 0 auto; gap: 9px; }
.empty-state { color: var(--muted); }
.empty-state h2 { color: var(--forest); font-size: 1.1rem; }

.detail-container { max-width: 1020px; }
.back-link { color: var(--forest); display: inline-block; font-size: .9rem; font-weight: 700; margin-bottom: 25px; }
.detail-heading { margin-bottom: 28px; }
.detail-grid { align-items: start; display: grid; gap: 20px; grid-template-columns: minmax(0, 1.2fr) minmax(280px, .8fr); }
.detail-card h2,
.sponsor-requirements h2 { color: var(--forest); font-size: 1.2rem; margin-bottom: 19px; }
.source-details { display: grid; gap: 19px; margin: 0; }
.source-details dd { font-size: .96rem; }
.preformatted { overflow-wrap: anywhere; white-space: pre-wrap; }
.sponsor-requirements { display: grid; gap: 12px; }
.sponsor-requirements .eyebrow { margin-bottom: -7px; }
.sponsor-requirements h2 { margin-bottom: 0; }
.requirement-card { background: var(--surface); border: 1px solid var(--line); border-radius: 12px; padding: 18px; }
.requirement-card-heading { align-items: start; display: flex; gap: 12px; justify-content: space-between; }
.requirement-card h3 { color: var(--forest); font-size: 1rem; margin: 0; }
.requirement-required,
.requirement-reference { border-radius: 999px; flex: 0 0 auto; font-size: .71rem; font-weight: 700; padding: 4px 7px; text-align: center; }
.requirement-required { background: #f2f6c9; color: #49541d; }
.requirement-reference { background: #eceeed; color: #58615a; }
.requirement-source { color: var(--muted); font-size: .74rem; font-weight: 700; margin: 15px 0 2px; text-transform: uppercase; }
.requirement-source + p { margin-bottom: 0; }

.evidence-section { margin-top: 42px; }
.section-heading { align-items: end; display: flex; gap: 18px; justify-content: space-between; margin-bottom: 16px; }
.section-heading .eyebrow { margin-bottom: 7px; }
.section-heading h2 { color: var(--forest); font-size: 1.35rem; margin-bottom: 0; }
.evidence-count { background: #e5eddf; border-radius: 999px; color: var(--forest); font-size: .79rem; font-weight: 700; padding: 7px 10px; white-space: nowrap; }
.evidence-list { display: grid; gap: 13px; }
.evidence-card { background: var(--surface); border: 1px solid var(--line); border-radius: 12px; display: flex; gap: 18px; padding: 18px; }
.evidence-preview { align-self: flex-start; background: #edf1e9; border-radius: 8px; display: block; flex: 0 0 146px; overflow: hidden; }
.evidence-preview img { aspect-ratio: 1 / 1; height: 146px; object-fit: cover; width: 146px; }
.evidence-card-content { flex: 1 1 auto; min-width: 0; }
.evidence-card-heading { align-items: start; display: flex; gap: 15px; justify-content: space-between; }
.evidence-kind { color: var(--forest); display: block; font-size: .73rem; font-weight: 700; letter-spacing: .06em; margin-bottom: 4px; text-transform: uppercase; }
.evidence-card h3 { color: var(--forest); font-size: 1.05rem; margin: 0; overflow-wrap: anywhere; }
.review-pill { border-radius: 999px; flex: 0 0 auto; font-size: .72rem; font-weight: 700; padding: 5px 8px; text-align: center; }
.review-pendente { background: #f2f6c9; color: #49541d; }
.review-conferida { background: #dff3de; color: #205a2c; }
.review-ajuste_solicitado { background: #fff0ef; color: #7f1f1f; }
.evidence-meta,
.reviewed-by { color: var(--muted); font-size: .82rem; margin: 9px 0 0; }
.evidence-actions { margin-top: 10px; }
.text-link { color: var(--forest); font-size: .9rem; font-weight: 700; }
.review-note { background: #f5f7f2; border-left: 3px solid #bdcbb6; font-size: .88rem; margin: 13px 0 0; padding: 8px 10px; }
.review-details { margin-top: 15px; }
.review-details summary,
.archive-details summary,
.archived-evidences summary { color: var(--forest); cursor: pointer; font-size: .87rem; font-weight: 700; }
.review-form { border-top: 1px solid var(--line); margin-top: 12px; padding-top: 2px; }
.review-form button { margin-top: 18px; width: auto; }
.archive-details { margin-top: 11px; }
.danger-button { background: #fff0ef; border-color: #d69391; color: #7f1f1f; }
.danger-button:hover { background: #ffe1df; }
.archived-evidences { background: #f5f7f2; border: 1px solid var(--line); border-radius: 10px; margin-top: 16px; padding: 12px 15px; }
.archived-evidences ul { display: grid; gap: 10px; list-style: none; margin: 13px 0 0; padding: 0; }
.archived-evidences li { border-top: 1px solid var(--line); color: var(--muted); font-size: .85rem; padding-top: 10px; }
.archived-evidences li strong { color: var(--forest); display: block; }
.archived-evidences li span { display: block; margin-top: 2px; }
.archived-evidences li p { color: var(--ink); margin: 4px 0 0; white-space: pre-wrap; }

.evidence-workspace,
.admin-workspace { align-items: start; display: grid; gap: 20px; grid-template-columns: repeat(2, minmax(0, 1fr)); margin-top: 24px; }
.evidence-form-card h2,
.link-existing-card h2,
.status-form-card h2,
.status-history-card h2 { color: var(--forest); font-size: 1.18rem; margin-bottom: 8px; }
.form-intro { color: var(--muted); font-size: .91rem; margin-bottom: 21px; }
.field-hint { color: var(--muted); font-size: .8rem; margin: 7px 0 0; }
.evidence-form-card button,
.link-existing-card button,
.status-form-card button { margin-top: 21px; }
.admin-workspace { margin-bottom: 16px; }
.status-history { display: grid; gap: 12px; list-style: none; margin: 0; padding: 0; }
.status-history li { border-left: 3px solid var(--lime); padding-left: 11px; }
.status-history strong { color: var(--forest); display: block; font-size: .9rem; }
.status-history span { color: var(--muted); font-size: .8rem; }
.status-history p { color: var(--ink); font-size: .88rem; margin: 5px 0 0; white-space: pre-wrap; }

.generated-password { border-color: #4b8b50; margin-bottom: 22px; }
.generated-password h2,
.team-create-card h2,
.team-card h3,
.team-members h4 { color: var(--forest); }
.generated-password p { color: var(--muted); }
.generated-password input { font-family: Consolas, monospace; font-size: 1.03rem; font-weight: 700; letter-spacing: .04em; }
.team-create-card { margin-bottom: 38px; max-width: 700px; }
.team-create-card select[multiple] { min-height: 150px; padding: 8px; }
.team-list { display: grid; gap: 14px; }
.team-card { display: grid; gap: 20px; }
.team-card-heading { align-items: start; display: flex; gap: 14px; justify-content: space-between; }
.team-card-heading .eyebrow { margin-bottom: 5px; }
.team-card-heading h3 { font-size: 1.25rem; margin-bottom: 0; }
.team-responsibilities strong,
.team-members h4 { display: block; font-size: .92rem; margin: 0 0 8px; }
.team-responsibilities ul { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; margin: 0; padding: 0; }
.team-responsibilities li { background: #e5eddf; border-radius: 999px; color: var(--forest); font-size: .8rem; font-weight: 700; padding: 5px 9px; }
.team-warning { background: #fff5d7; border-left: 3px solid #c28c22; color: #6d4b07; font-size: .88rem; margin: 0; padding: 9px 11px; }
.team-members { border-top: 1px solid var(--line); padding-top: 18px; }
.team-members ul { display: grid; gap: 10px; list-style: none; margin: 0; padding: 0; }
.team-members li { align-items: center; background: #f5f7f2; border: 1px solid var(--line); border-radius: 9px; display: flex; gap: 12px; justify-content: space-between; padding: 10px 12px; }
.team-members li strong { color: var(--forest); display: block; font-size: .9rem; }
.team-members li span { color: var(--muted); display: block; font-size: .78rem; overflow-wrap: anywhere; }
.team-members li form { margin: 0; }
.text-button { background: transparent; border: 0; color: var(--forest); font-size: .8rem; margin: 0; min-height: auto; padding: 4px; text-decoration: underline; width: auto; }
.text-button:hover { background: transparent; color: var(--danger); transform: none; }
.team-add-member { border-top: 1px solid var(--line); padding-top: 15px; }
.team-add-member summary { color: var(--forest); cursor: pointer; font-size: .9rem; font-weight: 700; }

.generated-link { border-color: #4b8b50; margin-bottom: 20px; }
.generated-link h2,
.sponsor-access-form h2 { color: var(--forest); font-size: 1.2rem; }
.generated-link p { color: var(--muted); }
.sponsor-access-form { margin-bottom: 38px; }
.access-history { margin-top: 6px; }
.access-link-list { display: grid; gap: 12px; }
.access-link-card { align-items: center; background: var(--surface); border: 1px solid var(--line); border-radius: 12px; display: flex; gap: 18px; justify-content: space-between; padding: 18px; }
.access-link-card h3 { color: var(--forest); font-size: 1rem; margin: 0 0 4px; }
.access-link-card p { color: var(--muted); font-size: .86rem; margin: 0; }
.access-link-card form { margin: 0; }
.access-link-card button { margin: 0; width: auto; }

.sponsor-page { background: var(--canvas); min-height: 100vh; }
.sponsor-header { background: var(--charcoal); }
.sponsor-header-inner { align-items: center; color: #d4d8d2; display: flex; font-size: .9rem; font-weight: 700; gap: 13px; margin: 0 auto; max-width: 1160px; padding: 12px 20px; }
.sponsor-header img { height: 42px; object-fit: contain; width: 77px; }
.sponsor-container { max-width: 1020px; }
.sponsor-hero { margin-bottom: 30px; max-width: 780px; }
.sponsor-hero h1 { margin-bottom: 10px; }
.sponsor-hero > p:not(.eyebrow) { color: var(--muted); margin-bottom: 15px; }
.sponsor-expiry { color: var(--muted); font-size: .83rem; font-weight: 700; }
.sponsor-summary { display: grid; gap: 13px; grid-template-columns: repeat(3, minmax(0, 1fr)); margin-bottom: 27px; }
.sponsor-summary article { background: var(--surface); border: 1px solid var(--line); border-radius: 12px; min-height: 116px; padding: 17px; }
.sponsor-summary span { color: var(--muted); display: block; font-size: .78rem; font-weight: 700; line-height: 1.25; }
.sponsor-summary strong { color: var(--forest); display: block; font-size: 2rem; letter-spacing: -.04em; line-height: 1; margin-top: 19px; }
.sponsor-requirement-list { display: grid; gap: 15px; }
.sponsor-requirement-card { background: var(--surface); border: 1px solid var(--line); border-radius: 12px; padding: clamp(20px, 4vw, 27px); }
.sponsor-requirement-heading { align-items: start; display: flex; gap: 16px; justify-content: space-between; }
.sponsor-requirement-heading h2 { color: var(--forest); font-size: 1.16rem; margin: 0; overflow-wrap: anywhere; }
.sponsor-source-requirement { border-left: 3px solid var(--lime); color: var(--ink); margin: 19px 0 0; padding-left: 11px; white-space: pre-wrap; }
.sponsor-empty-evidence { color: var(--muted); font-size: .9rem; margin: 18px 0 0; }
.sponsor-evidence-list { display: grid; gap: 11px; margin-top: 20px; }
.sponsor-evidence-card { align-items: flex-start; background: #f5f7f2; border: 1px solid var(--line); border-radius: 10px; display: flex; gap: 14px; padding: 12px; }
.sponsor-evidence-preview { border-radius: 7px; display: block; flex: 0 0 104px; overflow: hidden; }
.sponsor-evidence-preview img { aspect-ratio: 1 / 1; height: 104px; object-fit: cover; width: 104px; }
.sponsor-evidence-card h3 { color: var(--forest); font-size: .98rem; margin: 0; overflow-wrap: anywhere; }
.sponsor-evidence-card p { color: var(--muted); font-size: .82rem; margin: 5px 0 8px; }

@media (max-width: 860px) {
    .auth-layout {
        align-content: start;
        grid-template-columns: 1fr;
    }
    .brand-panel {
        align-items: center;
        justify-content: center;
        min-height: 0;
        padding: 20px 24px;
    }
    .festival-logo { max-width: 250px; }
    .brand-copy { display: none; }
    .auth-main { padding: 24px 18px 34px; }
    .status-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .filters { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .filter-search { grid-column: span 2; }
    .filter-actions { align-items: stretch; flex-direction: row; }
    .filter-actions button { width: auto; }
    .detail-grid { grid-template-columns: 1fr; }
    .evidence-workspace,
    .admin-workspace { grid-template-columns: 1fr; }
    .sponsor-summary { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .team-members li { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 580px) {
    .topbar { align-items: center; flex-wrap: wrap; padding: 12px 16px; }
    .topbar-brand span,
    .user-name { display: none; }
    .topbar-brand img { height: 40px; width: 72px; }
    .topbar-nav { margin-left: 0; order: 3; overflow-x: auto; width: 100%; }
    .topbar-nav a { padding: 7px 10px; }
    .topbar-actions { margin-left: auto; }
    .dashboard-hero { align-items: flex-start; flex-direction: column; margin-bottom: 24px; }
    .hero-tag { white-space: normal; }
    .status-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .status-card { min-height: 116px; }
    .filters { grid-template-columns: 1fr; }
    .filter-search { grid-column: auto; }
    .filter-actions { align-items: start; flex-direction: column; }
    .filter-actions button { width: 100%; }
    .obligation-card { align-items: stretch; flex-direction: column; }
    .detail-link { width: 100%; }
    .requirement-card-heading { align-items: flex-start; flex-direction: column; }
    .section-heading { align-items: flex-start; flex-direction: column; }
    .evidence-card { flex-direction: column; }
    .evidence-preview { width: 100%; }
    .evidence-preview img { aspect-ratio: 16 / 9; height: auto; width: 100%; }
    .evidence-card-heading { align-items: flex-start; flex-direction: column; }
    .review-form button { width: 100%; }
    .access-link-card { align-items: stretch; flex-direction: column; }
    .access-link-card button { width: 100%; }
    .sponsor-summary { grid-template-columns: 1fr; }
    .sponsor-summary article { min-height: 0; }
    .sponsor-summary strong { margin-top: 12px; }
    .sponsor-requirement-heading { align-items: flex-start; flex-direction: column; }
    .sponsor-evidence-card { flex-direction: column; }
    .sponsor-evidence-preview { width: 100%; }
    .sponsor-evidence-preview img { aspect-ratio: 16 / 9; height: auto; width: 100%; }
}
