* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  background: #1C1C1E;
  color: #fff;
}

/* TOPO */
.top {
  display: flex;
  justify-content: center;
  padding: 20px 0 10px;
}

.social {
  display: flex;
  gap: 20px;
}

.social a {
  color: #fff;
  font-size: 22px;
  text-decoration: none;

  border-radius: 12px;

  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  overflow: hidden;
}

.social a img {
  width: 55px;
  height: 55px;
  border-radius: 12px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo h1 img {
  width: 50px;
}

.logo strong {
  font-size: 20px;
}

.container {
  max-width: 520px;
  margin: 0px auto;
  padding: 10px 22px 22px;

  display: flex;
  flex-direction: column;
  gap: 22px;
}

.container a {
  text-decoration: none;
  color: #fff;
}

/* CARD */
.card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
}

/* IMAGEM */
.card img {
  width: 100%;
  height: auto;
  display: block;
  background-color: #1C1C1E;
}

/* CONTEÚDO */
.card-content {
  padding: 16px;
}

/* KICKER */
.kicker {
  display: block;
  font-size: 18px;
  font-weight: 600;
  color: #6b6b6b;
  margin-bottom: 8px;
}

/* TÍTULO */
.card-content h2 {
  font-size: 22px;
  line-height: 1.2;
  font-weight: bold;
  color: #000000; /* vermelho CNN */
}

/* =========================
   PÁGINA DE NOTÍCIA
========================= */

.article {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
}

/* IMAGEM DE DESTAQUE */
.article-image {
  width: 100%;
  height: auto;
  display: block;
}

/* TÍTULO */
.article-title {
  font-size: 28px;
  line-height: 1.2;
  font-weight: bold;
  color: #111;
  padding: 16px;
}

/* TEXTO */
.article-content {
  padding: 0 16px 24px;
}

.article-content p {
  font-size: 16px;
  line-height: 1.7;
  color: #333;
  margin-bottom: 16px;
}
