h3 {
  text-align: center;
  font-weight: 500;
}

#nonews {
  width: 100%;
  text-align: center;
  color: grey;
}
.wrap-collabsible {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
}
  
.wrap-collabsible p {
  margin-top: 0;
  margin-bottom: 0;
}
  input[type='checkbox'] {
    display: none;
  }
  
  .lbl-toggle {
    display: block;
  
    font-weight: bold;
    font-family: monospace;
    font-size: 1.2rem;
    text-transform: uppercase;

    padding: 1rem;
  
    color: var(--main-text-color);
  
    cursor: pointer;
  
    transition: all 0.25s ease-out;
    border-top: 3px solid rgba(250,250,250,0.5);
  }

  .lbl-toggle:last-of-type {
    border-bottom: 3px solid rgba(250,250,250,0.5);
  }
  
  .lbl-toggle:hover {
    color: #A12529;
  }
  
  .lbl-toggle::before {
    content: ' ';
    display: inline-block;
  
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 5px solid currentColor;
    vertical-align: middle;
    margin-right: .7rem;
    transform: translateY(-2px);
  
    transition: transform .2s ease-out;
  }
  
  .toggle:checked + .lbl-toggle::before {
    transform: rotate(90deg) translateX(-3px);
  }
  
  .collapsible-content {
    max-height: 0px;
    overflow-y: auto;
    overflow-x: hidden;
    transition: max-height .25s ease-in-out;
    margin-bottom: 20px;
  }
  
  .toggle:checked + .lbl-toggle + .collapsible-content {
    max-height: 350px;
    margin-top: 20px;
  }
  
  .toggle:checked + .lbl-toggle {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
    background: rgba(250,250,250,0.5);
    color: #A12529;
  }
  
  .collapsible-content .content-news-inner {
    background: rgba(250,250,250,0.5);
  }