/* Board of Directors: one lead card followed by four cards in two columns. */
@supports selector(:has(*)) {
  .about-s5 .inner-wrap-s:has(.cate-box a:first-child.active)
  .items:has(> .item:nth-child(5):last-child) {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, calc(48% - 4rem)));
    justify-content: center;
    column-gap: 3rem;
    row-gap: 4rem;
  }

  .about-s5 .inner-wrap-s:has(.cate-box a:first-child.active)
  .items:has(> .item:nth-child(5):last-child) > .item {
    width: 100%;
    margin: 0;
  }

  .about-s5 .inner-wrap-s:has(.cate-box a:first-child.active)
  .items:has(> .item:nth-child(5):last-child) > .item:first-child {
    grid-column: 1 / -1;
    justify-self: center;
    width: calc((100% - 3rem) / 2);
  }
}

@media (max-width: 750px) {
  @supports selector(:has(*)) {
    .about-s5 .inner-wrap-s:has(.cate-box a:first-child.active)
    .items:has(> .item:nth-child(5):last-child) {
      grid-template-columns: 1fr;
      row-gap: 2rem;
    }

    .about-s5 .inner-wrap-s:has(.cate-box a:first-child.active)
    .items:has(> .item:nth-child(5):last-child) > .item:first-child {
      grid-column: auto;
      width: 100%;
    }
  }
}
<!--ºÄÊ±1790142385.4828Ãë-->