.border-button-group {
  margin-top: 26px;
  margin-bottom: 40px;
}

.campaign-list {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-between;
  min-height: 330px;
  row-gap: 30px;
  align-items: flex-start;
}
.campaign-list > div {
  width: 370px;
}
.campaign-list::after {
  content: "";
  width: 370px;
  height: 0;
  display: block;
}
.campaign-list .campaign {
  display: flex;
  flex-direction: column;
  background-color: var(--global--color--white);
  border: 3px var(--global--color--purple) solid;
  border-radius: 10px;
  overflow: hidden;
}
.campaign-list .campaign .thumbnail {
  width: 100%;
  height: auto;
}
.campaign-list .campaign .category-area {
  display: flex;
  margin: 20px 20px 15px;
  gap: 5px;
  flex-wrap: wrap;
}
.campaign-list .campaign .category {
  width: 106px;
  height: 35px;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--global--color--pink);
  font-family: var(--global--font--m-plus);
  font-size: 16px;
  color: var(--global--color--white);
}
.campaign-list .campaign .name {
  font-family: var(--global--font--noto-sans);
  padding-left: 20px;
  padding-right: 20px;
  margin-bottom: 20px;
  font-size: 24px;
  font-weight: 700;
  text-align: left;
  color: var(--global--color--dark-purple);
  overflow-wrap: break-word;
}
@media screen and (max-width: 750px) {
  .campaign-list {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-between;
    min-height: 490px;
    justify-content: center;
  }
  .campaign-list > div {
    width: 580px;
  }
  .campaign-list::after {
    content: "";
    width: 580px;
    height: 0;
    display: block;
  }
  .campaign-list .campaign {
    border: 5px var(--global--color--purple) solid;
    border-radius: 20px;
  }
  .campaign-list .campaign .category-area {
    gap: 5px;
  }
  .campaign-list .campaign .category {
    width: 175px;
    height: 40px;
    font-size: 24px;
  }
  .campaign-list .campaign .name {
    font-size: 30px;
  }
}

/*# sourceMappingURL=campaign.css.map */
