.today-news {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  margin-top: 16px;
  border: 1px solid #E8ECF2;
}

.today-news-title {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 15px;
  color: #1e1f32;
}

.today-news-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.today-news-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.today-news .news-item {
  display: flex;
  gap: 12px;
  border-radius: 8px;
  padding: 6px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.today-news .news-item:hover {
  background: #f5f7fb;
  transform: translateY(-1px);
}

.today-news .news-item-image {
  width: 88px;
  flex: 0 0 88px;
}

.today-news .news-item-image img {
  width: 100%;
  height: 66px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

.today-news .news-item-body {
  flex: 1;
  min-width: 0;
}

.today-news .news-item-title {
  font-weight: 600;
  font-size: 14px;
  color: #1e1f32;
  margin-bottom: 4px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.35;
}

.today-news .news-item-text {
  font-size: 12px;
  color: #5B6178;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.4;
}

.today-news .news-item-date {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: #8A91A8;
}

.today-news .news-item-date img {
  width: 12px;
  height: 12px;
}

.today-news-all {
  display: inline-flex;
  align-items: center;
  margin-top: 14px;
  font-size: 14px;
  font-weight: 500;
  color: #186BE4;
  text-decoration: none;
}

.today-news-all:hover {
  color: #0F4FB0;
  text-decoration: none;
}

.today-news-all .arrow {
  margin-left: 6px;
}

@media (max-width: 991px) {
  .today-news .news-item {
    flex-wrap: nowrap;
  }

  .today-news .news-item-image {
    width: 72px;
    flex-basis: 72px;
  }

  .today-news .news-item-image img {
    height: 54px;
  }
}
