.pitchdeck-board {
  display: flex;
  overflow-x: auto;
  background: #ffffff;
  color: white;
  height: 90vh;
}

.columns {
  display: flex;
}

.column {
  min-width: 320px;
  margin: 10px;
  background: #1e293b;
  border-radius: 8px;
  padding: 10px;
}

.column-header {
  font-size: 16px;
  font-weight: 700;
  font-family: Jost;
  padding: 8px 10px;
  margin-bottom: 10px;
  background: #020617;
  border-radius: 6px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #e5e7eb;
}

.swimlane {
  margin-bottom: 12px;
}

.swimlane-title {
  font-size: 12px;
  text-transform: uppercase;
  color: #94a3b8;
}

.card-container {
  min-height: 60px;
  background: #020617;
  border-radius: 6px;
  padding: 6px;
}

.card {
  background: #c6d3dc;
  margin: 4px 0;
  padding: 6px;
  border-radius: 4px;
  cursor: grab;
  font-family: Jost;
  line-height: 1.5rem;
}

.audit-rail {
  width: 260px;
  background: #020617;
  padding: 10px;
  overflow-y: auto;
  color: #ffffff;
}

.audit-rail h3.fusion-responsive-typography-calculated {
  color: #ffffff;
}

.audit-rail .activity-item {
  font-size: 15px;
  padding-bottom: 15px;
}

/* Card layout */
.card-inner {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 8px;
  align-items: center;
}

/* Image column */
.card-image {
  width: 44px;
  height: 44px;
  border-radius: 6px;
  overflow: hidden;
  background: #020617;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Placeholder if no image */
.image-placeholder {
  width: 100%;
  height: 100%;
  background: #334155;
  border-radius: 6px;
}

/* Content column */
.card-content {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

/* Name + grad year */
.card-name {
  font-size: 19px;
  font-weight: 600;
  color: #020617;
}

.grad-year {
  font-weight: 500;
  color: #475569;
  margin-left: 4px;
}

/* Club name */
.card-meta {
  font-size: 16px;
  color: #475569;
  margin-top: 2px;
}

/* Keep cards compact */
.card {
  padding: 6px;
}

.pitchdeck-board-title {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0 0 16px;
}

.pitchdeck-school-logo {
  display: block;
  width: 75px;
  height: auto;
}

.pitchdeck-board-title {
  display: flex !important;
  align-items: center !important;
  gap: 16px;

  /* Kill Avada typography interference */
  line-height: normal !important;
}

.pitchdeck-board-title img {
  display: block !important;
  margin: 0 !important;
  align-self: center !important;
}

.pitchdeck-board-title span {
  display: inline-block;
  line-height: 1.2;
  font-family: Jost;
  text-transform: uppercase;
}

.pitchdeck-board-title br {
  display: none;
}

