html, body {
  margin: 0;
  padding: 0;
  width: 100vw;
  background: transparent;
  color: white;
  font-family: sans-serif;
}

.news-container {
  width: 100vw;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), rgba(64, 0, 0, 0.8));
  padding: 0;
  box-sizing: border-box;
}

.headline {
  font-size: 2rem;
  padding: 20px;
}

.news-card {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-bottom: 40px;
}

.row-layout {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  width: 100%;
  gap: 20px;
  padding: 20px;
  box-sizing: border-box;
}

.news-image {
  width: 720px;
  height: 420px;
  object-fit: cover;
  border-radius: 8px;
}

.text-block {
  flex: 1;
}

.news-title {
  color: red;
  font-size: 1.5em;
  margin: 0;
}

.news-meta {
  font-size: 0.9em;
  color: #ccc;
  margin-bottom: 8px;
}

.full-text {
  display: none;
  padding: 0 20px 20px 20px;
  box-sizing: border-box;
}

button.read-more {
  background-color: red;
  color: white;
  border: none;
  padding: 6px 12px;
  margin-top: 10px;
  cursor: pointer;
  border-radius: 4px;
}

@media (max-width: 900px) {
  .row-layout {
    flex-direction: column;
  }
  .news-image {
    width: 100%;
    height: auto;
  }
}
