.council_content {
  border-top: 1px solid #ececec;
  border-left: 1px solid #ececec;
  display: grid;
  grid-template-columns: 100px 1fr 1fr 1fr;
}

.council_item {
  font-size: 16px;
  color: #333;
  text-align: center;
  min-height: 60px;
  padding: 8px;
  border-right: 1px solid #ececec;
  border-bottom: 1px solid #ececec;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.council_item_title {
  color: #666;
  font-weight: 500;
  background-color: #f5f7f9;
  grid-row: span var(--pc-len, 1);
}

.council_item span {
  color: #999;
  font-size: 14px;
}

@media screen and (max-width: 768px) {
  .council_content {
    grid-template-columns: 2fr 5fr;
  }

  .council_item {
    font-size: 14px;
  }

  .council_item_title {
    color: #666;
    font-weight: 500;
    background-color: #f5f7f9;
    grid-row: span var(--m-len, 1);
  }

  .council_item_none_content {
    display: none;
  }
}
