.news-header {
  text-align: center;
  margin: 20px auto 30px auto;
  padding-top: 8rem;
  padding-bottom: 4rem;
}

.news-title {
  display: flex;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #0969c2;
  max-width: 700px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
  padding: 20px;
  border-radius: 8px;
  background-color: #f0f8ff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  justify-content: center;
}

.news-description {
  display: flex;
  justify-content: center;
  font-size: 18px;
  color: #444;
  margin: 10px 10px;
  margin-top: 20px;
}


.articles {
  display: flex;
  flex-direction: row;
  gap: 40px;
  max-width: 1000px;
  margin: 0px auto 60px;
  padding: 0 20px;
  align-items: center;
}

.article {
  display: flex;
  gap: 30px;
  align-items: center;
  text-decoration: none;
  color: inherit;
  padding-bottom: 20px;
  border-bottom: 2px solid #dcdcdc;
  border-radius: 4px;
  transition: transform 0.3s ease;
  text-decoration: none
}

.article:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  text-decoration: none
}

.article img {
  width: 300px;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}

.article-content {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.article-title {
  font-size: 1.6em;
  font-weight: bold;
  margin-bottom: 10px;
  color: #0969c2;
}

.article-author {
  font-size: 0.95em;
  color: #888;
  margin-bottom: 10px;
}

.article-description {
  font-size: 1.1em;
  color: #333;
  display: -webkit-box;
  line-clamp: 2; /* počet řádků */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  min-height: 2.6em; /* Zajištění výšky pro 2 řádky i při krátkém textu */
}


.big-articles1 {
  margin-top: 50px;
}

.big-article.simple-layout {
  height: auto;
  padding: 80px 20px;
  background-color: #fff;
  border-bottom: 2px solid #dcdcdc;
}

.top-image {
  display: block;
  max-width: 800px;
  width: 100%;
  margin: 40px auto;
  border-radius: 12px;
  image-rendering: auto;
}

.text-block {
  max-width: 800px;
  margin: 0 auto;
  color: #0969c2;
}

.text-block h1 {
  font-size: 2.4em;
  margin-bottom: 10px;
  color: #000;
}

.text-block .lead {
  font-weight: bold;
  font-size: 1.15em;
  margin-bottom: 20px;
}

.text-block .text {
  font-size: 1.05em;
  line-height: 1.6;
  margin-bottom: 40px;
}

.back-link {
  display: inline-block;
  color: #0969c2;
  text-decoration: none;
  font-size: 0.95em;
}

.back-link:hover {
  text-decoration: none;
  color: lightseagreen;
}