/* Agenda Section Styles */
.agenda-posts {
  max-width: 1200px;
  margin: 2rem auto;
  padding-left: 0;
  padding-right: 0;
}

.agenda-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.agenda-item {
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #eee;
}

.agenda-item:last-child {
  border-bottom: none;
}

.agenda-item .agenda-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 0 .5rem;
  line-height: 1.3;
}

.agenda-item .agenda-title a {
  color: var(--color-text);
  text-decoration: none;
}

.agenda-item .agenda-title a:hover {
  text-decoration: underline;
}

.agenda-item .agenda-excerpt {
  font-size: .95rem;
  line-height: 1.6;
  color: #555;
  margin: 0;
}

@media (max-width: 800px) {
  .agenda-list {
    padding: 0 1rem;
  }
  .agenda-item .agenda-title {
    font-size: 1.1rem;
  }
}