.news-manager a {
  color: var(--reflex-blue);
}

.main-item {}

.main-item h2 {
  font-size: 1.3rem;
  color: var(--reflex-blue);
  margin-bottom: 15px;
}

.news-manager .main-item .wordings {
  padding-left: 35px;
  overflow: hidden;
}


.other-items {}

.other-items ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.other-items li {
  padding: 0;
  margin: 0;
}

.other-items a {
  color: var(--reflex-blue);
}

.other-items a {

  position: relative;
  padding-left: 20px;
  display: inline-block;
  font-size: 0.9rem;
  text-decoration: none;
}

.other-items a::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "\f061";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  transition: left 0.3s ease;
}

.other-items a:hover::before {
  left: 5px;
}






.other-attachments {
  display: flex;
  gap: 25px;
  padding-left: 35px;
}

.other-attachments a {
  display: block;
  flex: 0 0 calc(25% - 25px);
  aspect-ratio: 1;
  border: 1px solid #999;
}

.other-attachments img {
  width: 100%;
  height: 100% !important;
  min-height: 100%;
  object-fit: cover;
}