main {
  width: 100%;
  /* background: #f1f9ff; */
  background: #ddedf9;
  padding-block: 60px;
  display: flex;
  flex-direction: column;
  gap: 35px;
}

section {
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
}

.header-faqs {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.header-faqs h1::after {
  content: "";
  height: 5px;
  width: 400px;
  border-radius: 5px;
  background: var(--secondary-color);
  position: absolute;
  bottom: 0;
  left: 0;
}

.header-faqs h1 {
  font-size: 44px;
  font-weight: 900;
  color: var(--primary-color);
}



.poster-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 48px;
}

.keluaran-gambar {
  width: 100%;
  aspect-ratio: 225/338;
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  background-color: #fff;
}


.keluaran-gambar > img {
  height: auto;
  top: auto;
  bottom: auto;
  margin-top: auto;
  margin-bottom: auto;

}

.title-keluaran-cover{
  position: absolute;
  background-color: var(--primary-color);
  width: 100%;
  padding: 10px;
  color: #fff;
  text-align: center;
  font-size: 16px;
  border-bottom: 5px solid var(--secondary-color);
}

.keluaran-doc {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: black;
  margin-top: 10px;
}

.keluaran-doc > h3 {
  font-size: var(--text-base);
  line-height: var(--text-height-base);
  font-weight: 700;
}

.keluaran-doc > p {
  font-size: var(--text-sm);
  line-height: var(--text-height-sm);
  font-weight: 500;
}

.keluaran-pagination {
  display: flex;
  margin-inline: auto;
  align-items: center;
  gap: 16px;
  margin-top: 48px;
}

.keluaran-pagination button {
  height: 36px;
  width: 36px;
  background: var(--secondary-color);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.keluaran-pagination button svg {
  height: 24px;
  width: 24px;
  fill: var(--primary-color);
}

.keluaran-pagination p {
  font-size: var(--text-base);
  line-height: var(--text-height-base);
  font-weight: 600;
}


