@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap");

::selection {
  background: #F6921E;
  color: #fff;
}

.tab-list {
  padding: 50px 40px;
  border-radius: 12px;
  background: #ffffff;
  /* box-shadow: 0px 4px 16px rgba(254, 205, 211, 0.1),
    0px 8px 24px rgba(254, 205, 211, 0.1),
    0px 16px 56px rgba(254, 205, 211, 0.1); */
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15)!important;
}

.tab-list .topic {
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 20px;
  text-shadow: 0 0px 8.896px #F6921E, 0 -2px 1px #F6921E;
  color: #F6921E !important;
}

.content input {
  display: none;
}

.content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.content .list {
  display: flex;
  flex-direction: column;
  position: relative;
  width: 20%;
  margin-right: 160px;
}

.content .list label {
  cursor: pointer;
  height: 52px;
  line-height: 60px;
  font-size: 22px;
  font-weight: 500;
  color: #999b9d;
  padding-left: 25px;
  transition: all 0.5s ease;
  z-index: 10;
}

#fiction:checked ~ .list label.fiction,
#non-fiction:checked ~ .list label.non-fiction,
#beauty:checked ~ .list label.beauty,
#bussiness:checked ~ .list label.bussiness,
#fantasy:checked ~ .list label.fantasy {
  color: #ffffff;
}

.content .slider {
  position: absolute;
  left: 0;
  top: 0;
  height: 60px;
  width: 100%;
  border-radius: 12px;
  transition: all 0.5s ease;
  background: #F6921E;
}

#fiction:checked ~ .list .slider {
  top: 0;
}

#non-fiction:checked ~ .list .slider {
  top: 60px;
}

#beauty:checked ~ .list .slider {
  top: 120px;
}

#bussiness:checked ~ .list .slider {
  top: 180px;
}

#fantasy:checked ~ .list .slider {
  top: 240px;
}

.content .text-content {
  width: 80%;
  height: 100%;
  color: #999b9d;
}

.content .text {
  display: none;
}

.content .text .title {
  font-size: 25px;
  margin-bottom: 10px;
  font-weight: 500;
}

.tab-list .text p {
  text-align: justify;
}

.content .text-content .fiction {
  display: block;
}

#fiction:checked ~ .text-content .fiction,
#non-fiction:checked ~ .text-content .non-fiction,
#beauty:checked ~ .text-content .beauty,
#bussiness:checked ~ .text-content .bussiness,
#fantasy:checked ~ .text-content .fantasy {
  display: block;
}

#non-fiction:checked ~ .text-content .fiction,
#beauty:checked ~ .text-content .fiction,
#bussiness:checked ~ .text-content .fiction,
#fantasy:checked ~ .text-content .fiction {
  display: none;
}

.content .list label:hover {
  color: #F6921E;
}

.tab-image {
  max-width: 180px;
  margin: 25px;
}

.custom-card-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1rem;
}

.custom-card-item {
  flex: 1 1 calc(33.33% - 1rem);
  margin-bottom: 1rem;
}