@charset "utf-8";

.p-works {
  padding-top: 120px;
  padding-bottom: 150px;
  background: transparent linear-gradient(180deg, #ffffff00 0%, #ffffffc3 30%, #ffffff 100%);

  @media (width < 768px) {
    padding-top: 60px;
    padding-bottom: 80px;
  }
}

.p-works__categories {
  section {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;

    a {
      display: block;
      border-radius: 100px;
      background: var(--color-white);
      min-width: 160px;
      padding: 10px 20px;
      text-align: center;
      color: #e66258;
      font-size: 14px;
      letter-spacing: 0.05em;
      border: 1px solid #e66258;
    }

    a:hover,
    a.is-selected {
      background: #e66258;
      color: #eff3fb;
    }
  }
}

.p-works__lists {
  margin-top: 45px;

  section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 54px 44px;

    @media (width < 1120px) {
      gap: 30px 20px;
      grid-template-columns: repeat(2, 1fr);
    }

    @media (width < 600px) {
      display: flex;
      flex-direction: column;
    }
  }
}

.p-news__lists {
  margin-top: 44px;

  section {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .webgene-pagination {
    margin-top: 70px;
  }
}
