:root {
    color-scheme: light;
    --bg: #eef2f7;
    --surface: #ffffff;
    --surface-soft: #f8fafc;
    --text: #111827;
    --muted: #64748b;
    --border: #d7dee8;
    --accent: #0f766e;
    --accent-dark: #115e59;
    --danger: #b42318;
    --danger-bg: #fff2f0;
    --success: #0e7a3f;
    --success-bg: #eefbf2;
    --warning: #b45309;
    --warning-bg: #fff7ed;
    --shadow: 0 24px 70px rgba(15, 23, 42, 0.14);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    min-height: 100vh;
    background:
        linear-gradient(140deg, rgba(15, 118, 110, 0.12), transparent 34%),
        linear-gradient(320deg, rgba(30, 64, 175, 0.10), transparent 36%),
        var(--bg);
    color: var(--text);
    font-family: Arial, "Helvetica Neue", sans-serif;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(238, 242, 247, 0.92)),
        linear-gradient(90deg, rgba(15, 118, 110, 0.08), transparent 42%, rgba(180, 35, 24, 0.05));
}

a {
    color: var(--accent-dark);
}

code {
    background: #e2e8f0;
    border-radius: 6px;
    padding: 2px 6px;
}

.topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    width: min(1120px, calc(100% - 36px));
    margin: 18px auto 0;
    padding: 12px 14px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(148, 163, 184, 0.32);
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.logo,
.nav,
.inline-form {
    display: flex;
    align-items: center;
}

.logo {
    gap: 10px;
    color: var(--text);
    font-weight: 800;
    text-decoration: none;
}

.logo-mark {
    display: grid;
    width: 36px;
    height: 36px;
    place-items: center;
    background: var(--accent);
    border-radius: 8px;
    color: #fff;
    font-size: 14px;
}

.nav {
    flex-wrap: wrap;
    gap: 6px;
    justify-content: flex-end;
}

.nav a,
.link-button,
.tabs a {
    border: 0;
    border-radius: 8px;
    background: transparent;
    color: var(--muted);
    cursor: pointer;
    font: inherit;
    font-size: 14px;
    font-weight: 700;
    padding: 10px 12px;
    text-decoration: none;
}

.nav a.active,
.tabs a.active,
.nav a:hover,
.tabs a:hover,
.link-button:hover {
    background: #e6fffb;
    color: var(--accent-dark);
}

.shell {
    display: grid;
    min-height: calc(100vh - 76px);
    place-items: start center;
    padding: 22px 18px 42px;
}

.workspace {
    width: min(1120px, 100%);
    background: var(--surface);
    border: 1px solid rgba(148, 163, 184, 0.3);
    border-radius: 8px;
    box-shadow: var(--shadow);
    padding: clamp(22px, 4vw, 42px);
}

.home-workspace {
    width: min(1280px, 100%);
    background: transparent;
    border: 0;
    box-shadow: none;
    padding: 0;
}

.promo-hero {
    display: grid;
    min-height: min(640px, calc(100vh - 150px));
    align-items: center;
    overflow: hidden;
    border-radius: 8px;
    background:
        linear-gradient(90deg, rgba(4, 12, 18, 0.94) 0%, rgba(4, 12, 18, 0.76) 42%, rgba(4, 12, 18, 0.22) 72%),
        url("/assets/images/promo-hero.png") center / cover no-repeat;
    box-shadow: 0 28px 80px rgba(15, 23, 42, 0.24);
}

.promo-hero-content {
    width: min(760px, 100%);
    padding: clamp(34px, 7vw, 84px);
    color: #fff;
}

.promo-hero h1 {
    max-width: 720px;
    margin-bottom: 22px;
    color: #fff;
    font-size: clamp(44px, 8vw, 96px);
    line-height: 0.96;
}

.promo-hero p {
    max-width: 620px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.84);
    font-size: clamp(18px, 2vw, 24px);
    line-height: 1.45;
}

.promo-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.promo-primary,
.promo-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    border-radius: 8px;
    font-weight: 900;
    padding: 0 22px;
    text-decoration: none;
}

.promo-primary {
    background: #10b3a3;
    color: #041012;
}

.promo-primary:hover {
    background: #2dd4bf;
}

.promo-secondary {
    border: 1px solid rgba(255, 255, 255, 0.42);
    color: #fff;
}

.promo-secondary:hover {
    background: rgba(255, 255, 255, 0.10);
}

.promo-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    overflow: hidden;
    margin-top: 18px;
    border: 1px solid rgba(148, 163, 184, 0.30);
    border-radius: 8px;
    background: rgba(148, 163, 184, 0.28);
    box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
}

.promo-strip div {
    display: grid;
    gap: 6px;
    background: rgba(255, 255, 255, 0.92);
    padding: 20px;
}

.promo-strip strong {
    font-size: 18px;
}

.promo-strip span {
    color: var(--muted);
    line-height: 1.45;
}

.promo-search-section,
.promo-audience {
    margin-top: 18px;
    border: 1px solid rgba(148, 163, 184, 0.30);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
    padding: clamp(24px, 4vw, 42px);
}

.promo-section-copy {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 22px;
}

.promo-section-copy h2,
.promo-audience h2 {
    max-width: 620px;
    margin: 0;
    font-size: clamp(30px, 4vw, 50px);
}

.promo-section-copy p {
    max-width: 420px;
    margin: 0;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.5;
}

.promo-search-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
    gap: 16px;
    align-items: stretch;
}

.promo-search-card,
.promo-result-card {
    margin: 0;
    box-shadow: none;
}

.result-mini-label {
    color: var(--accent-dark);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.promo-audience {
    margin-bottom: 12px;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 22px;
}

.audience-grid article {
    min-height: 170px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: #fff;
    padding: 20px;
}

.audience-grid strong {
    display: block;
    margin-bottom: 12px;
    font-size: 20px;
}

.audience-grid p {
    margin: 0;
    color: var(--muted);
    line-height: 1.5;
}

.home-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
    grid-template-areas:
        "copy dock"
        "search dock";
    gap: 14px;
    align-items: stretch;
}

.hero-copy,
.search-console,
.result-dock,
.trust-strip {
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(148, 163, 184, 0.32);
    border-radius: 8px;
    box-shadow: 0 22px 60px rgba(15, 23, 42, 0.10);
}

.hero-copy {
    grid-area: copy;
    display: grid;
    align-content: end;
    min-height: 220px;
    padding: clamp(24px, 4vw, 40px);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 252, 0.95)),
        repeating-linear-gradient(90deg, rgba(15, 118, 110, 0.10) 0 1px, transparent 1px 56px);
}

.hero-copy h1 {
    max-width: 760px;
    font-size: clamp(40px, 5.8vw, 68px);
    line-height: 1.02;
}

.hero-text {
    max-width: 680px;
    margin: 16px 0 0;
    color: #475569;
    font-size: clamp(16px, 1.6vw, 19px);
    line-height: 1.48;
}

.search-console {
    grid-area: search;
    display: grid;
    gap: 14px;
    padding: clamp(18px, 2.6vw, 24px);
}

.type-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0;
    padding: 0;
    border: 0;
}

.type-chips legend {
    flex: 0 0 100%;
    margin-bottom: 2px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
}

.type-chip {
    display: inline-flex;
    gap: 0;
}

.type-chip input {
    position: absolute;
    width: auto;
    min-height: 0;
    margin: 0;
    opacity: 0;
    pointer-events: none;
}

.type-chip span {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: #fff;
    color: #334155;
    cursor: pointer;
    font-size: 14px;
    font-weight: 800;
    padding: 0 14px;
}

.type-chip input:checked + span {
    border-color: rgba(15, 118, 110, 0.38);
    background: #e6fffb;
    color: var(--accent-dark);
    box-shadow: inset 0 0 0 1px rgba(15, 118, 110, 0.12);
}

.search-input-wrap {
    display: grid;
    gap: 8px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
}

.search-input-wrap input {
    min-height: 58px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    color: var(--text);
    font-size: clamp(17px, 2vw, 22px);
    font-weight: 700;
    text-transform: none;
}

.search-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.search-actions button,
.secondary-action {
    min-height: 50px;
    border-radius: 8px;
    font-weight: 800;
}

.secondary-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    background: #fff;
    color: var(--text);
    padding: 0 18px;
    text-decoration: none;
}

.secondary-action:hover {
    border-color: rgba(15, 118, 110, 0.38);
    color: var(--accent-dark);
}

.result-dock {
    grid-area: dock;
    display: grid;
    align-content: start;
    gap: 14px;
    min-height: 100%;
    padding: clamp(22px, 3vw, 30px);
}

.result-dock.neutral {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 252, 0.96)),
        linear-gradient(135deg, rgba(15, 118, 110, 0.08), transparent 42%);
}

.result-dock.hit {
    background: var(--danger-bg);
    border-color: rgba(180, 35, 24, 0.22);
}

.result-dock.clear {
    background: var(--success-bg);
    border-color: rgba(14, 122, 63, 0.22);
}

.dock-topline {
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
}

.result-dock h2 {
    margin: 0;
    font-size: clamp(30px, 3.6vw, 42px);
}

.result-dock p {
    color: #475569;
    font-size: 17px;
    line-height: 1.5;
}

.dock-examples {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-top: 8px;
}

.dock-examples code {
    background: #fff;
    border: 1px solid var(--border);
    color: #0f172a;
    font-weight: 800;
    padding: 8px 10px;
}

.result-preview-list {
    display: grid;
    gap: 10px;
    margin-top: 10px;
}

.result-preview-list div,
.moderation-preview {
    display: grid;
    gap: 4px;
    border: 1px solid rgba(148, 163, 184, 0.30);
    border-radius: 8px;
    padding: 14px;
}

.result-preview-list strong,
.moderation-preview strong {
    font-size: 16px;
}

.result-preview-list span,
.moderation-preview span {
    color: var(--muted);
    font-size: 14px;
}

.preview-hit {
    background: rgba(255, 242, 240, 0.76);
    color: var(--danger);
}

.preview-clear {
    background: rgba(238, 251, 242, 0.78);
    color: var(--success);
}

.moderation-preview {
    margin-top: 4px;
    background: rgba(255, 247, 237, 0.82);
    color: #0f172a;
}

.dock-facts {
    display: grid;
    gap: 10px;
    margin: 0;
}

.dock-facts div {
    display: grid;
    gap: 6px;
    padding: 14px;
    background: rgba(255, 255, 255, 0.70);
    border: 1px solid rgba(148, 163, 184, 0.30);
    border-radius: 8px;
}

.trust-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    margin-top: 18px;
    overflow: hidden;
    padding: 0;
}

.trust-strip div {
    display: grid;
    gap: 8px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.70);
}

.trust-icon {
    display: inline-grid;
    width: 42px;
    height: 32px;
    place-items: center;
    border-radius: 8px;
    background: #0f172a;
    color: #fff;
    font-size: 12px;
    font-weight: 900;
}

.trust-strip strong {
    font-size: 17px;
}

.trust-strip p {
    margin: 0;
    color: var(--muted);
    line-height: 1.45;
}

.heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 22px;
    margin-bottom: 28px;
}

.compact-heading {
    margin-bottom: 20px;
}

.brand,
.result-label {
    margin: 0 0 8px;
    color: var(--accent-dark);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: uppercase;
}

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

h1 {
    margin-bottom: 0;
    font-size: clamp(30px, 5vw, 54px);
    line-height: 1.02;
    letter-spacing: 0;
}

h2,
.section-title {
    margin-bottom: 12px;
    font-size: clamp(21px, 3vw, 30px);
    line-height: 1.1;
    letter-spacing: 0;
}

.section-title {
    margin-top: 28px;
}

.privacy-mark {
    flex: 0 0 auto;
    border: 1px solid var(--border);
    border-radius: 999px;
    color: var(--muted);
    font-size: 14px;
    padding: 10px 14px;
    white-space: nowrap;
}

.search-panel,
.form-grid {
    display: grid;
    gap: 14px;
    align-items: end;
    padding: 18px;
    background: var(--surface-soft);
    border: 1px solid var(--border);
    border-radius: 8px;
}

.search-panel {
    grid-template-columns: minmax(170px, 220px) minmax(240px, 1fr) auto;
}

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

.field,
label {
    display: grid;
    gap: 8px;
}

.span-2 {
    grid-column: 1 / -1;
}

label,
dt {
    color: var(--muted);
    font-size: 14px;
    font-weight: 700;
}

select,
input,
textarea,
button {
    border-radius: 8px;
    font: inherit;
}

select,
input,
textarea {
    width: 100%;
    border: 1px solid var(--border);
    background: #ffffff;
    color: var(--text);
    outline: none;
}

select,
input,
button {
    min-height: 48px;
}

select,
input {
    padding: 0 14px;
}

textarea {
    min-height: 96px;
    padding: 12px 14px;
    resize: vertical;
}

select:focus,
input:focus,
textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.14);
}

button {
    border: 0;
    background: var(--accent);
    color: #ffffff;
    cursor: pointer;
    font-weight: 700;
    padding: 0 24px;
}

button:hover {
    background: var(--accent-dark);
}

.secondary-button {
    background: #334155;
}

.secondary-button:hover {
    background: #1e293b;
}

.danger-button {
    background: var(--danger);
}

.danger-button:hover {
    background: #7f1d1d;
}

.notice,
.result-card,
.empty-state,
.moderation-card {
    margin-top: 18px;
    border-radius: 8px;
    padding: 22px;
}

.notice-error {
    background: var(--danger-bg);
    border: 1px solid rgba(180, 35, 24, 0.25);
    color: var(--danger);
}

.notice-success {
    background: var(--success-bg);
    border: 1px solid rgba(14, 122, 63, 0.22);
    color: var(--success);
}

.notice p:last-child,
.empty-state p:last-child,
.result-card p:last-child,
.moderation-card p:last-child {
    margin-bottom: 0;
}

.result-card,
.moderation-card {
    border: 1px solid var(--border);
}

.result-hit {
    background: var(--danger-bg);
    border-color: rgba(180, 35, 24, 0.22);
}

.result-clear {
    background: var(--success-bg);
    border-color: rgba(14, 122, 63, 0.22);
}

.result-status,
.moderation-head,
.actions {
    display: flex;
    gap: 14px;
    align-items: center;
}

.moderation-head {
    justify-content: space-between;
}

.moderation-head h2 {
    margin: 10px 0 0;
}

.actions {
    flex-wrap: wrap;
    margin-top: 14px;
}

.status-dot {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--success);
    box-shadow: 0 0 0 8px rgba(14, 122, 63, 0.12);
}

.result-hit .status-dot {
    background: var(--danger);
    box-shadow: 0 0 0 8px rgba(180, 35, 24, 0.12);
}

.facts {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin: 22px 0 0;
}

.compact-facts {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin: 16px 0;
}

.facts div {
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(148, 163, 184, 0.32);
    border-radius: 8px;
    padding: 14px;
}

dt {
    margin-bottom: 8px;
}

dd {
    margin: 0;
    overflow-wrap: anywhere;
}

.empty-state {
    background: #f8fafc;
    border: 1px dashed var(--border);
    color: var(--muted);
}

.empty-state h2 {
    color: var(--text);
    margin-bottom: 8px;
}

.muted,
.fingerprint {
    color: var(--muted);
}

.fingerprint {
    margin: 8px 0 0;
    font-size: 14px;
    overflow-wrap: anywhere;
}

.tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
}

.admin-summary {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 10px;
    margin: 0 0 18px;
}

.admin-summary article {
    display: grid;
    gap: 8px;
    min-height: 104px;
    border: 1px solid rgba(148, 163, 184, 0.32);
    border-radius: 8px;
    background: linear-gradient(180deg, #ffffff, #f8fafc);
    padding: 16px;
}

.admin-summary span {
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
}

.admin-summary strong {
    color: #0f172a;
    font-size: clamp(28px, 4vw, 40px);
    line-height: 1;
}

.admin-filter {
    display: grid;
    grid-template-columns: minmax(240px, 1fr) minmax(160px, 220px) minmax(180px, 220px) auto;
    gap: 12px;
    align-items: end;
    margin: 0 0 18px;
    border: 1px solid rgba(148, 163, 184, 0.32);
    border-radius: 8px;
    background: #f8fafc;
    padding: 14px;
}

.admin-filter.users-filter {
    grid-template-columns: minmax(240px, 1fr) minmax(160px, 210px) minmax(180px, 230px) auto;
}

.filter-actions {
    display: flex;
    gap: 10px;
    align-items: center;
}

.filter-actions button,
.filter-actions .secondary-action {
    min-height: 48px;
    white-space: nowrap;
}

.entry-value-line {
    display: grid;
    gap: 5px;
    border: 1px solid rgba(15, 118, 110, 0.18);
    border-radius: 8px;
    background: #f0fdfa;
    padding: 14px;
}

.entry-value-line span,
.entry-value-line small {
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
}

.entry-value-line strong {
    overflow-wrap: anywhere;
    color: #0f172a;
    font-size: 18px;
}

.admin-table-wrap table {
    min-width: 980px;
}

.compact-control {
    min-height: 42px;
    padding: 0 10px;
}

.check-list {
    display: grid;
    gap: 8px;
    margin-top: 10px;
}

.check-list label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #334155;
    font-size: 13px;
    font-weight: 700;
}

.check-list input[type="checkbox"] {
    width: 18px;
    min-height: 18px;
}

.table-wrap {
    width: 100%;
    overflow-x: auto;
    border: 1px solid var(--border);
    border-radius: 8px;
}

table {
    width: 100%;
    border-collapse: collapse;
    min-width: 760px;
}

th,
td {
    border-bottom: 1px solid var(--border);
    padding: 14px;
    text-align: left;
    vertical-align: top;
}

th {
    background: var(--surface-soft);
    color: var(--muted);
    font-size: 13px;
    text-transform: uppercase;
}

tr:last-child td {
    border-bottom: 0;
}

.status {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    padding: 0 10px;
}

.status.pending {
    background: var(--warning-bg);
    color: var(--warning);
}

.status.approved {
    background: var(--success-bg);
    color: var(--success);
}

.status.rejected {
    background: var(--danger-bg);
    color: var(--danger);
}

.stack {
    display: grid;
    gap: 14px;
}

.review-form {
    display: grid;
    gap: 10px;
    margin-top: 14px;
}

.legal-copy {
    display: grid;
    gap: 14px;
    max-width: 860px;
    color: #334155;
    font-size: 17px;
    line-height: 1.65;
}

.site-footer {
    display: flex;
    justify-content: center;
    gap: 18px;
    width: min(1120px, calc(100% - 36px));
    margin: -22px auto 32px;
    color: var(--muted);
    font-size: 14px;
}

.site-footer a {
    color: var(--muted);
    text-decoration: none;
}

.site-footer a:hover {
    color: var(--accent-dark);
}

@media (max-width: 820px) {
    .topbar,
    .heading,
    .result-status,
    .moderation-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .topbar,
    .nav,
    .site-footer {
        justify-content: flex-start;
    }

    .site-footer {
        flex-direction: column;
        margin-top: -16px;
    }

    .privacy-mark {
        white-space: normal;
    }

    .search-panel,
    .form-grid,
    .facts,
    .compact-facts,
    .admin-summary,
    .admin-filter,
    .admin-filter.users-filter,
    .home-hero,
    .trust-strip,
    .promo-strip,
    .promo-search-grid,
    .audience-grid {
        grid-template-columns: 1fr;
    }

    .promo-hero {
        min-height: 590px;
        background:
            linear-gradient(180deg, rgba(4, 12, 18, 0.92), rgba(4, 12, 18, 0.68)),
            url("/assets/images/promo-hero.png") 62% center / cover no-repeat;
    }

    .promo-hero-content {
        padding: 34px 24px;
    }

    .promo-hero h1 {
        font-size: clamp(44px, 13vw, 62px);
    }

    .promo-actions,
    .promo-primary,
    .promo-secondary {
        width: 100%;
    }

    .promo-section-copy {
        align-items: flex-start;
        flex-direction: column;
    }

    .home-hero {
        grid-template-areas:
            "copy"
            "search"
            "dock";
    }

    .hero-copy {
        min-height: auto;
    }

    .hero-copy h1 {
        font-size: clamp(40px, 13vw, 58px);
    }

    .search-actions,
    .search-actions button,
    .filter-actions,
    .filter-actions button,
    .filter-actions .secondary-action,
    .secondary-action {
        width: 100%;
    }

    .span-2 {
        grid-column: auto;
    }

    button {
        width: 100%;
    }
}
