.acara-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
  padding: 40px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  border-radius: 5px;
}

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

.acara-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;
}

.acara-image img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  clip-path: circle();
}

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

.acara-detail a {
  color: white;
}

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

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

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

.event-info {
  display: flex;
  justify-content: space-evenly;
  margin: 20px 0;
}

.event-info .single-info {
  display: flex;
  align-items: center;
  gap: 20px;
}

.single-info i {
  font-size: 4rem;
  color: rgb(141, 141, 141);
}

.single-info .second-column {
  font-size: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.second-column div {
  font-weight: 500;
}
.second-column div:first-child {
  font-weight: 200;
}