:root {
  --bg: #ffffff;
  --paper: #ffffff;
  --ink: #050505;
  --muted: #202020;
  --line: #d8e3f3;
  --accent: #0057d9;
  --accent-dark: #003f9e;
  --deep: #020915;
  --blue-soft: #edf4ff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, #ffffff 0, #ffffff 430px, var(--blue-soft) 430px, #ffffff 880px, #ffffff 100%);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
input,
textarea,
select,
button {
  font: inherit;
}

.icon-sprite {
  display: none;
}

svg {
  display: block;
}

.metric-icon svg,
.service-icon svg,
.panel-icon svg,
.timeline span svg,
.button-icon {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button-icon {
  width: 18px;
  height: 18px;
  margin-left: 8px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(190px, 280px) 1fr auto auto;
  align-items: center;
  gap: 22px;
  min-height: 76px;
  padding: 0 5vw;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.04);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.brand::before {
  content: "";
  display: none;
}

.brand-logo {
  display: block;
  width: clamp(190px, 18vw, 244px);
  max-width: 100%;
  height: auto;
}

.nav {
  display: flex;
  justify-content: center;
  gap: 28px;
  color: var(--ink);
  font-size: 1.08rem;
  font-weight: 700;
}

.nav a {
  font-weight: 700;
  letter-spacing: 0;
}

.nav a:hover,
.site-footer a:hover,
.legal-body a:hover {
  color: var(--accent);
}

.header-actions {
  position: relative;
  z-index: 21;
  display: flex;
  align-items: center;
  gap: 10px;
}

.call-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  font-weight: 800;
  white-space: nowrap;
  pointer-events: auto;
  cursor: pointer;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: 610px;
  overflow: hidden;
  color: #ffffff;
  max-width: 100vw;
}

.hero-media {
  position: absolute;
  inset: 0;
  background-image: image-set(
    url("assets/hero-law-duesseldorf.webp") type("image/webp"),
    url("assets/hero-law-duesseldorf.jpg") type("image/jpeg")
  );
  background-position: center;
  background-size: cover;
  filter: grayscale(1);
}

.hero-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(100deg, rgba(2, 9, 21, 0.96), rgba(2, 9, 21, 0.78) 47%, rgba(0, 87, 217, 0.38)),
    linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(2, 9, 21, 0.28));
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 380px);
  align-items: center;
  gap: 40px;
  min-height: 610px;
  padding: 82px 5vw 56px;
  width: 100%;
  max-width: 100vw;
  overflow: hidden;
}

.hero-copy {
  min-width: 0;
  max-width: 900px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p,
summary {
  overflow-wrap: break-word;
}

h1 {
  max-width: 880px;
  margin: 0;
  font-size: clamp(2.55rem, 5.6vw, 5.1rem);
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4.4vw, 3.6rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 10px;
  font-size: 1.18rem;
}

.lead {
  max-width: 760px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.06rem, 2vw, 1.35rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 900;
  cursor: pointer;
}

.primary {
  background: var(--accent);
  color: #ffffff;
}

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

.secondary {
  border-color: rgba(255, 255, 255, 0.45);
  color: #ffffff;
}

.secondary:hover {
  background: rgba(255, 255, 255, 0.12);
}

.dark-button {
  background: var(--ink);
  color: #ffffff;
}

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

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-pills span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.92rem;
  font-weight: 800;
}

.deadline-card {
  min-width: 0;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(18px);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.22);
}

.deadline-card strong {
  display: block;
  margin: 14px 0 8px;
  font-size: 1.18rem;
}

.deadline-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.status-dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 8px rgba(0, 87, 217, 0.16);
}

.intro-band {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 1180px;
  margin: -34px auto 0;
  overflow: hidden;
  background: var(--line);
  border-bottom: 1px solid var(--line);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.09);
}

.intro-band div {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 28px 30px;
  background: var(--paper);
}

.intro-band p {
  display: grid;
  gap: 5px;
  margin: 0;
}

.intro-band p span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.intro-band p strong {
  font-size: clamp(1.2rem, 2vw, 1.55rem);
}

.metric-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--blue-soft);
  color: var(--accent);
}

.main-site-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 0.92fr) minmax(300px, 1.08fr);
  gap: 0;
  align-items: stretch;
  min-height: 300px;
  margin: 66px 5vw 0;
  padding: 0;
  overflow: hidden;
  background: var(--deep);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.12);
  color: #ffffff;
}

.main-site-heading,
.main-site-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.main-site-heading {
  padding: 40px 34px 40px 38px;
}

.main-site-heading .eyebrow {
  color: #5d9bff;
}

.main-site-heading h2 {
  font-size: clamp(1.72rem, 3vw, 2.75rem);
}

.main-site-copy {
  padding: 38px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
}

.main-site-section p {
  max-width: 720px;
  font-size: 1.08rem;
}

.main-site-copy p {
  color: var(--muted);
}

.main-site-section .button {
  margin-top: 14px;
}

.section,
.dark-section,
.contact-section {
  padding: 86px 5vw;
}

.split {
  display: grid;
  grid-template-columns: minmax(260px, 0.68fr) minmax(0, 1.32fr);
  gap: 42px;
  align-items: start;
}

.section-heading {
  max-width: 840px;
}

.section-heading p {
  color: var(--muted);
  font-size: 1.08rem;
}

.sticky-heading {
  position: sticky;
  top: 104px;
}

.section-photo {
  min-height: 265px;
  margin-top: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background-image:
    linear-gradient(180deg, rgba(2, 9, 21, 0.12), rgba(2, 9, 21, 0.22)),
    image-set(
      url("assets/advisory-room.webp") type("image/webp"),
      url("assets/advisory-room.jpg") type("image/jpeg")
    );
  background-position: center;
  background-size: cover;
  box-shadow: 0 20px 46px rgba(0, 0, 0, 0.08);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.service-card {
  min-height: 218px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, #ffffff, #ffffff 64%, var(--blue-soft));
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.service-card:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 87, 217, 0.55);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.08);
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  margin-bottom: 24px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #ffffff;
  color: var(--accent);
  box-shadow: 0 14px 30px rgba(0, 87, 217, 0.1);
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.service-card:hover .service-icon {
  background: var(--accent);
  color: #ffffff;
  transform: scale(1.04);
}

.service-card p,
.timeline p,
.faq-list p,
.contact-section p,
address {
  color: var(--muted);
}

.dark-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(105deg, rgba(2, 9, 21, 0.98), rgba(2, 9, 21, 0.9) 52%, rgba(0, 87, 217, 0.52)),
    image-set(
      url("assets/advisory-room.webp") type("image/webp"),
      url("assets/advisory-room.jpg") type("image/jpeg")
    );
  background-position: center;
  background-size: cover;
  color: #ffffff;
}

.dark-section .eyebrow {
  color: #5d9bff;
}

.dark-section .section-heading {
  margin-bottom: 42px;
}

.mandate-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.mandate-grid article {
  min-height: 230px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.panel-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  margin-bottom: 26px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #5d9bff;
}

.mandate-grid p {
  color: rgba(255, 255, 255, 0.76);
}

.process,
.faq-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.58fr) minmax(0, 1.42fr);
  gap: 42px;
  align-items: start;
}

.process {
  background: linear-gradient(180deg, #ffffff, var(--blue-soft));
}

.process .section-heading,
.faq-section .section-heading {
  margin-bottom: 0;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.timeline article {
  min-height: 220px;
  padding: 26px;
  border-top: 3px solid var(--accent);
  background: var(--paper);
  border-radius: 0 0 8px 8px;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.06);
}

.timeline span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  border-radius: 50%;
  background: var(--blue-soft);
  color: var(--accent-dark);
  border: 1px solid var(--line);
}

.faq-section {
  background:
    linear-gradient(180deg, var(--blue-soft), #ffffff);
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: none;
}

details {
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

summary {
  cursor: pointer;
  font-weight: 900;
}

.contact-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  gap: 28px;
  align-items: start;
  background:
    linear-gradient(100deg, rgba(2, 9, 21, 0.96), rgba(2, 9, 21, 0.88) 32%, rgba(237, 244, 255, 0.97) 32%, rgba(255, 255, 255, 0.98)),
    image-set(
      url("assets/consultation-desk.webp") type("image/webp"),
      url("assets/consultation-desk.jpg") type("image/jpeg")
    );
  background-position: left center;
  background-size: cover;
}

.contact-aside {
  position: sticky;
  top: 104px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.06);
}

.contact-aside h2 {
  font-size: clamp(1.65rem, 3vw, 2.55rem);
}

.contact-aside p {
  font-size: 1rem;
}

.contact-visual {
  min-height: 180px;
  margin: 20px 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background-image:
    linear-gradient(180deg, rgba(2, 9, 21, 0.04), rgba(0, 87, 217, 0.14)),
    image-set(
      url("assets/topuz-arbeitsrecht.webp") type("image/webp"),
      url("assets/topuz-arbeitsrecht.jpg") type("image/jpeg")
    );
  background-position: center;
  background-size: cover;
}

address {
  margin-top: 18px;
  font-style: normal;
}

address a {
  color: var(--ink);
  font-weight: 900;
}

.contact-form {
  display: grid;
  gap: 12px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.08);
}

.form-row {
  display: grid;
  gap: 14px;
}

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

label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 0.93rem;
  font-weight: 800;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 11px 13px;
  background: #ffffff;
  color: var(--ink);
}

textarea {
  resize: vertical;
}

.form-note,
.upload-block p,
.file-status {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.form-feedback {
  margin: 0;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--blue-soft);
  color: var(--ink);
  font-weight: 800;
}

.upload-block {
  display: grid;
  gap: 8px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--blue-soft);
}

.upload-block input[type="file"] {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.dropzone {
  display: grid;
  place-items: center;
  min-height: 112px;
  padding: 16px;
  border: 1px dashed var(--accent);
  border-radius: 8px;
  background: #ffffff;
  color: var(--ink);
  text-align: center;
  cursor: pointer;
}

.dropzone.is-dragover {
  background: var(--blue-soft);
}

.dropzone span,
.dropzone strong {
  font-weight: 900;
}

.dropzone small {
  color: var(--muted);
}

.file-list {
  display: grid;
  gap: 8px;
  margin: 2px 0 0;
  padding: 0;
  list-style: none;
}

.file-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 12px;
  align-items: center;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.file-name {
  min-width: 0;
  overflow: hidden;
  color: var(--ink);
  font-size: 0.94rem;
  font-weight: 900;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.file-meta {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
  white-space: nowrap;
}

.file-remove {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 7px 10px;
  background: #ffffff;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 900;
  cursor: pointer;
}

.file-remove:hover,
.file-remove:focus-visible {
  border-color: var(--accent);
}

.checkbox-label {
  grid-template-columns: 22px minmax(0, 1fr);
  align-items: start;
  gap: 12px;
  font-size: 0.88rem;
  font-weight: 600;
}

.contact-note {
  display: grid;
  gap: 6px;
  margin-top: 18px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--blue-soft);
}

.contact-note strong {
  color: var(--ink);
}

.contact-note span {
  color: var(--muted);
  font-size: 0.94rem;
}

.checkbox-label input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--accent);
}

.checkbox-label a {
  color: var(--accent);
  font-weight: 900;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 32px 5vw;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.site-footer nav {
  display: flex;
  gap: 20px;
}

.legal-page {
  min-height: 100vh;
  background: var(--bg);
}

.legal-hero {
  padding: 86px 5vw 42px;
  background: var(--deep);
  color: #ffffff;
}

.legal-hero h1 {
  max-width: 980px;
  font-size: clamp(2.4rem, 6vw, 5.2rem);
}

.legal-hero p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.78);
}

.legal-body {
  display: grid;
  gap: 18px;
  max-width: 1040px;
  margin: 0 auto;
  padding: 56px 5vw 96px;
}

.legal-body section {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.legal-body h2 {
  margin-bottom: 18px;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
}

.legal-body h3 {
  margin-top: 24px;
}

.legal-body p,
.legal-body li {
  color: var(--muted);
}

.legal-body a {
  color: var(--accent);
  font-weight: 900;
}

.legal-copy {
  overflow: hidden;
}

.legal-copy pre {
  margin: 0;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  color: var(--muted);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
}

.legal-body ul,
.legal-body ol {
  padding-left: 22px;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: minmax(180px, 1fr) auto auto;
  }

  .nav {
    position: absolute;
    top: 76px;
    right: 5vw;
    left: 5vw;
    display: none;
    flex-direction: column;
    gap: 0;
    justify-content: flex-start;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--paper);
  }

  .nav.is-open {
    display: flex;
  }

  .nav a {
    padding: 16px;
    border-bottom: 1px solid var(--line);
  }

  .nav a:last-child {
    border-bottom: 0;
  }

  .menu-button {
    display: block;
    border-color: var(--accent);
    background: var(--accent);
    justify-self: end;
  }

  .menu-button span {
    background: #ffffff;
  }

  .hero-inner,
  .split,
  .main-site-section,
  .process,
  .faq-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .main-site-section {
    margin-top: 56px;
  }

  .contact-section {
    background:
      linear-gradient(180deg, var(--blue-soft), #ffffff);
  }

  .contact-aside {
    position: static;
  }

  .sticky-heading {
    position: static;
  }

  .mandate-grid,
  .timeline {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .site-header {
    min-height: 68px;
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .header-actions,
  .call-link {
    display: none;
  }

  .nav {
    top: 68px;
  }

  .brand-logo {
    width: min(190px, 58vw);
  }

  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
    min-height: auto;
    padding: 72px 6vw 36px;
    gap: 18px;
  }

  .hero {
    min-height: auto;
  }

  .hero-copy,
  .deadline-card,
  .lead {
    min-width: 0;
    width: 100%;
    max-width: 100%;
  }

  .hero-copy {
    max-width: 330px;
  }

  .lead {
    max-width: 32ch;
  }

  .hero-pills {
    display: none;
  }

  .hero-actions {
    gap: 10px;
    margin-top: 22px;
  }

  .button {
    min-height: 46px;
    padding: 0 18px;
  }

  h1 {
    font-size: clamp(2.15rem, 11vw, 2.85rem);
  }

  .lead {
    font-size: 0.96rem;
    line-height: 1.48;
  }

  .deadline-card {
    padding: 16px;
  }

  .deadline-card strong {
    margin: 8px 0 4px;
    font-size: 1rem;
  }

  .deadline-card p {
    font-size: 0.92rem;
  }

  .intro-band,
  .service-grid,
  .form-row.two {
    grid-template-columns: 1fr;
  }

  .section,
  .dark-section,
  .contact-section {
    padding: 64px 5vw;
  }

  .main-site-heading,
  .main-site-copy {
    padding: 24px;
  }

  .main-site-heading h2 {
    font-size: clamp(1.55rem, 8vw, 2.2rem);
  }

  .section-photo,
  .contact-visual {
    min-height: 180px;
  }

  .service-card,
  .mandate-grid article,
  .timeline article {
    min-height: auto;
  }

  .file-item {
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
  }

  .file-meta {
    white-space: normal;
  }

  .file-remove {
    justify-self: start;
  }

  .site-footer {
    flex-direction: column;
  }
}
