section.hero {
  position: relative;
  height: 80vh;
  max-height: 800px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("../../../../assets/img/pojok-himsi-banner.jpg");
}
section.hero::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background-color: hsla(0, 0%, 0%, 0.6);
}
section.hero .container {
  display: flex;
  align-items: center;
  height: 100%;
}
section.hero .container .hero__content {
  color: #fff;
  display: flex;
  flex-direction: column;
  row-gap: 1rem;
  max-width: 700px;
}
section.hero .container .hero__content .hero__title {
  font-size: var(--big-font-size);
  font-weight: var(--font-bold);
}
section.hero .container .hero__content .button {
  padding: 3% 5%;
}

section.pojokHimsi .container .section__title {
  position: relative;
  margin-bottom: 6.5rem;
}
section.pojokHimsi .container .section__title .periode__nav {
  position: absolute;
  bottom: -2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.75rem;
}
section.pojokHimsi .container .section__title .periode__nav .button--link {
  font-weight: 500;
  color: #000;
}
section.pojokHimsi .container .section__title .periode__nav .button--link.active {
  font-weight: var(--font-bold);
  color: var(--first-color);
}
section.pojokHimsi .container .pojokHimsi__content {
  display: flex;
  flex-direction: column;
  row-gap: 2.5rem;
}
section.pojokHimsi .container .pojokHimsi__item {
  background: #fff;
  box-shadow: 0 2px 6px rgba(65, 11, 16, 0.15);
  padding: 5%;
}
section.pojokHimsi .container .pojokHimsi__item .grid__container {
  display: grid;
  row-gap: 1rem;
  align-items: center;
}
section.pojokHimsi .container .pojokHimsi__item .grid__container .pojokHimsi__img {
  max-height: 350px;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  overflow: hidden;
}
section.pojokHimsi .container .pojokHimsi__item .grid__container .pojokHimsi__data {
  display: flex;
  flex-direction: column;
  row-gap: 0.75rem;
}
section.pojokHimsi .container .pojokHimsi__item:hover {
  box-shadow: 0 3px 12px rgba(65, 11, 16, 0.15);
}
section.pojokHimsi .container .pagination {
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  row-gap: 0.5rem;
  margin-top: 3rem;
  justify-content: center;
}
section.pojokHimsi .container .pagination a {
  font-weight: var(--font-medium);
}
section.pojokHimsi .container .pagination a.active {
  color: var(--first-color);
}

@media screen and (min-width: 768px) {
  section.pojokHimsi .container .pojokHimsi__item {
    padding: 2rem;
  }
  section.pojokHimsi .container .pojokHimsi__item .grid__container {
    grid-template-columns: 40% 57%;
    -moz-column-gap: 3%;
         column-gap: 3%;
  }
  section.pojokHimsi .container .pojokHimsi__item .grid__container .pojokHimsi__img {
    max-height: 300px;
  }
}/*# sourceMappingURL=pojok-himsi.css.map */