.section-container {
  width: 100%;
  padding: 0 10rem;
  background-color: #f0f0f0;
}

@media print,
screen and (max-width: 768px) {
  .section-container {
    padding: 0 2rem;
  }
}

.section-container .title-section {
  background-color: transparent;
  margin-bottom: 0;
  padding: 5rem 0;
}

.section-container .title-section .title-container {
  padding: 5rem 1rem;
  margin: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  position: relative;
}

.section-container .title-section .title-container::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 50px;
  height: 2px;
  background-color: #ff8000;
}

.section-container .title-section .title-container h2 {
  font-weight: bolder;
  letter-spacing: 2px;
}

.section-container .title-section .title-container h2.first {
  font-size: 4rem;
  color: #999;
  font-family: "Yumin-db";
  font-weight: 100;
}

.section-container .title-section .title-container h2.second {
  font-size: 2.8rem;
  color: #004190;
  font-family: "Yu-b";
  text-align: center;
}

@media print, screen and (max-width: 425px) {
  .section-container .title-section .title-container h2.second {
    letter-spacing: 1.2px;
  }
}

.section-container .title-section .title-container h2.second span.styled {
  display: inline-block;
  background-color: #faee00;
  padding: 0;
}

.section-container section {
  background-color: transparent;
  padding: 5rem 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 2rem;
}

/* ------------ List Section -------- */

.section-container .list-section {
  width: 100%;
}

.section-container .list-section .filterbar-container {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 2rem;
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 3rem
}

.section-container .list-section .filterbar-container .all-show-btn {
  display: inline-block;
  border: 1px solid #f39800;
  border-radius: 5px;
  width: 12rem;
  height: 4rem;
  min-height: fit-content;
  padding: 0;
  text-align: center;
  color: white;
  background-color: #f39800;
  box-sizing: border-box;
}

.section-container .list-section .filterbar-container .all-show-btn:hover {
  cursor: pointer;
}

.section-container .list-section .filterbar-container .select-wrapper {
  position: relative;
  display: inline-block;
  height: 4rem;
  width: fit-content;
  min-height: fit-content;
}

.section-container .list-section .filterbar-container .select-wrapper .item-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  height: 100%;
  width: 18rem;
  padding: 0 30px 0 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  background-color: #f5f5f5;
  color: #333;
  cursor: pointer;
  line-height: normal;
  box-sizing: border-box;
  outline: none;
}

.section-container .list-section .filterbar-container .select-wrapper .select-arrow {
  position: absolute;
  top: 50%;
  right: 10px;
  pointer-events: none;
  transform: translateY(-50%);
  color: #ccc;
}

.section-container .list-section .item-list-container {
  width: 100%;
  display: grid;
  gap: 3rem 2.5rem;
  margin-bottom: 5rem;
}

@media print,
screen and (max-width: 640px) {
  .section-container .list-section .item-list-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media print,
screen and (min-width: 641px) {
  .section-container .list-section .item-list-container {
    grid-template-columns: repeat(3, 1fr);
  }
}

.section-container .list-section .item-list-container a.item-link {
  text-decoration: none;
  display: block;
  color: inherit;
  margin: auto;
  width: 100%;
}

.section-container .list-section .item-list-container .item-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-weight: bold;
}

.section-container .list-section .item-list-container .item-container .image-container {
  width: 100%;
  height: 22rem;
}

@media screen and (max-width: 640px) and (min-width: 426px) {
  .section-container .list-section .item-list-container .item-container .image-container {
    height: 20rem;
  }
}

@media screen and (max-width: 425px) {
  .section-container .list-section .item-list-container .item-container .image-container {
    height: 16rem;
  }
}

.section-container .list-section .item-list-container .item-container .image-container img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 1rem;
  object-fit: cover;
  object-position: center;
}

.section-container .list-section .item-list-container .item-container .no-image-container {
  width: 100%;
  height: 100%;
  border-radius: 1rem;
  border: none;
  background-color: #999;
  color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
}

.section-container .list-section .item-list-container .item-container .no-image-container span {
  font-size: 1.4rem;
}

.section-container .list-section .item-list-container .item-container p.item-title {
  font-size: 1.6rem;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.section-container .list-section .item-list-container .item-container small {
  font-size: 1.2rem;
}

.section-container .list-section .no-item-container {
  width: 100%;
  height: 20rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.section-container .list-section .no-item-container span.message {
  font-size: 1.6rem;
  letter-spacing: 2px;
  text-align: center;
}

.section-container .list-section .pagination {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 1.6rem;
}

.section-container .list-section .pagination .pagination-btn {
  border: none;
  background: none;
  color: #000;
}

.section-container .list-section .pagination .page-numbers-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 1rem;
}

.section-container .list-section .pagination .page-numbers-container a.page-number {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 4rem;
  height: 4rem;
  border: 1px solid #ccc;
  border-radius: 50%;
  cursor: pointer;
  background-color: transparent;
  color: #000;
  font-weight: normal;
  text-decoration: none;
}

.section-container .list-section .pagination .page-numbers-container a.active-page-number {
  background-color: #004190;
  color: #fff;
  font-weight: bold;
}

.section-container .list-section .pagination .page-numbers-container span.dots {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
}

/* ----------- Section 1 --------- */

.section-container .section-1 {
  width: 100%;
  background-color: transparent;
}

.section-container .section-1 .instagram-info {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  font-size: 1.6rem;
}

.section-container .section-1 .btn {
  width: 32rem;
  border: none;
  border-radius: 5rem;
  font-size: 1.6rem;
  color: white;
  padding: 2rem 1rem;
  text-align: center;
}

@media print,
screen and (max-width: 640px) {
  .section-container .section-1 .btn {
    width: 100%;
    max-width: 400px;
  }
}

.section-container .section-1 .btn:hover {
  cursor: pointer;
}

.section-container .section-1 .instagram-info a.instagram-btn {
  background-color: #e4007f;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
}

.section-container .section-1 .instagram-info a.instagram-btn .icon {
  font-size: 2.6rem;
}

.section-container .section-1 .btn-group {
  margin-top: 7rem;
  width: 100%;
  display: flex;
  justify-content: center;
}