.edsnews-single-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 900px;
  margin: 0 auto;
}
.edsnews-card {
  display: flex;
  flex-direction: row;
  background: #0a2a7a;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
  min-height: 120px;
}
.edsnews-thumb {
  position: relative;
  flex: 0 0 120px;
  max-width: 120px;
  height: 120px;
  overflow: hidden;
}
.edsnews-thumb img {
  width: 120px !important;
  height: 120px !important;
  object-fit: cover !important;
  display: block;
  border-radius: 6px;
}
.edsnews-label {
  position: absolute;
  top: 6px;
  left: 6px;
  background: #073979;
  color: #fff;
  font-size: 11px;
  padding: 3px 6px;
  border-radius: 3px;
}
.edsnews-body {
  flex: 1;
  padding: 10px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.edsnews-card-title {
  font-size: 15px;
  margin: 0 0 4px 0;
  line-height: 1.4em;
}
.edsnews-card-title a {
  color: #fff !important;
  text-decoration: none !important;
}
.edsnews-card-title a:hover {
  color: #ffdd55 !important;
}
.edsnews-date {
  font-size: 12px;
  color: #e0e0e0;
  margin-top: 2px;
  text-align: left;
}