.toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 12px;
}

.toolbar .title {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 0;
}

.list {
  display: grid;
  gap: 12px;
}

.news-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  background: #fff;
  border: 1px solid #e9ecef;
  border-radius: 12px;
  padding: 14px;
  text-decoration: none;
  color: inherit;
  max-width: 100%;
  transition: all 0.3s ease;
}

.news-card:hover {
  border-color: #cfe2ff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.news-title {
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.25;
}

.news-text {
  color: #495057;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  line-clamp: 5;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-word;
}

.news-meta {
  display: grid;
  gap: 10px;
  align-items: center;
  justify-items: end;
}

.news-meta .date {
  color: #6c757d;
  font-size: 14px;
}

@media (max-width: 576px) {
  .list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding-left: 12px;
    padding-right: 12px;
    box-sizing: border-box;
  }
  .news-card {
    grid-template-columns: 1fr;
    padding: 12px;
    width: 100%;
    max-width: 400px;
    box-sizing: border-box;
  }
  .news-meta {
    grid-template-columns: 1fr;
    justify-items: stretch;
  }
  .news-meta .date {
    order: -1;
    margin-bottom: 6px;
  }
  .news-meta .btn {
    width: 100%;
  }
  .news-body, .news-text {
    word-break: break-word;
  }
  .news-text {
    overflow-wrap: break-word;
    hyphens: auto;
  }
}

/*# sourceMappingURL=data:application/json;charset=utf-8,%7B%22version%22:3,%22sourceRoot%22:%22%22,%22sources%22:%5B%22../../scss/news/news_list.scss%22%5D,%22names%22:%5B%5D,%22mappings%22:%22AAAA;EACI;EACA;EACA;EACA;EACA;EACA;;;AAEJ;EACI;EACA;EACA;;;AAGJ;EACI;EACA;;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;AAEJ;EACI;EACA;;;AAGJ;EACI;EACA;EACA;;;AAEJ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;AAGJ;EACI;EACA;EACA;EACA;;;AAEJ;EACI;EACA;;;AAGJ;EACI;IACI;IACA;IACA;IACA;IACA;IACA;IACA;;EAGJ;IACI;IACA;IACA;IACA;IACA;;EAGJ;IACI;IACA;;EAGJ;IACI;IACA;;EAGJ;IACI;;EAGJ;IACI;;EAGJ;IACI;IACA%22,%22file%22:%22news_list.css%22%7D */
