:root {
  --document--text_colour: #1D42A6;
  --document--font_family: 'Roboto';
  --document--font_size: 1.375rem;
  --document--font_weight: 500;
  --document--font_style: normal;
  --document--line_height: 120%;
  --document--icon--spacing: 11px;
}
/* Main styling */
 .oxfcms-document {
  .file {
    color: var(--document--text_colour);
    font-family: var(--document--font_family);
    font-size: var(--document--font_size);
    font-weight: var(--document--font_weight);
    font-style: var(--document--font_style);
    line-height: var(--document--line_height);
    display: inline-block;
    min-height: 16px;
    background-repeat: no-repeat;
    background-position: left center; /* LTR */
    &::after {
      content: "\f56d";
      font-family: 'Font Awesome 6 Free';
      font-weight: 600;
      margin-left: var(--document--icon--spacing);
    }
  }
  [dir="rtl"] {
    .file {
      padding-left: inherit;
      background-position: right center;
    }
  }
}
