/* Visuels d'arguments partagés sur les pages /features/.
   Les textes restent dans le HTML ; les images illustrent chaque preuve. */
.arg-photo {
  margin: 28px 0 0;
  height: 200px;
  position: relative;
  overflow: visible;
}

.arg-photo img,
.arg-photo video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px 4px 0 0;
}

.arg-photo--contain img {
  object-fit: contain;
  background: var(--bg-paper, #FFFBF5);
}

.arg-citation {
  position: relative;
  z-index: 1;
  min-height: 102px;
  padding: 20px 16px 12px 14px;
  border-top: 1px solid var(--rule, #E5D9CA);
  border-radius: 0 0 4px 4px;
}

.arg .arg-citation-text {
  font-size: 15px;
  line-height: 1.55;
  color: rgba(58, 53, 48, 0.82);
  margin-bottom: 7px;
  max-width: 38ch;
}

.arg-citation-author {
  display: block;
  font-family: var(--mono, "IBM Plex Mono", monospace);
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--terracotta, #C96B4B);
}

@media (min-width: 900px) {
  .arguments {
    align-items: stretch;
  }

  .arguments .arg {
    display: flex;
    flex-direction: column;
  }

  .arguments .arg > p:last-of-type {
    margin-bottom: 28px;
  }

  .arg-photo {
    margin-top: auto;
  }
}
