.news-layout {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  padding: 2rem;
}

.news-main {
  flex: 2;
}

.news-banner {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.news-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


.news-date {
  font-size: 0.9rem;
  color: #888;
  margin-bottom: 1rem;
}

.news-body p {
  font-size: 1rem;
  line-height: 1.6;
}

.news-sidebar {
  flex: 1;
  max-width: 300px;
}

.news-sidebar h3 {
  margin-bottom: 1rem;
  color: #437057;
}

.sidebar-news-card {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
  text-decoration: none;
  color: inherit;
  align-items: center;
}

.sidebar-news-card img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 6px;
}

.sidebar-news-card p {
  font-size: 0.85rem;
  line-height: 1.2;
}
body {
  margin: 0;
  font-family: Arial, sans-serif;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  background: #2F5249;
  color: white;
  padding: 1rem 2rem;
}

.logo {
  font-weight: bold;
  font-size: 1.5rem;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  padding-left: 0;
  margin: 0;
}

nav a {
  color: white;
  text-decoration: none;
}

.lang-toggle button {
  background: none;
  border: 1px solid white;
  color: white;
  padding: 0.4rem 0.8rem;
  margin-left: 0.5rem;
  cursor: pointer;
}
footer {
  background: #2F5249;
  color: white;
  text-align: center;
  padding: 1rem;
}

.hamburger {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: white;
  margin-left: auto;
}

.back-button {
  display: inline-block;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  color: #437057;
  text-decoration: none;
  font-weight: bold;
}