.article-hero-container {
  position: relative;
  height: 100%;
  width: 100%;
}

.article-hero-container img {
  width: 100%;
  height: auto;
  display: block;
}

.article-hero-container h1 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "Newsreader", sans-serif;
  color: white;
  font-size: 3rem;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  margin: 0;
}

.journal-top-img {
  max-width: 1400px;
  width: 100%;
  height: auto;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.article-list {
  max-width: 1400px;
  margin: 0 auto;
  margin-bottom: 300px;
  padding: 0 12px;
  display: flex;
  flex-direction: column;
}


.article-row {
  display: flex;
  gap: 18px;
  padding: 18px 0;
  text-decoration: none;
  color: inherit;
}


.article-row:not(:last-child) {
  border-bottom: 1px solid #ddd;
}


.article-row .thumb {
  flex: 0 0 600px;
  max-width: 600px;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 0px;
  background: #f4f4f4;
}

.article-row .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


.article-row .meta {
  flex: 1 1 auto;
  min-width: 0;
}

.article-row .title {
  margin: 2px 0 6px;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.4;
}

.article-row .summary {
  margin: 0;
  font-size: .95rem;
  line-height: 1.55;
  color: #555;
}


@media (max-width: 768px) {
  .article-row {
    flex-direction: column;
    gap: 12px;
  }

  .article-row .thumb {
    flex: 0 0 280px;
    max-width: 280px;
    max-width: 100%;
    width: 100%;
  }

  .article-row .title {
    margin: 2px 0 3px;
    font-size: 12px;
  }

  .article-row .summary {
    font-size: 11px;
    line-height: 1.3;

  }

  .article-list {
    margin-bottom: 100px;
  }

}