.detail-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr))
}

.detail-item {
  display: grid;
  gap: 4px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(248, 250, 252, 0.8);
  border: none;
  box-shadow: inset 0 1px 2px rgba(15, 23, 42, 0.04)
}

.detail-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
  font-weight: 700
}

.detail-value {
  font-weight: 600;
  color: var(--ink)
}

.detail-content {
  display: grid;
  gap: 8px
}

.translation-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr))
}

.translation-card {
  border-radius: 14px;
  border: none;
  background: rgba(255, 255, 255, 0.8);
  padding: 12px 14px;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.05);
  transition: box-shadow 0.3s ease
}

.translation-card:hover {
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08)
}

.translation-header {
  margin-bottom: 8px
}

.detail-key {
  font-weight: 700;
  color: var(--muted);
  width: 220px
}

.import-section {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line)
}

.tile-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin: 12px 0 16px
}

.tile-card {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 12px;
  align-items: center;
  padding: 12px 14px;
  border-radius: 14px;
  border: none;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease
}

.tile-card--file {
  cursor: pointer;
  position: relative
}

.file-input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer
}

.tile-card:hover {
  transform: translateY(-1px);
  border: none;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.1)
}

.tile-logo {
  width: 36px;
  height: 36px;
  object-fit: contain;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.9);
  padding: 4px;
  border: none;
  box-shadow: inset 0 1px 2px rgba(15, 23, 42, 0.04)
}

.tile-body {
  display: grid;
  gap: 4px;
  color: var(--muted);
  font-size: 0.9rem
}

.tile-body strong {
  color: var(--ink);
  font-size: 1rem
}

.import-card {
  border: none;
  border-radius: 14px;
  padding: 14px;
  margin: 12px 0;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.05);
  transition: box-shadow 0.3s ease
}

.import-card:hover {
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08)
}

.import-card__header {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 8px
}

.import-card__header h4 {
  margin: 0 0 4px;
  font-size: 1.05rem
}

.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 12px
}

.table-collapsed {
  max-height: 260px;
  overflow: hidden;
  position: relative
}

.table-collapsed::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 64px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 1));
  pointer-events: none
}
