.jwp-csr-description {  
  padding: 1em;
  margin: 2em auto;
  color: var(--color-primary);
  border: 1px solid var(--color-primary);
  border-radius: 6px;
}

.jwp-kes-description {
  padding: 1em;
  display: flex;
  align-items: center;
  gap: 2em;
  border-radius: 8px;
  border: 3px solid var(--color-primary);
  /*background: #eee;*/

  .badge {
    width: 30%;
    img {
      display: block;
      width: 100%;
      height: auto;
    }
  }

  .content {
    /*color: var(--color-primary);*/
  }

  @media(max-width:1080px) {
    & {
      flex-wrap: wrap;
      justify-content: center;
    }
    .badge {
      width: 50%;
    }
  }
}

.jwp-kes-updated {
  text-align: center;
}

.jwp-sdgs-declaration {

  .title {
    font-size: 130%;
    font-weight: bold;
    padding: .5em 1em;
    background: #eee;
    border-left: 8px solid var(--color-primary);
  }

  .body {
    padding: 1em;
    margin: 2em auto;
    color: var(--color-primary);
    border: 1px solid var(--color-primary);
    border-radius: 6px;
  }

  .signature {
    text-align: right;

    strong {
      margin-left: 1em;
      font-size: 130%;
    }
  }

  @media(max-width:1080px) {
    .title {
      font-size: 110%!important;
    }
  }
}

.jwp-sdgs-attempt {
  h1 {
    text-align: center;
  }
}

.jwp-sdgs-cardview {
  &>ul {
    margin: 2em auto;
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: space-between;
    gap: 3vw;
  }
  &>ul::after {
    content: "";
    display: list-item;
    width: 46%;
  }
  &>ul>li {
    width: 46%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid var(--color-borders);
    border-radius: 8px;
    padding: .5em;
  }
  .title {
    padding: .5em;
    font-weight: bold;
    font-size: 120%;
    color: var(--color-primary);
    text-align: center;
  }
  .description {
    padding: .5em;
    font-weight: bold;
  }
  .attempt {

  }
  .icons {
    padding: 1em 0;
    display: flex;
    justify-content: space-evenly;

    &::after {
      content: "";
    }

    img {
      display: block;
      width: 16%;
      height: auto;
      align-items: center;
    }
  }

  @media(max-width: 1080px) {
    &>ul>li { 
      width:100%; 
    }
    .description {
      font-size: 100%!important;
    }
  }
}

.jwp-sdgs-about {
  display: flex;
  gap: 1em;
  align-items: center;
  justify-content: center;
  padding: 1em;
  border: 1px solid var(--color-secondery);

  .image {
    img {
      display: block;
      width: 100%;
      height: auto;
    }
  }

  .content {

  }

  @media(max-width: 1080px) {
    & {
      flex-wrap: wrap;
    }
  }
}