/* Aktuality -> /aktuality, /aktuality-kategorie-{...}, /cerstve-zpravy */
.news .mpMain .news {
  display: grid;
  grid-template-columns: 1fr 450px;
  max-width: 1640px;
}

@media (max-width: 1000px) {
  .news .mpMain .news {
    grid-template-columns: 1fr;
  }
}

.news .mp-title {
  font-size: 46px;
  font-weight: 600;
  line-height: 1.2;
  padding: 0;
  text-transform: none;
  text-align: center;
}

@media (min-width: 1001px) {
  .news .aNav, .news .aNav + div {
    grid-column: span 2;
  }
}

.news .main {
  width: 100%;
}

.news .main .newsletter {
  display: none;
}

@media (min-width: 1001px) {
  .news .sidebar {
    padding-left: 40px;
  }
}

.news .vtfTabs {
  margin: 60px 0;
  border: 1px solid #e8e9eb;
  border-radius: 5px;
  overflow: hidden;
}

.news .vtfTabs .content {
  padding: 20px;
}

.news .accessories {
  display: flex;
  align-items: center;
}

.news .accessories + .accessories {
  margin-top: 20px;
}

.news .accessories .price {
  font-size: 14px;
  color: #76ad00;
}

.news .accessories .product-image img {
  width: 64px;
  height: 64px;
  overflow: hidden;
  font-size: 12px;
}

.news .product-image {
  margin-right: 15px;
}

.news .product-image a, .news .product-image img {
  display: block;
}

.news .product-name {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
}

.newsArticles a:not(.mbtn) {
  transition: 0.2s color ease-in-out;
}

.newsArticles a:not(.mbtn):hover {
  color: #76ad00;
}

.newsArticles .mbtn--giga {
  max-width: 200px;
  margin: 30px auto;
}

.newsArticles__title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 15px;
}

@media (max-width: 1000px) {
  .newsArticles__title {
    text-align: center;
    padding-top: 30px;
  }
}

.newsArticles__items {
  display: flex;
}

@media (max-width: 1300px) {
  .newsArticles__items {
    flex-wrap: wrap;
  }
}

.sidebar .newsArticles__items {
  border: 1px solid #e8e9eb;
  border-radius: 5px;
  overflow: hidden;
  flex-direction: column;
}

.newsArticles__item {
  flex: 1;
  border: 1px solid #e8e9eb;
  border-radius: 5px;
  overflow: hidden;
  background-color: #fff;
  transition: 0.3s box-shadow ease-in-out;
}

.newsArticles__item:hover {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

@media (min-width: 1301px) {
  .main .newsArticles__item:last-of-type {
    display: none;
  }
}

@media (min-width: 451px) and (max-width: 1300px) {
  .main .newsArticles__item {
    flex: 1 0 calc(50% - 20px);
  }

  .main .newsArticles__item:nth-child(even) {
    margin-left: 20px;
  }

  .main .newsArticles__item:nth-child(4n-2), .main .newsArticles__item:nth-child(4n-3) {
    margin-bottom: 20px;
  }
}

@media (max-width: 450px) {
  .main .newsArticles__item {
    flex: 1 0 100%;
  }
}

@media (min-width: 1301px) {
  .main .newsArticles__item + .newsArticles__item {
    margin-left: 20px;
  }
}

@media (max-width: 450px) {
  .main .newsArticles__item + .newsArticles__item {
    margin-top: 20px;
  }
}

.sidebar .newsArticles__item {
  max-width: unset;
  border: unset;
  border-radius: unset;
  box-shadow: unset;
}

.sidebar .newsArticles__item .newsWrapper {
  padding-bottom: 0;
}

.sidebar .newsArticles__item:last-of-type {
  padding-bottom: 10px;
}

.newsArticles__item img {
  max-width: 100%;
  width: 100%;
  height: auto;
}

.newsArticles__item .newsWrapper {
  padding: 10px 18px 15px;
}

.newsArticles__item .newsDate {
  font-size: 12px;
  font-weight: 600;
}

.newsArticles__item .newsTitle {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.2;
}

.newsArticles__item .newsDesc {
  font-size: 14px;
  margin-top: 10px;
}

.CMSListAllArticles {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-gap: 10px;
}

@media (min-width: 1201px) and (max-width: 1500px) {
  .CMSListAllArticles {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 851px) and (max-width: 1200px) {
  .CMSListAllArticles {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 501px) and (max-width: 850px) {
  .CMSListAllArticles {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .CMSListAllArticles {
    grid-template-columns: repeat(1, 1fr);
  }
}

.CMSListAllArticles article {
  border: 1px solid #e8e9eb;
  border-radius: 5px;
  overflow: hidden;
  background-color: #fff;
  transition: 0.3s box-shadow ease-in-out;
}

.CMSListAllArticles article:hover {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.CMSListAllArticles article a {
  transition: 0.2s color ease-in-out;
}

.CMSListAllArticles article a:hover {
  color: #76ad00;
}

.CMSListAllArticles article img {
  max-width: 100%;
  width: 100%;
  height: auto;
}

.CMSListAllArticles article .CMSArticleWrapper__withoutImg {
  display: flex;
  align-items: center;
  justify-content: center;
}

.CMSListAllArticles article .CMSArticlePublishDate {
  padding: 20px 20px 0;
  font-size: 12px;
  font-weight: 600;
}

.CMSListAllArticles article .CMSArticleTitle {
  display: block;
  padding: 10px 20px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.2;
}

.CMSListAllArticles article .CMSArticleDescription {
  padding: 0 20px 20px;
  font-size: 14px;
  margin-top: 10px;
}

.CMSListAllArticles article .CMSArticleWrapper__withoutImg {
  aspect-ratio: 1.57;
}

.CMSListAllArticles .skeletonWrapper .skeleton--date {
  max-width: 70px;
}

.CMSListAllArticles .skeletonWrapper .skeleton--title {
  max-width: 250px;
}

.CMSListAllArticles .skeletonWrapper .skeleton--firstLine, .CMSListAllArticles .skeletonWrapper .skeleton--thirdLine {
  max-width: 200px;
}

.CMSListAllArticles .skeletonWrapper .skeleton--secondLine {
  max-width: 175px;
}

.CMSArticleLoadMore {
  text-align: center;
}

.CMSArticleLoadMore button {
  display: flex !important;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  margin: 30px auto;
  padding: 8px 20px 10px !important;
  font-size: 20px !important;
  border-radius: 0.3125rem;
  color: #fff;
  background-color: #76ad00;
  border: 1px solid #76ad00;
  transition: all 0.3s ease-in-out !important;
}

.CMSArticleLoadMore button:hover {
  color: #76ad00;
  background-color: #fff;
}
