.cep-events-grid {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 20px;
}
.cep-event-box {
  display: flex;
  border-top: 2px solid #e06b20;
  padding-top: 10px;
  gap: 20px;
}
.cep-date-block {
  text-align: center;
  color: #e06b20;
  font-weight: bold;
  min-width: 60px;
}
.cep-month {
  font-size: 12px;
  text-transform: uppercase;
}
.cep-day {
  font-size: 24px;
}
.cep-title {
  font-size: 18px;
  font-weight: bold;
  margin: 0 0 5px 0;
}
.cep-event-right {
  flex-grow: 1;
}
.cep-location,
.cep-time {
  font-size: 14px;
  color: #333;
}
.cep-single-wrapper {
  max-width: 1140px;
  margin: 40px auto;
  padding: 0 20px;
}
.cep-single-grid {
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
}
.cep-single-left {
  flex: 1;
  color: #e06b20;
  font-weight: bold;
  text-align: left;
  min-width: 150px;
}
.cep-single-left .cep-date {
  font-size: 22px;
  margin-bottom: 15px;
}
.cep-single-left .cep-meta {
  font-weight: normal;
  font-size: 14px;
  color: #333;
  text-align: left;
  margin: 10px 0;
}
.cep-single-right {
  flex: 3;
}
.cep-title {
  font-size: 26px;
  color: #e06b20;
  margin-bottom: 10px;
}
.cep-categories {
  margin-bottom: 10px;
}
.cep-category {
  background: #eee;
  color: #333;
  padding: 2px 8px;
  font-size: 12px;
  margin-right: 5px;
  border-radius: 3px;
}
.cep-description {
  margin-bottom: 20px;
  text-align: justify;
}
.cep-gallery img {
  width: 100px;
  height: auto;
  margin: 5px;
  cursor: pointer;
}
.cep-gallery-popup {
  display: none;
  position: fixed;
  z-index: 9999;
  background: rgba(0,0,0,0.8);
  top: 0; left: 0; right: 0; bottom: 0;
  justify-content: center;
  align-items: center;
}
.cep-gallery-popup img {
  max-width: 90%;
  max-height: 90%;
}
