.featured-and-popular {
  background-color: var(--color-white);
  margin-top: 90px;
}

.featured-post .post-grid .featured-label {
  display: block;
}

.post-grid .post-meta span {
  margin: 0 8px;
}

.featured-post .post-grid .post-meta span:not(:last-child)::after {
  background-color: var(--color-grey);
  content: '';
  display: inline-block;
  height: 1em;
  position: absolute;
  right: -5px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
}

.featured-post .post-grid .post-title {
  font-size: 24px;
}

.featured-post .post-grid .post-meta .post-author {
  display: inline-block;
}

.featured-post .post-grid .post-thumbnail{
  width: 498px;
  height: 332px;
}

.featured-post .post-grid:hover .post-arrow {
    display: none;
}

@media (max-width: 768px) {
  .featured-and-popular {
    margin-top: 40px;
  }

  .featured-post .post-grid .post-title {
    font-size: 16px;
    margin: 16px 15px;
    min-height: auto;
  }

  .featured-post .post-grid .post-meta {
    align-items: baseline;
    flex-wrap: wrap;
    gap: 10px;
    color: var(--color-neutral-gray-400);
    font-family: 'Poppins';
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    justify-content: flex-start;
  }

  .featured-post .post-grid .post-meta .post-author {
    text-align: left;
    width: 100%;
  }

  .featured-post .post-grid .post-meta .post-author::after {
    background: none!important;
  }

  .featured-post .post-grid .post-meta span {
    margin: 0 0 5px;
  }

  .featured-post .post-grid .post-thumbnail{
    width: 100%;
    height: auto;
  }

  .featured-and-popular .most-popular .post-list .post-thumbnail {
    margin-top: 10px;
  }
}