/* Event Report Single Page */

.event-report-single {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 20px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  line-height: 1.7;
}

.event-flex-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 30px;
}

.event-left-column {
  flex: 1;
  min-width: 300px;
}

.event-right-column {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.event-date {
  font-size: 1.2em;
  font-weight: bold;
  margin-bottom: 10px;
}

.event-body-text {
  font-size: 1em;
}

.event-hero-image {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.event-meta-right {
  display: block;
  text-align: right;
  width:100%;
  margin-top: 20px;
  border-top: 1px solid #ddd;
  padding-top: 10px;
}

.author-avatar {
  border-radius: 50%;
  vertical-align: middle;
  margin-right: 10px;
}

.author-name {
  font-size: 1em;
  color: #555;
}

.post-date {
  display: inline-block;
  font-size: 0.9em;
  color: #888;
  margin-top: 5px;
}

.event-back-link {
  text-align: center;
  margin-top: 40px;
}

.event-back-link a {
  display: inline-block;
  text-decoration: none;
  background: #0073aa;
  color: #fff;
  padding: 12px 25px;
  border-radius: 5px;
  transition: background 0.3s ease;
}

.event-back-link a:hover {
  background: #005f8a;
}



/* Event Report Archive Horizontal Card */

.event-list {
  list-style: none;
  margin: 0;
  padding: 0;
  width:100%
}

.event-item-horizontal {
  border: 1px solid #eee;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 20px;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.event-item-horizontal:hover {
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  transform: translateY(-3px);
}

.event-card-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
}

.event-thumb img {
  width: 180px;
  height: 120px;
  object-fit: cover;
  flex-shrink: 0;
}

.event-info-horizontal {
  padding: 20px;
  flex: 1;
}

.event-date {
  font-size: 1em;
  margin: 0 0 5px;
  color: #555;
}

.event-name {
  font-size: 1.3em;
  margin: 0 0 10px;
  color: #333;
}

.event-meta {
  display: flex;
  align-items: center;
  font-size: 0.9em;
  color: #666;
  margin-bottom: 10px;
}

.author-avatar {
  border-radius: 50%;
  margin-right: 8px;
}

.author-name {
  margin-right: 15px;
}

.post-date {
  color: #888;
}

.event-detail-link {
  display: inline-block;
  margin-top: 5px;
  color: #0073aa;
  font-weight: bold;
}

.event-detail-link:hover {
  text-decoration: underline;
}

.pagination {
  text-align: center;
  margin-top: 30px;
}

.pagination a,
.pagination span {
  display: inline-block;
  padding: 8px 14px;
  margin: 0 2px;
  background: #f0f0f0;
  color: #333;
  text-decoration: none;
  border-radius: 4px;
}

.pagination a:hover {
  background: #0073aa;
  color: #fff;
}

.archive-title {
  font-size: 1.5em;
  margin-bottom: 20px;
  text-align: center;
  color: #333;
}
.event-report-archive {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}