:root {
  --trame-accent: #ff7b00;
  --trame-accent-8: rgba(255,123,0,0.08);
  --trame-accent-2: rgba(255,123,0,0.02);
  --trame-accent-shadow: rgba(255,123,0,0.25);
}

.trame {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 10px auto;
  padding: 18px 25px;
  border: 2px solid var(--trame-accent);
  border-radius: 8px;
  background: linear-gradient(180deg, var(--trame-accent-8), var(--trame-accent-2));
  box-shadow: 0 0 12px var(--trame-accent-shadow);
  color: var(--trame-accent);
}

.trame-icon {
  width: 64px;
  height: 64px;
  flex: 0 0 64px;
}

.trame-content {
  font-weight: 700;
  text-align: justify;
  text-justify: inter-word;

  /* Allow the text area to shrink inside the flex container so icons don't wrap */
  flex: 1 1 auto;
  min-width: 0;
  overflow-wrap: anywhere;
}

@media (max-width: 600px) {
  .trame {
    flex-direction: column;
    align-items: center;
    padding: 18px;
    gap: 14px;
  }
}