.smtut-fichier-pdf {
  --forest-dark: #125d64;
  --brand-green: #a2c013;
  --white: #ffffff;

  display: flex;
  align-items: center;
  gap: 11px;
  padding: 16px;
  background-color: var(--white);
  border-radius: 14px;
  filter: drop-shadow(0px 0px 8px rgba(0, 0, 0, 0.2));
  text-decoration: none !important;
  color: var(--forest-dark) !important;
  width: 100%;
  box-sizing: border-box;
  transition: filter 0.2s ease;
  cursor: pointer;
}

/* ─── Hover ───────────────────────────────────────── */

.smtut-fichier-pdf:hover {
  filter: drop-shadow(0px 0px 16px rgba(0, 0, 0, 0.3));
  text-decoration: none !important;
}

/* ─── Focus ───────────────────────────────────────── */

.smtut-fichier-pdf:focus,
.smtut-fichier-pdf:focus-visible {
  outline: 2px solid var(--brand-green);
  outline-offset: 3px;
  filter: drop-shadow(0px 0px 8px rgba(0, 0, 0, 0.2));
}

/* ─── Icône ───────────────────────────────────────── */

.smtut-fichier-pdf__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  font-size: 32px;
  line-height: 1;
  color: var(--forest-dark);
}

.smtut-fichier-pdf__icon svg,
.smtut-fichier-pdf__icon img,
.smtut-fichier-pdf__icon i {
  width: 32px;
  height: 32px;
  font-size: 32px;
}

/* ─── Infos ───────────────────────────────────────── */

.smtut-fichier-pdf__info {
  display: flex;
  align-items: center;
  flex: 1;
  min-width: 0;
  gap: 8px;
}

.smtut-fichier-pdf__name {
  flex: 1;
  min-width: 0;
  font-family: 'Open Sans', sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 26px;
  color: var(--forest-dark);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.smtut-fichier-pdf__size {
  flex-shrink: 0;
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: var(--forest-dark);
  text-align: right;
  min-width: 55px;
}

/* ─── État vide (éditeur) ─────────────────────────── */

.smtut-fichier-pdf--empty {
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  color: #657a7c;
  font-style: italic;
  box-shadow: none;
  cursor: default;
}
