.pepak-content-bottom-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .pepak-content-bottom-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.pepak-item {
  background: white;
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 1.2rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.3s, box-shadow 0.3s;
}

.pepak-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.pepak-item a{
	color:black;
	text-decoration:none;
}

.pepak-item a:hover{
	color:#13967D;
	text-decoration:underline;
}

.pepak-item h3 {
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-bottom: 2px solid #ddd;
  padding-bottom: 0.4rem;
}

.pepak-item ul {
  flex-grow: 1;
  list-style-type: circle;
  padding-left: 1.2rem;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #444;
}

.pepak-more-wrapper {
  margin-top: auto;
  text-align: right;
}

.pepak-more {
  align-self: flex-end;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.9rem;
  color: #0074cc;
  transition: color 0.2s;
}

.pepak-more:hover {
  color: #005999;
}

/* Optional: example icon fonts */
.icon-book::before { content: "\1F4D6"; }       /* 📖 */
.icon-lightbulb::before { content: "\1F4A1"; }  /* 💡 */
.icon-star::before { content: "\2B50"; }        /* ⭐ */
.icon-heart::before { content: "\2764"; }       /* ❤ */