.pengurus-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 20px;
  margin-bottom: 20px;
}

.pengurus-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px 0 #64A926, 0 2px 2px 0 #64A926;
  border-radius: 5px;
}

.pengurus-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}

.pengurus-title {
  font-size: 25px;
  font-weight: 600;
  margin-bottom: 0 !important;
}

.image-content-wrapper {
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 20px;
}

.pengurus-image img {
  width: 150px;
  height: 250px;
  object-fit: cover;
}

.pengurus-detail {
  background-color: #64a926 !important;
  padding: 20px;
  text-wrap: nowrap;
  border-radius: 10px;
}

.pengurus-detail a {
  color: white;
}

.pengurus-detail a:hover {
  color: #e3d5d5;
}

.pengurus-images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  justify-content: center;
  margin-bottom: 20px;
}

.pengurus-images img {
  width: 600px;
  height: 400px;
  border-radius: 10px;
  object-fit: cover;
}