/* ======================================================================
   R2.1T.2C | Convergência, Divergência e Síntese
   Caderno de Convergência da Politeia Viva
   ====================================================================== */

.tv2-deliberation {
    position: relative;
    margin-top: 24px;
    padding: clamp(24px, 4vw, 48px);
    overflow: hidden;
    border-radius: var(--tv2-radius-lg);
    box-shadow: var(--tv2-shadow-deep);
}

.tv2-deliberation::before {
    position: absolute;
    inset: 1px;
    z-index: 0;
    border-radius: calc(var(--tv2-radius-lg) - 1px);
    content: "";
    pointer-events: none;
    background:
        linear-gradient(118deg, rgba(255, 255, 255, .68), transparent 38%),
        radial-gradient(circle at 8% 12%, rgba(var(--tv2-green-rgb), .1), transparent 28%),
        radial-gradient(circle at 92% 16%, rgba(var(--tv2-coral-rgb), .1), transparent 28%),
        radial-gradient(circle at 72% 88%, rgba(var(--tv2-magenta-rgb), .11), transparent 34%);
}

.tv2-deliberation__aurora {
    position: absolute;
    top: -46%;
    right: -18%;
    z-index: 0;
    width: 70%;
    aspect-ratio: 1;
    border-radius: 50%;
    pointer-events: none;
    background: conic-gradient(
        from 120deg,
        rgba(var(--tv2-green-rgb), .22),
        rgba(var(--tv2-cyan-rgb), .12),
        rgba(var(--tv2-magenta-rgb), .19),
        rgba(var(--tv2-coral-rgb), .14),
        rgba(var(--tv2-green-rgb), .22)
    );
    filter: blur(5px);
    mask-image: radial-gradient(circle, #000 0 45%, transparent 70%);
    animation: tv2-deliberation-aurora 34s linear infinite;
}

.tv2-deliberation > *:not(.tv2-deliberation__aurora) {
    position: relative;
    z-index: 2;
}

.tv2-deliberation__head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 32px;
    align-items: center;
}

.tv2-deliberation__head h2 {
    max-width: 1000px;
    margin: 0;
    color: var(--tv2-ink);
    font-size: clamp(2rem, 3.2vw, 3.55rem);
    font-weight: 950;
    line-height: 1.02;
    letter-spacing: -.045em;
    text-wrap: balance;
}

.tv2-deliberation__head p {
    max-width: 920px;
    margin: 18px 0 0;
    color: var(--tv2-text);
    font-size: 1rem;
    line-height: 1.75;
}

.tv2-deliberation__score {
    display: grid;
    place-items: center;
    min-width: 190px;
    min-height: 180px;
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, .88);
    border-radius: 50%;
    text-align: center;
    background:
        radial-gradient(circle at 32% 22%, rgba(255, 255, 255, .98), transparent 34%),
        linear-gradient(145deg, rgba(var(--tv2-green-rgb), .15), rgba(var(--tv2-magenta-rgb), .12));
    box-shadow:
        0 26px 60px rgba(39, 57, 111, .16),
        0 0 0 12px rgba(255, 255, 255, .22);
}

.tv2-deliberation__score > .material-icons {
    color: var(--tv2-magenta);
    font-size: 36px;
}

.tv2-deliberation__score strong,
.tv2-deliberation__score small {
    display: block;
}

.tv2-deliberation__score strong {
    color: var(--tv2-ink);
    font-size: 2rem;
    font-weight: 950;
}

.tv2-deliberation__score small {
    max-width: 130px;
    color: var(--tv2-muted);
    font-size: .73rem;
    line-height: 1.35;
}

.tv2-deliberation-signals {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin-top: 28px;
}

.tv2-deliberation-signals article {
    display: flex;
    gap: 13px;
    align-items: center;
    min-height: 92px;
    padding: 16px 18px;
    border: 1px solid rgba(255, 255, 255, .75);
    border-radius: 20px;
    background: rgba(255, 255, 255, .5);
    box-shadow: 0 14px 34px rgba(34, 52, 102, .07);
    backdrop-filter: blur(18px);
}

.tv2-deliberation-signals .material-icons {
    display: grid;
    place-items: center;
    width: 44px;
    aspect-ratio: 1;
    border-radius: 14px;
    color: var(--tv2-violet);
    background: rgba(var(--tv2-violet-rgb), .1);
}

.tv2-deliberation-signals strong,
.tv2-deliberation-signals small {
    display: block;
}

.tv2-deliberation-signals strong {
    color: var(--tv2-ink);
    font-size: 1.3rem;
    font-weight: 950;
}

.tv2-deliberation-signals small {
    margin-top: 2px;
    color: var(--tv2-muted);
    font-size: .7rem;
    line-height: 1.3;
}

.tv2-deliberation-map {
    display: grid;
    grid-template-columns: repeat(7, minmax(140px, 1fr));
    gap: 10px;
    margin-top: 18px;
}

.tv2-deliberation-map__item {
    --tv2-map-tone: var(--tv2-violet-rgb);
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 10px;
    align-items: center;
    min-height: 112px;
    padding: 14px;
    border: 1px solid rgba(var(--tv2-map-tone), .16);
    border-radius: 20px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, .75), rgba(255, 255, 255, .48)),
        radial-gradient(circle at 100% 0%, rgba(var(--tv2-map-tone), .1), transparent 48%);
    box-shadow: 0 14px 34px rgba(35, 52, 102, .07);
    animation: tv2-deliberation-rise .65s both;
    animation-delay: calc(var(--tv2-deliberation-order, 0) * 55ms);
}

.tv2-deliberation-map__item.tv2-tone-green { --tv2-map-tone: var(--tv2-green-rgb); }
.tv2-deliberation-map__item.tv2-tone-coral { --tv2-map-tone: var(--tv2-coral-rgb); }
.tv2-deliberation-map__item.tv2-tone-amber { --tv2-map-tone: var(--tv2-amber-rgb); }
.tv2-deliberation-map__item.tv2-tone-violet { --tv2-map-tone: var(--tv2-violet-rgb); }
.tv2-deliberation-map__item.tv2-tone-cyan { --tv2-map-tone: var(--tv2-cyan-rgb); }
.tv2-deliberation-map__item.tv2-tone-blue { --tv2-map-tone: var(--tv2-blue-rgb); }
.tv2-deliberation-map__item.tv2-tone-magenta { --tv2-map-tone: var(--tv2-magenta-rgb); }

.tv2-deliberation-map__item > .material-icons {
    color: rgb(var(--tv2-map-tone));
    font-size: 25px;
}

.tv2-deliberation-map__item strong,
.tv2-deliberation-map__item small {
    display: block;
}

.tv2-deliberation-map__item strong {
    color: var(--tv2-ink);
    font-size: .78rem;
    font-weight: 950;
    line-height: 1.2;
}

.tv2-deliberation-map__item small {
    margin-top: 5px;
    color: var(--tv2-muted);
    font-size: .62rem;
    line-height: 1.32;
}

.tv2-deliberation-map__item b {
    color: rgb(var(--tv2-map-tone));
    font-size: 1rem;
}

.tv2-deliberation-start {
    display: flex;
    gap: 18px;
    align-items: center;
    justify-content: space-between;
    margin-top: 24px;
    padding: 18px 20px;
    border: 1px solid rgba(var(--tv2-magenta-rgb), .16);
    border-radius: 22px;
    background: linear-gradient(145deg, rgba(var(--tv2-magenta-rgb), .08), rgba(255, 255, 255, .58));
}

.tv2-deliberation-start p {
    margin: 0;
    color: var(--tv2-muted);
    font-size: .76rem;
    line-height: 1.5;
}

.tv2-deliberation-composer {
    margin-top: 18px;
    padding: clamp(20px, 3vw, 32px);
    border: 1px solid rgba(255, 255, 255, .82);
    border-radius: 28px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, .82), rgba(255, 255, 255, .58)),
        radial-gradient(circle at 90% 0%, rgba(var(--tv2-magenta-rgb), .09), transparent 38%);
    box-shadow: 0 24px 60px rgba(35, 49, 96, .12);
}

.tv2-deliberation-composer[hidden] {
    display: none;
}

.tv2-deliberation-composer__head {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    justify-content: space-between;
}

.tv2-deliberation-composer__head h3 {
    margin: 0;
    color: var(--tv2-ink);
    font-size: clamp(1.45rem, 2.3vw, 2.25rem);
    font-weight: 950;
    letter-spacing: -.035em;
}

.tv2-deliberation-composer__head p {
    margin: 9px 0 0;
    color: var(--tv2-muted);
    font-size: .82rem;
}

.tv2-deliberation-composer__head > button {
    display: grid;
    place-items: center;
    width: 42px;
    aspect-ratio: 1;
    border: 1px solid rgba(80, 98, 150, .14);
    border-radius: 14px;
    color: var(--tv2-muted);
    background: rgba(255, 255, 255, .66);
    cursor: pointer;
}

.tv2-deliberation-types {
    display: grid;
    grid-template-columns: repeat(7, minmax(110px, 1fr));
    gap: 9px;
    margin-top: 22px;
}

.tv2-deliberation-type {
    --tv2-type-tone: var(--tv2-violet-rgb);
    position: relative;
    display: grid;
    gap: 8px;
    min-height: 112px;
    padding: 14px;
    border: 1px solid rgba(var(--tv2-type-tone), .16);
    border-radius: 18px;
    cursor: pointer;
    background: rgba(255, 255, 255, .58);
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.tv2-deliberation-type.tv2-tone-green { --tv2-type-tone: var(--tv2-green-rgb); }
.tv2-deliberation-type.tv2-tone-coral { --tv2-type-tone: var(--tv2-coral-rgb); }
.tv2-deliberation-type.tv2-tone-amber { --tv2-type-tone: var(--tv2-amber-rgb); }
.tv2-deliberation-type.tv2-tone-violet { --tv2-type-tone: var(--tv2-violet-rgb); }
.tv2-deliberation-type.tv2-tone-cyan { --tv2-type-tone: var(--tv2-cyan-rgb); }
.tv2-deliberation-type.tv2-tone-blue { --tv2-type-tone: var(--tv2-blue-rgb); }
.tv2-deliberation-type.tv2-tone-magenta { --tv2-type-tone: var(--tv2-magenta-rgb); }

.tv2-deliberation-type:hover,
.tv2-deliberation-type.is-selected {
    transform: translateY(-3px);
    border-color: rgba(var(--tv2-type-tone), .38);
    background: linear-gradient(145deg, rgba(255, 255, 255, .9), rgba(var(--tv2-type-tone), .08));
    box-shadow: 0 16px 34px rgba(var(--tv2-type-tone), .12);
}

.tv2-deliberation-type input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.tv2-deliberation-type .material-icons {
    color: rgb(var(--tv2-type-tone));
    font-size: 26px;
}

.tv2-deliberation-type strong {
    color: var(--tv2-ink);
    font-size: .72rem;
    font-weight: 950;
    line-height: 1.25;
}

.tv2-deliberation-field {
    position: relative;
    display: block;
    margin-top: 18px;
    color: var(--tv2-ink);
    font-size: .76rem;
    font-weight: 900;
}

.tv2-deliberation-field input,
.tv2-deliberation-field textarea,
.tv2-deliberation-field select {
    width: 100%;
    margin-top: 8px;
    padding: 14px 15px;
    border: 1px solid rgba(86, 107, 162, .19);
    border-radius: 16px;
    outline: 0;
    color: var(--tv2-text);
    font: inherit;
    font-weight: 600;
    line-height: 1.55;
    background: rgba(255, 255, 255, .72);
    box-shadow: 0 1px 0 rgba(255, 255, 255, .9) inset, 0 10px 24px rgba(35, 50, 99, .05);
    transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.tv2-deliberation-field textarea {
    resize: vertical;
    min-height: 118px;
}

.tv2-deliberation-field input:focus,
.tv2-deliberation-field textarea:focus,
.tv2-deliberation-field select:focus {
    border-color: rgba(var(--tv2-violet-rgb), .48);
    background: rgba(255, 255, 255, .92);
    box-shadow: 0 0 0 4px rgba(var(--tv2-violet-rgb), .1), 0 16px 34px rgba(35, 50, 99, .07);
}

.tv2-deliberation-field > small {
    display: block;
    margin-top: 6px;
    text-align: right;
    color: var(--tv2-muted);
    font-size: .62rem;
    font-weight: 700;
}

.tv2-deliberation-sources {
    margin: 20px 0 0;
    padding: 18px;
    border: 1px solid rgba(88, 108, 164, .15);
    border-radius: 22px;
    background: rgba(249, 251, 255, .58);
}

.tv2-deliberation-sources legend {
    padding: 0 8px;
    color: var(--tv2-ink);
    font-size: .78rem;
    font-weight: 950;
}

.tv2-deliberation-sources > p,
.tv2-deliberation-sources > small {
    color: var(--tv2-muted);
    font-size: .68rem;
    line-height: 1.45;
}

.tv2-deliberation-sources > div {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
    max-height: 390px;
    margin: 14px 0 10px;
    overflow: auto;
    padding-right: 4px;
}

.tv2-deliberation-source {
    --tv2-source-tone: var(--tv2-violet-rgb);
    position: relative;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 11px;
    align-items: start;
    padding: 13px;
    border: 1px solid rgba(var(--tv2-source-tone), .13);
    border-radius: 16px;
    cursor: pointer;
    background: rgba(255, 255, 255, .64);
}

.tv2-deliberation-source.tv2-tone-green { --tv2-source-tone: var(--tv2-green-rgb); }
.tv2-deliberation-source.tv2-tone-coral { --tv2-source-tone: var(--tv2-coral-rgb); }
.tv2-deliberation-source.tv2-tone-amber { --tv2-source-tone: var(--tv2-amber-rgb); }
.tv2-deliberation-source.tv2-tone-violet { --tv2-source-tone: var(--tv2-violet-rgb); }
.tv2-deliberation-source.tv2-tone-cyan { --tv2-source-tone: var(--tv2-cyan-rgb); }
.tv2-deliberation-source.tv2-tone-blue { --tv2-source-tone: var(--tv2-blue-rgb); }
.tv2-deliberation-source.tv2-tone-magenta { --tv2-source-tone: var(--tv2-magenta-rgb); }
.tv2-deliberation-source.tv2-tone-orange { --tv2-source-tone: var(--tv2-orange-rgb); }

.tv2-deliberation-source.is-selected {
    border-color: rgba(var(--tv2-source-tone), .42);
    background: linear-gradient(145deg, rgba(255, 255, 255, .9), rgba(var(--tv2-source-tone), .08));
    box-shadow: 0 12px 26px rgba(var(--tv2-source-tone), .09);
}

.tv2-deliberation-source:has(input:disabled) {
    opacity: .5;
    cursor: not-allowed;
}

.tv2-deliberation-source input {
    position: absolute;
    opacity: 0;
}

.tv2-deliberation-source > .material-icons {
    color: rgb(var(--tv2-source-tone));
    font-size: 23px;
}

.tv2-deliberation-source strong,
.tv2-deliberation-source small {
    display: block;
}

.tv2-deliberation-source strong {
    color: var(--tv2-ink);
    font-size: .7rem;
    font-weight: 950;
}

.tv2-deliberation-source small {
    margin-top: 4px;
    color: var(--tv2-muted);
    font-size: .62rem;
    line-height: 1.4;
}

.tv2-deliberation-form__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.tv2-deliberation-form__footer {
    display: flex;
    gap: 18px;
    align-items: center;
    justify-content: space-between;
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid rgba(90, 110, 165, .12);
}

.tv2-deliberation-form__footer p {
    max-width: 680px;
    margin: 0;
    color: var(--tv2-muted);
    font-size: .68rem;
    line-height: 1.5;
}

.tv2-deliberation-form__message {
    margin-top: 14px;
    padding: 13px 15px;
    border-radius: 14px;
    font-size: .74rem;
    font-weight: 800;
}

.tv2-deliberation-form__message.is-error {
    color: #a32f45;
    background: rgba(200, 63, 86, .1);
}

.tv2-deliberation-form__message.is-success {
    color: #1f7654;
    background: rgba(var(--tv2-green-rgb), .1);
}

.tv2-deliberation-cards {
    margin-top: 28px;
}

.tv2-deliberation-cards > header {
    display: flex;
    gap: 20px;
    align-items: end;
    justify-content: space-between;
}

.tv2-deliberation-cards > header h3 {
    margin: 0;
    color: var(--tv2-ink);
    font-size: clamp(1.4rem, 2vw, 2rem);
    font-weight: 950;
    letter-spacing: -.035em;
}

.tv2-deliberation-cards > header > span {
    color: var(--tv2-muted);
    font-size: .72rem;
    font-weight: 900;
}

.tv2-deliberation-card-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 18px;
}

.tv2-deliberation-card {
    --tv2-card-tone: var(--tv2-violet-rgb);
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 330px;
    padding: 22px;
    overflow: hidden;
    border: 1px solid rgba(var(--tv2-card-tone), .17);
    border-radius: 26px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, .86), rgba(255, 255, 255, .57)),
        radial-gradient(circle at 100% 0%, rgba(var(--tv2-card-tone), .12), transparent 45%);
    box-shadow: 0 20px 46px rgba(34, 48, 94, .09);
}

.tv2-deliberation-card.tv2-tone-green { --tv2-card-tone: var(--tv2-green-rgb); }
.tv2-deliberation-card.tv2-tone-coral { --tv2-card-tone: var(--tv2-coral-rgb); }
.tv2-deliberation-card.tv2-tone-amber { --tv2-card-tone: var(--tv2-amber-rgb); }
.tv2-deliberation-card.tv2-tone-violet { --tv2-card-tone: var(--tv2-violet-rgb); }
.tv2-deliberation-card.tv2-tone-cyan { --tv2-card-tone: var(--tv2-cyan-rgb); }
.tv2-deliberation-card.tv2-tone-blue { --tv2-card-tone: var(--tv2-blue-rgb); }
.tv2-deliberation-card.tv2-tone-magenta { --tv2-card-tone: var(--tv2-magenta-rgb); }

.tv2-deliberation-card::after {
    position: absolute;
    top: -80px;
    right: -80px;
    width: 190px;
    aspect-ratio: 1;
    border-radius: 50%;
    content: "";
    pointer-events: none;
    background: radial-gradient(circle, rgba(var(--tv2-card-tone), .15), transparent 68%);
}

.tv2-deliberation-card > header,
.tv2-deliberation-card > footer,
.tv2-deliberation-card > h4,
.tv2-deliberation-card > p,
.tv2-deliberation-card > aside,
.tv2-deliberation-card__sources {
    position: relative;
    z-index: 1;
}

.tv2-deliberation-card > header {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: space-between;
}

.tv2-deliberation-card__type {
    display: inline-flex;
    gap: 7px;
    align-items: center;
    color: rgb(var(--tv2-card-tone));
    font-size: .68rem;
    font-weight: 950;
}

.tv2-deliberation-card__type .material-icons {
    font-size: 19px;
}

.tv2-deliberation-card > header > small {
    color: var(--tv2-muted);
    font-size: .64rem;
}

.tv2-deliberation-card h4 {
    margin: 18px 0 0;
    color: var(--tv2-ink);
    font-size: 1.28rem;
    font-weight: 950;
    line-height: 1.18;
    letter-spacing: -.025em;
}

.tv2-deliberation-card > p {
    margin: 13px 0 0;
    color: var(--tv2-text);
    font-size: .82rem;
    line-height: 1.65;
}

.tv2-deliberation-card > aside {
    margin-top: 15px;
    padding: 13px 14px;
    border-left: 3px solid rgba(var(--tv2-card-tone), .5);
    border-radius: 0 14px 14px 0;
    background: rgba(var(--tv2-card-tone), .06);
}

.tv2-deliberation-card > aside strong {
    color: var(--tv2-ink);
    font-size: .68rem;
    font-weight: 950;
}

.tv2-deliberation-card > aside p {
    margin: 5px 0 0;
    color: var(--tv2-muted);
    font-size: .7rem;
    line-height: 1.5;
}

.tv2-deliberation-card__sources {
    display: inline-flex;
    gap: 7px;
    align-items: center;
    margin-top: 14px;
    color: var(--tv2-muted);
    font-size: .64rem;
    font-weight: 800;
}

.tv2-deliberation-card__sources .material-icons {
    color: rgb(var(--tv2-card-tone));
    font-size: 17px;
}

.tv2-deliberation-card > footer {
    margin-top: auto;
    padding-top: 18px;
}

.tv2-deliberation-card__author {
    display: flex;
    gap: 10px;
    align-items: center;
    padding-top: 14px;
    border-top: 1px solid rgba(86, 106, 160, .1);
}

.tv2-deliberation-card__author > .material-icons {
    display: grid;
    place-items: center;
    width: 34px;
    aspect-ratio: 1;
    border-radius: 11px;
    color: rgb(var(--tv2-card-tone));
    background: rgba(var(--tv2-card-tone), .09);
}

.tv2-deliberation-card__author strong,
.tv2-deliberation-card__author small {
    display: block;
}

.tv2-deliberation-card__author strong {
    color: var(--tv2-ink);
    font-size: .7rem;
    font-weight: 950;
}

.tv2-deliberation-card__author small {
    margin-top: 2px;
    color: var(--tv2-muted);
    font-size: .58rem;
}

.tv2-deliberation-reviews {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 7px;
    margin-top: 14px;
}

.tv2-deliberation-reviews form {
    margin: 0;
}

.tv2-deliberation-review {
    --tv2-review-tone: var(--tv2-violet-rgb);
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 6px;
    align-items: center;
    width: 100%;
    min-height: 42px;
    padding: 8px 9px;
    border: 1px solid rgba(var(--tv2-review-tone), .14);
    border-radius: 12px;
    color: var(--tv2-text);
    font-size: .58rem;
    font-weight: 900;
    cursor: pointer;
    background: rgba(255, 255, 255, .58);
}

.tv2-deliberation-review.tv2-tone-green { --tv2-review-tone: var(--tv2-green-rgb); }
.tv2-deliberation-review.tv2-tone-amber { --tv2-review-tone: var(--tv2-amber-rgb); }
.tv2-deliberation-review.tv2-tone-coral { --tv2-review-tone: var(--tv2-coral-rgb); }

.tv2-deliberation-review:hover,
.tv2-deliberation-review.is-active {
    border-color: rgba(var(--tv2-review-tone), .4);
    color: rgb(var(--tv2-review-tone));
    background: rgba(var(--tv2-review-tone), .08);
}

.tv2-deliberation-review:disabled {
    opacity: .5;
    cursor: not-allowed;
}

.tv2-deliberation-review .material-icons {
    font-size: 16px;
}

.tv2-deliberation-review b {
    font-size: .68rem;
}

.tv2-deliberation-archive {
    margin: 10px 0 0;
    text-align: right;
}

.tv2-deliberation-archive button {
    display: inline-flex;
    gap: 6px;
    align-items: center;
    padding: 0;
    border: 0;
    color: var(--tv2-muted);
    font-size: .62rem;
    font-weight: 800;
    cursor: pointer;
    background: transparent;
}

.tv2-deliberation-archive .material-icons {
    font-size: 16px;
}

.tv2-deliberation-card__tombstone {
    color: var(--tv2-muted) !important;
    font-style: italic;
}

.tv2-deliberation-empty {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-top: 18px;
    padding: 26px;
    border: 1px dashed rgba(var(--tv2-violet-rgb), .24);
    border-radius: 22px;
    background: rgba(255, 255, 255, .45);
}

.tv2-deliberation-empty > .material-icons {
    color: var(--tv2-violet);
    font-size: 38px;
}

.tv2-deliberation-empty strong,
.tv2-deliberation-empty p {
    display: block;
}

.tv2-deliberation-empty strong {
    color: var(--tv2-ink);
    font-weight: 950;
}

.tv2-deliberation-empty p {
    margin: 4px 0 0;
    color: var(--tv2-muted);
    font-size: .74rem;
}

.tv2-deliberation-principle {
    display: flex;
    gap: 13px;
    align-items: center;
    margin-top: 22px;
    padding: 16px 18px;
    border: 1px solid rgba(var(--tv2-amber-rgb), .2);
    border-radius: 18px;
    background: linear-gradient(145deg, rgba(var(--tv2-amber-rgb), .08), rgba(255, 255, 255, .55));
}

.tv2-deliberation-principle .material-icons {
    color: var(--tv2-amber);
}

.tv2-deliberation-principle p {
    margin: 0;
    color: var(--tv2-text);
    font-size: .72rem;
    line-height: 1.5;
}

.tv2-public-deliberation {
    margin-top: 20px;
}

.tv2-public-deliberation .tv2-deliberation-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.tv2-public-deliberation__notice {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-top: 18px;
    padding: 15px 17px;
    border-radius: 16px;
    color: var(--tv2-muted);
    font-size: .7rem;
    background: rgba(255, 255, 255, .5);
}

.tv2-public-deliberation__notice .material-icons {
    color: var(--tv2-violet);
}

.tv2-moderation-deliberation {
    margin-top: 20px;
}

@media (max-width: 1280px) {
    .tv2-deliberation-map,
    .tv2-deliberation-types {
        grid-template-columns: repeat(4, minmax(120px, 1fr));
    }
}

@media (max-width: 980px) {
    .tv2-deliberation__head {
        grid-template-columns: 1fr;
    }

    .tv2-deliberation__score {
        justify-self: start;
        min-width: 150px;
        min-height: 150px;
    }

    .tv2-deliberation-signals {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .tv2-deliberation-card-grid,
    .tv2-public-deliberation .tv2-deliberation-card-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    .tv2-deliberation {
        padding: 22px 16px;
        border-radius: 26px;
    }

    .tv2-deliberation-map,
    .tv2-deliberation-types,
    .tv2-deliberation-signals,
    .tv2-deliberation-sources > div,
    .tv2-deliberation-form__grid {
        grid-template-columns: 1fr;
    }

    .tv2-deliberation-start,
    .tv2-deliberation-form__footer,
    .tv2-deliberation-cards > header {
        align-items: stretch;
        flex-direction: column;
    }

    .tv2-deliberation-start .tv2-button,
    .tv2-deliberation-form__footer .tv2-button {
        width: 100%;
    }

    .tv2-deliberation-reviews {
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {
    .tv2-deliberation__aurora,
    .tv2-deliberation-map__item {
        animation: none;
    }

    .tv2-deliberation-type,
    .tv2-deliberation-review {
        transition: none;
    }
}

@keyframes tv2-deliberation-aurora {
    to { transform: rotate(360deg); }
}

@keyframes tv2-deliberation-rise {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}
