.postgrid-insights-content {

  .subtitle {
    color: var(--black-color);
    text-align: center;
    font-family: var(--font-regular-400);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px;
  }

  .title {
    color: var(--secondary-color);
    text-align: center;
    font-family: var(--font-semibold-600);
    font-size: clamp(2.5rem, 5vw + 1rem, 3.75rem);
    font-style: normal;
    font-weight: 600;
    line-height: 64px;
    padding-bottom: 2rem;
  }

  .insights-cards {
    margin-bottom: 2rem;

    .post-image {
      background-color: #D9D9D9;
      background-image: url('../img/ico-image.svg');
      background-repeat: no-repeat;
      background-position: center;
      display: flex;
      aspect-ratio: 4/3;

      a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 100%;

        img {
          width: 100%;
          height: 100%;
          object-fit: cover;
          border-radius: 14px;
        }

      }

    }

    .post-content {
      padding: 1.8rem 0;

      .post-date {
        color: #E9AA41;
        font-family: var(--font-regular-400);
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: 20px;
      }

      .post-title {
        color: var(--primary-color);
        font-family: var(--font-semibold-600);
        font-size: clamp(1.25rem, 2vw + 0.25rem, 1.5rem);
        font-style: normal;
        font-weight: 600;
        line-height: 32px;
      }

      p {
        margin-bottom: 2rem;
      }

    }

  }

}

.postgrid-media-content {

  .subtitle {
    color: var(--black-color);
    text-align: center;
    font-family: var(--font-regular-400);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px;
  }

  .title {
    color: var(--secondary-color);
    text-align: center;
    font-family: var(--font-semibold-600);
    font-size: clamp(2.5rem, 5vw + 1rem, 3.75rem);
    font-style: normal;
    font-weight: 600;
    line-height: 64px;
    padding-bottom: 2rem;
  }

  .media-cards {
    margin-bottom: 2rem;
    padding: 2rem;
    border-radius: var(--border-radius24);
    background-color: var(--color-purpura-claro);
    min-height: 290px;

    .post-content {
      padding: 0;

      .post-date {
        color: var(--color-purpura-oscuro);
        font-family: var(--font-regular-400);
        font-size: 12px;
        font-style: normal;
        font-weight: 400;
      }

      .post-title {
        color: var(--secondary-color);
        font-family: var(--font-semibold-600);
        font-size: clamp(1.125rem, 1vw + 0.75rem, 1.25rem);
        font-style: normal;
        font-weight: 600;
        line-height: 28px;
      }

      p {
        color: var(--color-negro70);
        font-family: var(--font-regular-400);
        font-size: 12px;
        font-style: normal;
        font-weight: 400;
        line-height: 1.6;
        margin-bottom: 1.5rem;
      }

    }

  }

}


/* Pagination Styles */
.pagination {
  .page-link {
    color: #5A67D8;
    background-color: white;
    border: none;

    &:hover {
      background-color: #e9ecef;

    }

  }

  .page-item:first-child .page-link,
  .page-item:last-child .page-link {
    border-radius: 0.25rem;
  }

}

.pagination .page-item.active {

  .page-link {
    background-color: #5A67D8;
    border-color: #5A67D8;
    color: white;
  }

}

/* Responsive Styles */
@media (max-width: 1200px) {}

@media (max-width: 1024px) {}

@media (max-width: 992px) {}

@media (max-width: 768px) {}

@media (max-width: 600px) {}

@media (max-width: 560px) {}

@media (max-width: 480px) {}

@media (max-width: 320px) {}