<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.container {
  display: flex;
  flex-direction: column;
  margin-top: 20px !important;
  margin-bottom: 30px !important;
  width: 95%;
  /* margin: auto; */
}

.grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1px;
}

.card {
  flex: 1 0 calc(16.666% - 10px);
  min-width: 150px;
  padding: 8px;
  border-radius: 4px;
}

.heading {
  font-weight: 500;
  font-size: 32px;
  margin-bottom: 20px;
  width: 1360px;
}

.divider {
  width: 1360px;
  height: 1px;
  background-color: #90909047;
  position: absolute;
  margin-top: 50px;
}

.title {
  color: gray;
  margin-top: 8px;
}

@media screen and (min-width: 320px) and (max-width: 1360px) {
  .container {
    margin: auto;
  }
  .heading {
    width: 95% !important;
    margin: auto !important;
    margin-left: 0px !important;
  }

  .divider {
    width: 95% !important;
    margin: 0 auto !important;
    margin-top: 50px !important;
  }

  .grid {
    margin-top: 20px;
  }
}

@media screen and (min-width: 320px) and (max-width: 408px) {
  .divider {
    margin-top: 90px !important;
  }
}
</pre></body></html>