body {
  margin: 0;
  font-family: "Segoe UI", Roboto, Arial, sans-serif;
  background-color: #f5f5f5;
  color: #111;
  line-height: 1.6;
}

a {
  color: #0078d4;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

nav {
  font-size: small;
}

.sidebar h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  font-weight: 100;
}
.sidebar .news-card {
  background: #fff;
  border-radius: 4px;
  padding: 1rem 1.25rem;
  margin-bottom: 1rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}
.sidebar .news-card img {
  max-height: 50px;
  margin-bottom: 0.5rem;
}
.sidebar .news-card .news-meta {
  font-size: 0.85rem;
  color: #777;
  margin-bottom: 0.4rem;
}
.sidebar .news-card .news-title {
  font-size: 1rem;
  font-weight: 500;
}

.featured h2 {
  font-size: 1.5rem;
  /*margin-bottom: 1rem;*/
  font-weight: 100;
}
.featured .featured-article {
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.featured .featured-article img {
  width: 100%;
  display: block;
}
.featured .featured-content {
  padding: 1.5rem;
}
.featured .meta {
  font-size: 0.875rem;
  color: #666;
  margin-bottom: 0.75rem;
}
.featured .featured-title {
  font-size: 1.3rem;
  font-weight: 100;
  color: #111;
  margin-top: 0.5rem;
}

header {
  background: "#f8f8f8";
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 2rem;
  flex-wrap: wrap;
  background-color: #fff;
  height: 50px;
}

.logo-section {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex: 1;
}
.logo-section img {
  width: 32px;
  height: 32px;
}

nav {
  display: flex;
  gap: 1.5rem;
  flex: 2;
  justify-content: center;
  flex-wrap: wrap;
}
nav a {
  font-weight: 500;
  color: #333;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 1;
  justify-content: flex-end;
}

.blog-card {
  background-color: #fff;
}

.blog-post {
  padding: 1rem;
  background-color: #fff;
}

main {
  display: grid;
  /* grid-template-columns: 2fr 1fr;*/
  gap: 2rem;
  padding: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 900px) {
  main {
    grid-template-columns: 1fr;
  }
  nav {
    display: none;
  }
  header {
    justify-content: space-between;
  }
}
@media (max-width: 600px) {
  .featured-content {
    padding: 1rem;
  }
}

/*# sourceMappingURL=main.css.map */
