/* ================================
   BOARDS MAIN VIEW
================================ */

.boards-view {
  width: min(780px, 100%);
  margin: 0 auto;
  padding: 28px 24px 40px;
  min-height: 100%;
  color: var(--text);
  background: transparent;
}

.boards-view .location-title {
  margin-bottom: 26px;
  text-align: center;
}

.boards-view .location-name {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: rgba(243, 238, 248, 0.94);
}

.boards-group {
  margin-bottom: 30px;
}

.boards-group:last-child {
  margin-bottom: 0;
}

.boards-group-title {
  margin: 0 0 8px;
  padding-bottom: 6px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.90rem;
  font-weight: 400;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: #b796ff;
  border-bottom: 1px solid rgba(197, 167, 255, 0.08);
}

.boards-group-list {
  display: flex;
  flex-direction: column;
}

.board-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;

  padding: 12px 0;
  border-bottom: 1px solid rgba(197, 167, 255, 0.05);

  text-decoration: none;
  color: inherit;

  transition: opacity 160ms ease, transform 160ms ease;
}

.board-row:hover {
  opacity: 0.92;
  transform: translateX(2px);
}

.board-main {
  min-width: 0;
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: nowrap;
}

.board-bullet {
  color: #b796ff;
  font-size: 0.88rem;
  line-height: 1;
  flex-shrink: 0;
}

.board-name {
  color: rgba(243, 238, 248, 0.92);
  font-size: 0.80rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  flex-shrink: 0;
}

.board-slash {
  color: rgba(183, 174, 200, 0.55);
  font-size: 0.78rem;
  flex-shrink: 0;
}

.board-description {
  color: rgba(243, 238, 248, 0.48);
  font-size: 0.74rem;
  font-style: italic;
  line-height: 1.35;
  min-width: 0;

  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.board-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;

  color: rgba(243, 238, 248, 0.62);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.70rem;
  line-height: 1;
}

.board-count,
.board-last {
  white-space: nowrap;
}

.board-meta-separator {
  color: rgba(243, 238, 248, 0.28);
  font-size: 0.52rem;
}

@media (max-width: 820px) {
  .boards-view {
    padding: 24px 10px 30px;
  }

  .boards-view .location-name {
    font-size: 1.38rem;
  }

  .board-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
    padding: 10px 0;
  }

  .board-main {
    width: 100%;
    flex-wrap: wrap;
    gap: 6px;
  }

  .board-description {
    white-space: normal;
    overflow: visible;
    text-overflow: unset;
  }

  .board-meta {
  width: 100%;
  padding-left: 0;
  justify-content: flex-end;
  text-align: right;
}
}
