.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: 24px;
  color: #333333;
  text-align: center;
  padding: 70px 0 24px;
}

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

.filter-list div {
  font-family: db_heavent;
  font-size: 30px;
  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 {
  width: 100%;
  padding: 40px 30px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 30px;
}

.board-card {
  width: 100%;
  height: 100%;
  background: #f5f5f5;
  display: flex;
  flex-direction: column;
}
.board-img-wrapper {
  width: 100%;
  padding-top: 85%;
  position: relative;
  overflow: hidden;
}

.board-img-wrapper img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  transition: width 0.5s, height 0.5s;
}
.board-img-wrapper:hover img {
  width: 120%;
  height: 120%;
}
.board-detail {
  padding: 16px 24px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.board-detail h3 {
  font-size: 27px;
  font-weight: bolder;
  color: #212529;
  margin-bottom: 0;
}
.board-detail a,
.board-detail a:hover {
  color: #212529;
  text-decoration: none;
}
.board-detail .date-text {
  font-size: 20px;
  color: #32bbac;
}
.board-detail .board-detail-desc {
  font-size: 20px;
  color: #000000;
}
.board-detail .red {
  color: #ff0000;
}
.board-detail .badge-wrapper {
  display: flex;
  margin-top: auto;
  align-items: center;
  gap: 10px;
  padding-top: 15px;
}
.board-detail .badge-wrapper .separator {
  height: 100%;
  border-left: 1px solid #ddd;
}
.filter-select {
  display: none;
}
.download-title {
  width: 100%;
  font-family: db_heavent;
  font-size: 32px;
  color: #333333;
  text-align: center;
  padding: 70px 30px 40px;
  font-weight: bolder;
}
.download-section {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.download-section > div {
  width: 100%;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
  width: fit-content;
  margin: 0 10px;
}

.filter-option-inner-inner {
  font-size: 20px;
}
.dropdown-item {
  font-size: 20px;
}
.dropdown-item:focus,
.dropdown-item:hover {
  color: #fff;
}
@media screen and (max-width: 991px) {
  .cover-title div:not(.header-text-sena-banner) {
    font-size: 20px !important;
  }
  .board-list {
    grid-template-columns: 1fr 1fr;
  }
}

@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;
  }
  .download-title {
    font-size: 28px;
  }
  .download-section {
    flex-direction: column;
    gap: 40px;
  }
}
