.bloco-noticias-destaques {
  background: #f9f9f9;
  padding: 40px 0;

  h2 {
    font-size: 24px;
    font-weight: bold;
    color: var(--darkgray);
    margin: 0;
    margin-bottom: 40px;
  }

  .scroll-style {
    .mais-destaques-post {
      display: grid;
      grid-template-columns: repeat(4, auto);
      justify-content: space-between;
      min-width: max-content;

      .post-item {
        display: flex;
        border-bottom: 1px solid #ebebeb;
        border: 1px solid #ebebeb;
        border-radius: 8px;
        margin-bottom: 20px;
        height: 470px;
        width: 280px;
        flex-direction: column;
        background: white;

        .post-thumbnail {
          img {
            object-fit: cover;
            border-right: 1px solid #ebebeb;
            width: -webkit-fill-available;
            height: 220px;
            border-top: 3px solid #004f9f;
            border-left: 0;
            border-radius: 8px 8px 0 0;
          }
        }

        .mais-destaques-post-text {
          padding: 16px 20px;
          display: grid;
          align-content: space-between;
          width: -webkit-fill-available;
          height: -webkit-fill-available;

          .noticias-info-content {
            .pagina-de-noticias-post-category {
              display: flex;
              gap: 4px;
              align-items: center;
              margin-bottom: 12px;

              a {
                background: #e6f5ff;
                color: #033e66;
                border-radius: 20px;
                font-weight: 700;
                text-transform: uppercase;
                display: block;
                margin-bottom: 12px;
                padding: 0 8px;
                width: fit-content;
                margin: 0;
              }

              .post-date {
                margin: 0;
                font-size: 14px;
                font-weight: 600;
                color: #565654;
              }
            }

            h2 {
              margin: 0;

              a {
                p{
                color: #1d1d1b;
                font-size: 16px;
                font-weight: 700;
                }
              }
            }
          }

          .read-more {
            display: flex;
            gap: 4px;
            align-items: center;
          }
        }
      }
    }
  }
}
