/* Mirrors temp.html rights-section layout; scoped under .rights-box */

.rights-box theme-rights-box {
  display: block;
}

.rights-box .rights-section {
  margin: 0 auto;
  max-width: 1400px;
  margin-bottom: 60px;
}

.rights-box .rights-section ul {
  display: flex;
  justify-content: space-between;
}

.rights-box .rights-section li {
  width: calc((100% / 4) - (60px / 4));
  border-radius: 24px;
  padding: 10px;
  background: var(--rights-box-bg, #F7F7F7);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.rights-box .rights-section .rights-icon {
  width: 30%;
  text-align: center;
}

.rights-box .rights-section .rights-icon img {
  width: 60%;
  height: auto;
}

.rights-box .rights-section .rights-content {
  width: 70%;
  padding-left: 10px;
}

.rights-box .rights-section .rights-content p {
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
}

.rights-box .rights-section .rights-content p:first-of-type {
  font-size: 15px;
  font-weight: 600;
}

@media screen and (min-width: 768px) and (max-width: 1439px) {
  .rights-box .rights-section .rights-content p:first-of-type {
    font-size: 12px;
  }
}

@media screen and (max-width: 767.98px) {
  .rights-box .rights-section ul {
    flex-wrap: wrap;
  }

  .rights-box .rights-section li {
    width: calc((100% / 2) - 5px);
    border-radius: 12px;
    margin-bottom: 10px;
  }

  .rights-box .rights-section li:nth-child(n+3) {
    margin-bottom: 0px;
  }

  .rights-box .rights-section .rights-icon img {
    width: 70%;
  }

  .rights-box .rights-section .rights-content p {
    font-size: 10px;
    zoom: 0.8;
  }

  .rights-box .rights-section .rights-content p:first-of-type {
    font-size: 10px;
    zoom: 1;
  }
}
