/* Center content on proceedings page */
.content-page .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Limit width & keep left-aligned */
.proceedings-content {
  width: 100%;
  max-width: 700px;
  text-align: left;
}

/* Toolbar above list */
.proceedings-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.proceedings-toolbar span {
  font-size: 0.9rem;
  color: var(--muted-text);
}

/* One card per row list */
.proceedings-list {
  max-width: 685px;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.proceedings-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1.2rem;
  border: 1px solid var(--border-color);
  border-radius: 10px;
  background-color: #ffffff;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.05);
}

/* Left side: year + name + location */
.proc-left {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.proc-year {
  font-size: 0.8rem;
  color: var(--secondary-color);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 600;
}

.proc-name {
  font-family: var(--font-family-heading);
  font-weight: 600;
  font-size: 1rem;
  margin: 0.1rem 0 0.2rem;
}

.proc-separator {
  color: var(--muted-text);
}

.proc-location {
  color: var(--muted-text);
  font-size: 0.9rem;
}

.proc-meta {
  font-size: 0.82rem;
  color: var(--muted-text);
}

/* Links on right or below */
.proc-links {
  margin-top: 0.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.85rem;
}

/* Generic link chip */
.proc-link-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  border: 1px solid var(--border-color);
  background-color: var(--light-color);
  color: var(--secondary-color);
  font-weight: 500;
}

.proc-link-chip i {
  font-size: 0.85rem;
}

.proc-link-chip[aria-disabled="true"] {
  opacity: 0.6;
  cursor: default;
}

/* Inline text link (if you keep it) */
.proc-link {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--secondary-color);
  white-space: nowrap;
}

.proc-link:hover {
  text-decoration: underline;
}

.proc-location {
  display: block;
}

.proc-location-line {
  display: block;
  line-height: 1.25;
}

.proc-location-line + .proc-location-line {
  margin-top: 0.15rem;
  opacity: 0.85;
  font-size: 0.95em;
}
