h1 {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.meta {
  font-size: 0.875rem;
  color: #666;
}

.container.post {
  padding: 48px 24px;
  margin-top: 97px;
}

.area_name {
  background-color: #001e3c;
  position: relative;
  top: 72px;
  left: 0;
  padding: 24px 0;
  font-size: clamp(0.8rem, 4vw, 1.3rem);

  text-align: center;
  color: #fff;
}

.post-image {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  max-height: 700px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.content {
  font-size: 1rem;
}

.content p {
  margin-bottom: 1rem;
}

.cta-box {
  border-radius: 8px;
  padding: 1.5rem;
  margin-top: 2rem;
  text-align: center;
}

.cta-box a {
  display: inline-block;
  background: #001e3c;
  color: #fff;
  padding: 0.75rem 2rem;
  border-radius: 4px;
  font-size: 1rem;
  text-decoration: none;
}

.cta-box a:hover {
  background: #155da0;
}

.return_btn {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  max-width: 156px;
}

.return_btn p {
  font-size: 1.2rem;
  font-weight: 700;
  color: #aaaaaa;
}

.return_btn i {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #aaaaaa;

  font-size: 1.2rem;
}

.user-avatar {
  width: 4rem;
  border-radius: 50%;
}

.author-box {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.author-box p {
  display: block;
}

/* BOTÕES DE COMPARTILHAR */

.share_list {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  margin-bottom: 1.5rem;
}

.share_list i {
  font-size: 2rem;
  transition: all ease 0.3s;
  transform: scale(1.03);
}

.share_list i:hover {
  color: #155da0;
}

@media (max-width: 600px) {
  .container.post {
    padding: 48px 24px;
    margin-top: 72px;
  }

  .area_name {
    padding: 1rem 0;
  }

  .author-box {
    gap: 0.5rem;
  }

  .user-avatar {
    min-width: 4rem;
    max-height: 4rem;
  }

  .return_btn p {
    font-size: 0.8rem;
    font-weight: 700;
    color: #aaaaaa;
  }

  .return_btn i {
    font-size: 1rem;
  }

  .share_list i {
    font-size: 1.5rem;
  }
}
