  a {
    text-decoration: none;
    outline: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .layout {
    display: grid;
    grid-template-columns: 344px 1fr;
    gap: 30px;
  }

  h1 {
    padding: 25px 25px 0 25px;
  }

  h1,
  h2 {
    color: var(--text-secondary);
  }

  .sidebar {
    border-right: 1px solid #ddd;
    padding: 20px;
  }

  .publicacoes {
    display: flex;
    flex-direction: row-reverse;
    gap: 15px;
    justify-content: center;
  }

  .lista-eventos li {
    margin-bottom: 15px;
  }

  .publicacao {
    background: var(--primary-publi);
    margin-bottom: 20px;
    padding-bottom: 13px;
    width: 651px;
    border-radius: 22px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--text-login);
    box-shadow: var(--shadow-card);
  }

 @media (max-width: 768px) {
     .publicacao{
    width: 340px;
  }
  }

  nav a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
  }

  .publicacao img {
    border-radius: 22px;
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 350px;
    padding: 20px;
    border-radius: 38px;
  }

  .format_event {
    border: 1px solid #850e35;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    padding: 5px;
    list-style: none;
  }



  .format_event strong {
    color: #7f6169;
  }

  .format_event .info {
    color: #413f42;
  }

  .format_event .data {
    color: #6e6d6e;
  }

  .head_event {
    display: flex;
    justify-content: space-around;
    flex-direction: row;
    width: 288px;
  }

  .inf {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 288px;
    padding-left: 32px;
    padding-right: 28px;
    font-family: var(--font-secondary);
  }

  .usuario {
    width: 100%;
    padding: 20px;
    font-weight: var(--font-weight-bold);
    font-family: var(--font-primary);
    display: flex;
    flex-direction: row;
    gap: 15px;
    align-items: center;


  }

  .bolinha {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--text-login);
  }

  .cont_conteudo {
    width: 100%;
    padding: 0 20px 20px 20px;
    font-weight: var(--font-weight-regular);
    font-family: var(--font-primary);
  }