.main-wrapper {
  position: relative;
  width: 100%;
}

.main-wrapper img {
  width: 100%;
}

.main-wrapper div {
  font-family: db_heavent;
  font-size: 48px;
  color: #ffffff;
  border: 3px solid #ffffff;
  padding: 6px 40px;
  box-shadow: 0px 3px 10px #00000080;
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: max-content;
}

.quote {
  width: 100%;
  font-family: db_heavent;
  font-size: 32px;
  color: #333333;
  text-align: center;
  padding: 70px 0 50px;
}

.filter-list {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.filter-list div {
  font-family: db_heavent;
  font-size: 24px;
  color: #333333;
  border-bottom: 2px solid #fff;
  cursor: pointer;
  text-align: center;
}

.filter-list div:hover {
  color: #32BCAD;
}

.filter-list div.active {
  color: #32BCAD;
  border-bottom: 2px solid #32BCAD;
}

.board-list {
  margin: auto;
  max-width: 1000px;
  width: 100%;
  padding: 40px 16px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
}

.board-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  text-align: center;
}

.board-card img {
  width: 100%;
  max-width: 200px;
  object-fit: cover;
  height: 100%;
  max-height: 221px;
}

.board-card h3 {
  padding-top: 16px;
  font-size: 24px;
  font-weight: 300;
  margin-bottom: 0;
}

.board-card span {
  font-size: 20px;
  font-weight: 300;
}
.board-card:hover h3,
.board-card:hover span {
  color: #32BCAD;
}

.board-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1031;
}

.board-backdrop.hidden {
  display: none;
}
.board-modal {
  font-size: 20;
}

.modal-container {
  width: 90%;
  max-width: 1000px;
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
}

.board-modal-header {
  width: 100%;
  text-align: right;
}

.board-modal-header img {
  cursor: pointer;
}

.board-modal-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 16px;
}

.profile-section {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.profile-section img {
  width: 200px;
}

.profile-section h3 {
  padding-top: 16px;
  font-size: 22px;
  margin-bottom: 0;
}

.profile-detail-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-height: 80vh;
  overflow: scroll;
}

.profile-detail-section>div,
.half>div {
  width: 100%;
}

.profile-detail-section .board-modal-title {
  color: #32BCAD;
  font-size: 24px;
}

.profile-detail-section .board-modal-detail div {
  position: relative;
  padding-left: 14px;
  font-size:20px;
}
}

.board-modal-detail {
  font-size:20px;
}

.profile-detail-section .board-modal-detail div:not(.none-bull)::before {
  content: "►";
  color: #32BCAD;
  position: absolute;
  top: 5px;
  font-size: 12px;
  left: 0;
}


.half {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 12px;
}

.filter-select {
  display: none;
}

@media screen and (max-width: 768px) {
  .main-wrapper img {
    min-height: 40vh;
    object-fit: cover;
  }

  .main-wrapper div {
    font-size: 36px;
  }

  .filter-list {
    display: none;
  }

  .filter-select {
    display: flex;
    padding: 0 16px;
    justify-content: center;
  }

  .filter-select>* {
    width: 100% !important;
    max-width: 400px;
  }
}

@media screen and (max-width: 576px) {
  .main-wrapper div {
    font-size: 28px;
  }

  .board-list {
    grid-template-columns: 1fr;
  }

  .quote {
    font-size: 24px;
    padding: 40px 0 20px;
  }

  .board-card img {
    max-width: 70vw;
    max-height: unset;

  }

  .board-modal-content {
    grid-template-columns: 1fr;
    max-height: 80vh;
    overflow-y: scroll;
  }

  .profile-detail-section {
    max-height: unset;
  }
}