/* Main AFD container */

.afd {
    max-width: 800px;
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.25;          /* true single spacing */
    color: #222;
    text-align: left;
  }
  
  /* Title + office header block */
  .afd h1,
  .afd .afd-meta {
    font-size: 1.05rem;         /* smaller, consistent size */
    margin: 0;
    padding: 0;
    font-weight: normal;
    text-align: left;
  }
  
  /* Office header styling */
  .afd .afd-meta {
    color: #444;
    margin-top: 0;
    margin-bottom: 0.75rem;     /* small space before Key Messages */
  }
  
  /* Section headers */
  .afd-section h2 {
    font-size: 1.05rem;
    margin: 0;
    padding: 0;
    border: none;
    font-weight: bold;
    color: #000;
  }
  
  /* Update line under each section */
/* All italic update lines */
.afd-section .afd-issued {
    font-style: italic;
    margin: 0;              /* no spacing by default */
    padding: 0;
    display: block;
    line-height: 1.2;       /* tight single spacing */
  }
  
  /* Only the LAST italic line gets spacing below it */
  .afd-section .afd-issued:last-of-type {
    margin-bottom: 0.75rem; /* spacing before paragraph */
  }
  
  
  
  
  /* Paragraph text inside sections */
  .afd-section p {
    margin: 0 0 1rem 0;
    padding: 0;
    text-align: justify;
    text-justify: inter-word;
  
  }
  
  /* Key Messages list */
  .afd ul {
    padding-left: 1rem;
    margin: 0.5rem 0 1rem 0;
  }
  
  .afd li {
    margin-bottom: 0.35rem;
  }