/* Changelog Card */
.card {
  background: #1E1E23;
  border-left: 5px solid #406BFD;
  border-radius: 10px;
  padding: 20px;
  text-align: left;
  min-height: 90px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Card Header */
.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.card-header .date {
  font-size: 0.95em;
  font-weight: bold;
  color: #406BFD;
}

.card-header .type {
  font-weight: bold;
  text-align:right;
  text-transform: uppercase;
  font-size: 0.9em;
  color: #406BFD;
}

/* Card Body */
.card .title {
  font-weight: bold;
  font-size: 1.2em;
  color: #fff;
  margin-bottom:8px;
}

.card .description {
  font-size: 1em;
  color: #ddd;
  padding: 10px;
  border-radius: 10px;
  line-height: 1.4;
  border-left: 5px solid #242427;
}

/* Publisher Info */
.publisher-info {
  display: flex;
  align-items: center;
  margin-top: 15px;  margin-bottom: 15px;
}

.publisher-info img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 10px;
  border: 2px solid #406BFD;
}

.publisher-info .text {
  font-size: 0.95em;
  color: #aaa;
}

