body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #0f0f0f;
  color: #fff;
}

.header {
  text-align: center;
  padding: 40px 20px 2px 20px;
  background: #111;
  border-bottom: 1px solid #222;
}

.container {
  max-width: 900px;
  margin: auto;
  padding: 20px;
}

.post {
  background: #1a1a1a;
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 10px;
  border: 1px solid #222;
}

.post h2 {
  margin-top: 0;
  font-size: 18px;
  color: #00ff99;
}

.post p {
  color: #ccc;
  line-height: 1.5;
}

.pagination {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 20px;
  gap: 8px;
}

.pagination button {
  background: #222;
  color: #fff;
  border: 1px solid #333;
  padding: 8px 12px;
  cursor: pointer;
  border-radius: 6px;
}

.pagination button.active {
  background: #00ff99;
  color: #000;
  font-weight: bold;
}

.logo {
  width: 100px;
  margin-bottom: 2px;
}

.logo-link {
  display: inline-block;
}

.post {
  display: flex;
  gap: 15px;
  background: #1a1a1a;
  padding: 15px;
  margin-bottom: 15px;
  border-radius: 10px;
  border: 1px solid #222;
  align-items: center;
}

/* imagem padronizada */
.post-img {
  width: 160px;
  height: 110px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}

/* conteúdo */
.post-content {
  flex: 1;
}

.post h2 {
  margin: 0 0 5px 0;
  font-size: 18px;
  color: #00ff99;
}

.post small {
  display: block;
  color: #888;
  margin-bottom: 6px;
}

.post p {
  color: #ccc;
  line-height: 1.4;
  margin: 0;
}

@media (max-width: 600px) {
  .post {
    flex-direction: column;
    align-items: flex-start;
  }

  .post-img {
    width: 100%;
    height: 180px;
  }
}