:root {
  --red-text: #ca0000;
}

@font-face {
  font-family: "remixicon";
  src: url("//cdn.jsdelivr.net/npm/remixicon@2.5.0/fonts/remixicon.woff2") format("woff2");
  font-display: swap;
}
body {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
  background-color: #fff;
  transition: 0.4s;
}
body .hero-bg {
  background-color: #fff;
}
body .section-block-bg {
  background: #efefef;
  padding: 15px;
  border-radius: 15px;
}
body.dark {
  background-color: #0e0e0e;
  color: #fff;
}
body.dark .link-hover {
  color: #fff;
}
body.dark .hero-bg {
  background-color: #0e0e0e;
}
body.dark .link-more, body.dark .date {
  color: #5f5f5f;
  text-decoration: none;
}
body.dark .sort-desc {
  color: #cacaca;
}
body.dark .komunitas {
  background-color: #242424;
}
body.dark .list-box-v4 > .list-box-v4-item {
  background: #242424;
}
body.dark .list-box-v5 > .list-box-v5-item:first-child > .list-box-v5-item-text {
  background: #0e0e0e;
}
body.dark .list-box-v5 > .list-box-v5-item:first-child > .list-box-v5-item-img::before {
  content: "";
  position: absolute;
  bottom: -3px;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, transparent 50%, #0e0e0e 100%);
}
body.dark .hero-bg {
  background-color: #0e0e0e;
}
body.dark .section-block-bg {
  background: #252525;
  padding: 15px;
  border-radius: 15px;
}
body .switch {
  position: fixed;
  bottom: 16px;
  right: 16px;
}
body .switch__input {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  z-index: 1;
}
body .switch__label {
  display: block;
  position: relative;
  width: 50px;
  height: 30px;
  background-color: #0e0e0e;
  border-radius: 25px;
  transition: 0.4s;
}
body .switch__label::before {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  right: auto;
  left: 0;
  bottom: 0;
  width: 30px;
  height: 30px;
  border-radius: 100%;
  background-color: #fff;
  color: #0e0e0e;
  transition: 0.4s;
  font-family: "remixicon";
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\f1bf";
}
body .switch__input:checked + .switch__label {
  background-color: #fff;
}
body .switch__input:checked + .switch__label::before {
  left: calc(100% - 30px);
  border-color: #fff;
  background-color: #0e0e0e;
  color: #fff;
  content: "\ef75";
}
body .topBtn {
  display: none;
  position: fixed;
  bottom: 13px;
  right: 73px;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: #0e0e0e;
  color: #ffffff;
  border: none;
  opacity: 0.7;
  transition: ease-in;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.44);
  outline: none;
}
body .topBtn:hover {
  opacity: 1;
}

article {
  line-height: 1.8rem;
}

footer {
  font-size: 14px;
  background: #0c0c0c;
}
footer .copyright {
  background: black;
  color: #8b8b8b;
}
footer a {
  color: #8b8b8b;
  transition: border-color 0.3s ease;
}
footer a:hover {
  color: #fff;
}

.blur-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 350px;
  z-index: -1;
  background-image: url(../img/line-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
}
.blur-background::before {
  content: "";
  background: linear-gradient(292deg, rgba(0, 0, 0, 0.88) 52.22%, rgb(0, 0, 0) 100%);
  width: 100%;
  height: 100%;
  position: absolute;
}

.gradient-background {
  position: absolute;
  top: -26vh;
  left: 0;
  width: 100%;
  height: 49vh;
  z-index: -1;
  background: linear-gradient(180deg, rgb(0, 0, 0) 52.22%, rgba(255, 255, 255, 0.43) 100%);
}

.headline {
  background: linear-gradient(359deg, black, transparent);
  color: white;
  height: 80%;
  align-content: end;
}

.card-box {
  padding-top: 0;
  padding-left: 6px;
  padding-right: 6px;
  padding-bottom: 12px;
}
.card-box p {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  /* batas maksimal 3 baris */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  /* Tetapkan tinggi tetap untuk 3 baris */
  line-height: 1.5em;
  /* contoh line-height */
  height: 4.5em;
  /* 3 baris */
  font-weight: 500;
}

.card-box-2 {
  display: flex;
  flex-flow: row;
  padding-top: 0;
  padding-left: 8px;
  padding-right: 8px;
  padding-bottom: 15px;
  gap: 10px;
}
.card-box-2 > a {
  display: block;
  width: 170px;
  height: auto;
}
.card-box-2 > a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 16/9;
}
.card-box-2 .wrapper {
  flex: 1;
  width: auto;
}

.hero {
  width: 100%;
  height: 65vh;
  position: relative;
}
.hero::before {
  content: "";
  background: linear-gradient(360deg, rgba(0, 0, 0, 0) 52.22%, rgb(0, 0, 0) 100%);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.hero-blur {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  filter: blur(20px);
  transform: scale(1.1);
  will-change: transform;
  pointer-events: none;
  z-index: -1;
}
.hero > img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: contain;
  z-index: -1;
}
.hero > .container {
  height: 100%;
  align-items: end;
  display: flex;
  justify-content: center;
  padding: 0;
}

.link-hover {
  color: #0e0e0e;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s ease;
}
.link-hover:hover {
  border-bottom: 2px solid var(--red-text);
}

.link-more {
  color: #9a9a9a;
  text-decoration: none;
}

.date {
  display: block;
  font-size: 12px;
  color: #9a9a9a;
}

.sort-desc {
  color: #151515;
}

.card-box-set-sub p {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  /* batas maksimal 3 baris */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  /* Tetapkan tinggi tetap untuk 3 baris */
  line-height: 1.5em;
  /* contoh line-height */
  height: 4.5em;
  /* 3 baris */
}

.carousel-indicators {
  margin-bottom: 0px;
}
.carousel-indicators [data-bs-target] {
  background-color: #fff;
  width: 10px;
}

.adv {
  letter-spacing: 1px;
  position: absolute;
  right: 7px;
  top: 7px;
  padding: 3px 6px;
  font-size: 10px;
  background-color: var(--red-text);
  color: #ffffff;
  border-radius: 15px;
  font-weight: 500;
}

.adv_list {
  letter-spacing: 1px;
  position: absolute;
  left: 7px;
  top: 7px;
  padding: 3px 6px;
  font-size: 10px;
  background-color: var(--red-text);
  color: #ffffff;
  border-radius: 15px;
  font-weight: 500;
}

.list-box-tokoh {
  list-style: none;
  width: 100%;
  margin-bottom: 0;
  background: #000000;
  padding: 15px;
}
.list-box-tokoh .list-box-tokoh-item {
  margin-bottom: 1.5rem;
  display: flex;
  gap: 10px;
  position: relative;
}
.list-box-tokoh .list-box-tokoh-item::before {
  content: "";
  position: absolute;
  left: -10px;
  bottom: -13px;
  width: 25px;
  height: 1px;
  background: #515151;
}
.list-box-tokoh .list-box-tokoh-item:first-child {
  margin-bottom: 1.5rem;
  display: flex;
  flex-flow: column;
  gap: 10px;
}
.list-box-tokoh .list-box-tokoh-item:first-child .list-box-tokoh-item-img {
  display: block;
  width: 100%;
  height: auto;
}
.list-box-tokoh .list-box-tokoh-item:first-child .list-box-tokoh-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 16/9;
}
.list-box-tokoh .list-box-tokoh-item .list-box-tokoh-item-img {
  display: none;
}
.list-box-tokoh .list-box-tokoh-item .list-box-tokoh-item-text {
  width: auto;
  flex: 1;
}
.list-box-tokoh .list-box-tokoh-item .list-box-tokoh-item-text span {
  font-size: 0.9rem;
  font-weight: 500;
}
.list-box-tokoh .list-box-tokoh-item .list-box-tokoh-item-text small {
  font-size: 11px;
  color: #a3a3a3;
}
.list-box-tokoh .list-box-tokoh-item .list-box-tokoh-item-text a {
  font-weight: 500;
  color: #fff;
  margin: 0;
}

.list-box-v1 {
  list-style: none;
  width: 100%;
  padding: 0;
  margin-bottom: 0;
}
.list-box-v1 > .list-box-v1-item {
  margin-bottom: 1rem;
  display: flex;
  gap: 10px;
}
.list-box-v1 > .list-box-v1-item:first-child {
  margin-bottom: 1rem;
  display: flex;
  flex-flow: column;
  gap: 10px;
}
.list-box-v1 > .list-box-v1-item:first-child > .list-box-v1-item-img {
  display: block;
  width: 100%;
  height: auto;
}
.list-box-v1 > .list-box-v1-item:first-child > .list-box-v1-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 16/9;
}
.list-box-v1 > .list-box-v1-item > .list-box-v1-item-img {
  width: 100px;
  height: 100px;
}
.list-box-v1 > .list-box-v1-item > .list-box-v1-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1/1;
}
.list-box-v1-item-text {
  width: auto;
  flex: 1;
}
.list-box-v1-item-text small {
  font-size: 11px;
}
.list-box-v1-item-text a {
  font-weight: 500;
}

.list-box-v2 {
  list-style: none;
  width: 100%;
  padding: 0;
  margin-bottom: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.list-box-v2 > .list-box-v2-item {
  display: flex;
  gap: 10px;
  flex-flow: column;
  width: calc(25% - 15px);
}
.list-box-v2 > .list-box-v2-item:first-child {
  display: flex;
  flex-flow: row;
  gap: 10px;
  width: 100%;
}
.list-box-v2 > .list-box-v2-item:first-child > .list-box-v2-item-img {
  display: block;
  width: 50%;
  height: auto;
}
.list-box-v2 > .list-box-v2-item:first-child > .list-box-v2-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 16/9;
}
.list-box-v2 > .list-box-v2-item:first-child > .list-box-v2-item-text {
  width: auto;
  flex: 1;
  display: flex;
  flex-flow: column;
  justify-content: space-between;
}
.list-box-v2 > .list-box-v2-item:first-child > .list-box-v2-item-text .wrapper a {
  font-weight: 500;
  font-size: 1.2rem;
}
.list-box-v2 > .list-box-v2-item:first-child > .list-box-v2-item-text .wrapper p {
  display: -webkit-box;
  -webkit-line-clamp: 4; /* jumlah maksimum baris */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 0.85rem;
}
.list-box-v2 > .list-box-v2-item > .list-box-v2-item-img {
  width: 100%;
  height: auto;
}
.list-box-v2 > .list-box-v2-item > .list-box-v2-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 6/4;
}
.list-box-v2 > .list-box-v2-item > .list-box-v2-item-text {
  width: auto;
  flex: 1;
}
.list-box-v2 > .list-box-v2-item > .list-box-v2-item-text .wrapper {
  display: -webkit-box;
  -webkit-line-clamp: 4; /* jumlah maksimum baris */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.list-box-v2 > .list-box-v2-item > .list-box-v2-item-text .wrapper a {
  font-weight: 500;
}
.list-box-v2 > .list-box-v2-item > .list-box-v2-item-text .wrapper p {
  display: none;
}
.list-box-v2-item-text {
  width: auto;
  flex: 1;
}
.list-box-v2-item-text small {
  font-size: 11px;
}
.list-box-v2-item-text a {
  font-weight: 500;
}

.list-box-v3 {
  list-style: none;
  width: 100%;
  padding: 0;
  margin-bottom: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.list-box-v3 > .list-box-v3-item {
  display: flex;
  gap: 10px;
  flex-flow: column;
  width: calc(20% - 15px);
}
.list-box-v3 > .list-box-v3-item > .list-box-v3-item-img {
  width: 100%;
  height: auto;
}
.list-box-v3 > .list-box-v3-item > .list-box-v3-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 6/5;
}
.list-box-v3 > .list-box-v3-item > .list-box-v3-item-text {
  width: auto;
  flex: 1;
}
.list-box-v3 > .list-box-v3-item > .list-box-v3-item-text a {
  font-weight: 500;
}

.list-box-v4 {
  list-style: none;
  width: 100%;
  padding: 0;
  margin-bottom: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.list-box-v4 > .list-box-v4-item {
  display: flex;
  gap: 10px;
  flex-flow: column;
  width: 100%;
  background: #eee;
  padding: 10px;
}
.list-box-v4 > .list-box-v4-item > .list-box-v4-item-text {
  width: auto;
  flex: 1;
}
.list-box-v4 > .list-box-v4-item > .list-box-v4-item-text a {
  font-weight: 500;
}

.list-box-v5 {
  list-style: none;
  width: 100%;
  padding: 0;
  margin-bottom: 0;
}
.list-box-v5 > .list-box-v5-item {
  margin-bottom: 1.5rem;
  display: flex;
  gap: 15px;
  position: relative;
}
.list-box-v5 > .list-box-v5-item:first-child {
  position: relative;
}
.list-box-v5 > .list-box-v5-item:first-child > .list-box-v5-item-img {
  display: block;
  width: 100%;
  height: 50vh;
  position: relative;
}
.list-box-v5 > .list-box-v5-item:first-child > .list-box-v5-item-img::before {
  content: "";
  position: absolute;
  bottom: -3px;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, transparent 50%, #fff 100%);
}
.list-box-v5 > .list-box-v5-item:first-child > .list-box-v5-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 16/9;
}
.list-box-v5 > .list-box-v5-item:first-child > .list-box-v5-item-text {
  width: calc(100% - 20px);
  flex: 1;
  display: flex;
  flex-flow: column;
  justify-content: space-between;
  position: absolute;
  background: #fff;
  padding: 15px;
  margin: 10px;
  bottom: 0;
  border-radius: 1rem;
  flex-direction: column-reverse;
}
.list-box-v5 > .list-box-v5-item:first-child > .list-box-v5-item-text .wrapper .tema {
  margin-top: 15px;
}
.list-box-v5 > .list-box-v5-item:first-child > .list-box-v5-item-text .wrapper a {
  font-weight: bold;
  font-size: 2rem;
  line-height: 1.3;
}
.list-box-v5 > .list-box-v5-item:first-child > .list-box-v5-item-text .wrapper p {
  display: none;
}
.list-box-v5 > .list-box-v5-item > .list-box-v5-item-img {
  width: 170px;
  height: auto;
}
.list-box-v5 > .list-box-v5-item > .list-box-v5-item-img img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 1;
}
.list-box-v5 > .list-box-v5-item > .list-box-v5-item-text {
  width: auto;
  flex: 1;
  display: flex;
  flex-flow: column;
  justify-content: space-between;
}
.list-box-v5 > .list-box-v5-item > .list-box-v5-item-text .wrapper a {
  font-weight: 600;
  font-size: 1.3rem;
}
.list-box-v5 > .list-box-v5-item > .list-box-v5-item-text .wrapper p {
  display: -webkit-box;
  -webkit-line-clamp: 3; /* jumlah maksimum baris */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 0.85rem;
}
.list-box-v5 > .list-box-v5-item-load {
  margin-bottom: 1.5rem;
  display: flex;
  gap: 15px;
  position: relative;
}
.list-box-v5 > .list-box-v5-item-load > .list-box-v5-item-img {
  width: 170px;
  height: auto;
}
.list-box-v5 > .list-box-v5-item-load > .list-box-v5-item-img img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 1;
}
.list-box-v5 > .list-box-v5-item-load > .list-box-v5-item-text {
  width: auto;
  flex: 1;
  display: flex;
  flex-flow: column;
  justify-content: space-between;
}
.list-box-v5 > .list-box-v5-item-load > .list-box-v5-item-text .wrapper a {
  font-weight: 600;
  font-size: 1.3rem;
}
.list-box-v5 > .list-box-v5-item-load > .list-box-v5-item-text .wrapper p {
  display: -webkit-box;
  -webkit-line-clamp: 3; /* jumlah maksimum baris */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 0.85rem;
}

.tags > a {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

.komunitas {
  padding: 10px;
  background-color: #eee;
}

.section-judul {
  position: relative;
  margin-bottom: 1.5rem;
}
.section-judul h5 {
  letter-spacing: 2px;
}
.section-judul::before {
  content: "";
  width: 70%;
  height: 2px;
  position: absolute;
  left: 0;
  bottom: -8px;
  background: var(--red-text);
  z-index: 0;
}

@media (min-width: 768px) and (max-width: 991px) {
  .list-box-v1 > .list-box-v1-item > .list-box-v1-item-img {
    width: 205px;
    height: 115px;
  }
}
@media (max-width: 991px) {
  .list-box-v3 {
    flex-direction: row;
    overflow-x: auto;
    scroll-behavior: smooth;
    height: auto;
    overflow-y: hidden;
    padding-bottom: 10px;
    flex-wrap: nowrap;
  }
  .list-box-v3 > .list-box-v3-item {
    width: 40%;
    flex-shrink: 0;
  }
}
@media (max-width: 767px) {
  .hero {
    height: 55vh;
  }
  .hero-blur {
    display: none;
  }
  .hero > img {
    object-fit: cover;
  }
  .list-box-v2 > .list-box-v2-item {
    width: calc(50% - 15px);
  }
  .list-box-v2 > .list-box-v2-item:first-child {
    flex-flow: column;
  }
  .list-box-v2 > .list-box-v2-item:first-child > .list-box-v2-item-img {
    width: 100%;
  }
  .list-box-v3 > .list-box-v3-item {
    width: 50%;
  }
  .list-box-v5 > .list-box-v5-item:first-child > .list-box-v5-item-img img {
    aspect-ratio: 16/12;
  }
  .list-box-v5 > .list-box-v5-item:first-child > .list-box-v5-item-text .wrapper a {
    font-size: 1.3rem;
  }
  .list-box-v5 > .list-box-v5-item > .list-box-v5-item-img {
    width: 115px;
  }
  .list-box-v5 > .list-box-v5-item > .list-box-v5-item-text .wrapper a {
    font-size: 1rem;
  }
  .list-box-v5 > .list-box-v5-item > .list-box-v5-item-text .wrapper p {
    display: none;
  }
  .list-box-v5 > .list-box-v5-item-load > .list-box-v5-item-img {
    width: 115px;
  }
  .list-box-v5 > .list-box-v5-item-load > .list-box-v5-item-text .wrapper a {
    font-size: 1rem;
  }
  .list-box-v5 > .list-box-v5-item-load > .list-box-v5-item-text .wrapper p {
    display: none;
  }
}

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