.news {
  margin-top: 40px;
}
.news .mp-row { width: 100%; }
.news .news-grid {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 30px;
}
.news .news-grid a { text-decoration: none; }
.news .news-grid-item:hover h3 { color: var(--accent); }
.news .news-grid-item {
  width: calc(50% - 10px);
  margin: 10px;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 15px;
  background: #fbfbfb;
}
.news .news-grid-item:nth-child(odd) { margin-left: 0; }
.news .news-grid-item:nth-child(even) { margin-right: 0; }
.news .news-grid-item .img-wrapper {
  --size: 215px;
  width: var(--size);
  height: var(--size);
  min-width: var(--size);
  min-height: var(--size);
  max-width: var(--size);
  max-height: var(--size);
  overflow: hidden;
  margin-right: 20px;
}
.news .news-grid-item .img-wrapper img { width: 100%; height: 100%; object-fit: cover; object-position: center center; }
.news .news-grid-item h3 {
  font-size: 22px;
  font-weight: 700;
  color: #363f46;
  text-transform: uppercase;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0 0 20px 0;
  transition: all .2s ease;
}
.news .news-grid-item p {
  font-size: 18px;
  font-weight: 300;
  font-style: italic;
  color: #363f46;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0;
}
@media (max-width: 1600px) {
  .news .news-grid-item .img-wrapper { --size: 180px; }
  .news .news-grid-item h3 { font-size: 18px; }
  .news .news-grid-item p { font-size: 14px; }
}
@media (max-width: 1200px) {
  .news .news-grid-item .img-wrapper { --size: 120px; }
  .news .news-grid-item h3 { font-size: 16px; }
  .news .news-grid-item p { font-size: 14px; }
}
@media (max-width: 996px) {
  .news .news-grid-item .img-wrapper { --size: 100px; }
  .news .news-grid-item h3 { font-size: 16px; margin-bottom: 10px; }
  .news .news-grid-item p { font-size: 14px; }
}
@media (max-width: 767px) {
  .news .news-grid { margin-top: 15px; }
  .news .news-grid-item { flex-direction: column; padding: 10px; }
  .news .news-grid-item .img-wrapper { width: 100%; min-width: 100%; max-width: 100%; margin: 0; height: 150px; min-height: 150px; max-height: 150px; }
  .news .news-grid-item h3 { margin: 15px 0 10px 0; -webkit-line-clamp: 4; }
  .news .news-grid-item p { -webkit-line-clamp: 5; }
}
@media (max-width: 576px) {
  .news .news-grid-item { padding: 5px; }
  .news .news-grid-item .img-wrapper { height: 130px; min-height: 130px; max-height: 130px; }
  .news .news-grid-item h3 { font-size: 14px; }
  .news .news-grid-item p { font-size: 12px; -webkit-line-clamp: 4; }
}

.news .news-more-wrapper { margin: 70px 0 50px 0; display: flex; flex-direction: row; align-items: center; justify-content: center; }
.news .news-more-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 280px;
  border: none;
  outline: none;
  background: transparent;
}
.news .news-more-btn:hover p { opacity: 0.9; }
.news .news-more-btn p {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.news .news-more-btn p i { margin-left: 10px; }
.news .news-more-btn .counter-bar {
  position: relative;
  width: 70%;
  height: 1px;
  background: var(--accent);
}
.news .news-more-btn .counter-bar-inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 1px;
  background: #363f46;
  transition: all .2s ease;
}
.news .news-more-wrapper .spinner {
  --size: 35px;
  width: var(--size);
  height: var(--size);
  border: 2px solid white;
  border-radius: 50%;
  border-top-color: var(--accent);
  border-bottom-color: var(--accent);
  animation: spin 1s ease infinite;
  display: none;
}
@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@media (max-width: 767px) {
  .news .news-more-wrapper { margin: 30px 0 20px 0; }
}
@media (max-width: 576px) {
  .news .news-more-btn p { font-size: 12px; }
}

.news-view {
  margin-top: 20px;
}
.news-view .news-view-left { padding: 0; margin: 0; }
.news-view .header { display: flex; flex-direction: row; align-items: center; }
.news-view .header i { color: var(--accent); }
