div.news-list
{
	word-wrap: break-word;
}
div.news-list img.preview_picture
{
	float:left;
	margin:0 4px 6px 0;
}
.news-date-time {
	color:#486DAA;
}
.accordion {
  margin: auto;
  background: #fff;
  overflow: hidden;
}
.accordion-item{

	margin-bottom:20px;
}


.accordion-header {
  width: 100%;
  border: none;
  padding: 15px 20px;
  text-align: left;
  font-size: 22px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s;
	background: #fff5eb;
}

.accordion-header:hover {
  background: #ffcc9a;
}

.icon {
  font-size: 20px;
  font-weight: bold;
  color: #666;
  transition: transform 0.3s ease;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  background: #fafafa;
  transition: max-height 0.3s ease;
  padding: 0 20px;
}

.accordion-content p {
  margin: 15px 0;
}

.accordion-item.active .accordion-content {
  max-height: 100%;
  padding: 15px 20px;
  font-size: 18px;
}

.accordion-item.active .accordion-header {
 background: #fff5eb;
  font-size: 22px;
}

.accordion-item.active .icon {
  transform: rotate(180deg);
  color: #333;
}
.accordion-item{margin-bottom:10px;}