:root {
  /* Палитра построена на светлом фоне, графитовом тексте и холодном акценте. */
  --page-bg: #eef3f8;
  --page-bg-deep: #dde8f2;
  --surface: rgba(255, 255, 255, 0.86);
  --surface-strong: #ffffff;
  --surface-soft: #f6f8fb;
  --surface-column: rgba(255, 255, 255, 0.72);
  --line-soft: rgba(148, 163, 184, 0.18);
  --line-strong: rgba(148, 163, 184, 0.28);
  --text-main: #172033;
  --text-muted: #667085;
  --text-soft: #8b96a9;
  --accent: #1f8fff;
  --accent-dark: #155fce;
  --accent-mint: #2cb67d;
  --accent-amber: #f59e0b;
  --accent-violet: #7c5cff;
  --accent-green: #16a34a;
  --shadow-shell: 0 30px 80px rgba(15, 23, 42, 0.08);
  --shadow-panel: 0 20px 50px rgba(15, 23, 42, 0.08);
  --shadow-card: 0 18px 32px rgba(15, 23, 42, 0.08);
  --radius-2xl: 32px;
  --radius-xl: 24px;
  --radius-lg: 20px;
  --radius-md: 16px;
  --radius-sm: 12px;
}

/* Страница получает мягкий градиент и общий шрифт интерфейса. */
body.board-page {
  min-height: 100vh;
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.92) 0, transparent 32%),
    radial-gradient(circle at right 20%, rgba(31, 143, 255, 0.08) 0, transparent 20%),
    linear-gradient(180deg, var(--page-bg) 0%, var(--page-bg-deep) 100%);
  color: var(--text-main);
  font-family: "Plus Jakarta Sans", "Segoe UI", sans-serif;
}

/* Когда сайдбар открыт, запрещаем прокрутку фона, чтобы фокус оставался на панели. */
body.sidebar-open {
  overflow: hidden;
}

/* Затемнение позади сайдбара делает левую навигацию читаемой и отделённой от контента. */
.app-sidebar-backdrop {
  position: fixed;
  inset: 0;
  z-index: 39;
  border: 0;
  background: rgba(15, 23, 42, 0.22);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
}

.app-sidebar-backdrop.is-visible {
  opacity: 1;
  pointer-events: auto;
}

/* Сайдбар выезжает слева и содержит структуру всех проектов компании. */
.app-sidebar {
  position: fixed;
  inset: 0 auto 0 0;
  z-index: 40;
  width: min(390px, calc(100vw - 20px));
  padding: 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.6);
  background: rgba(249, 251, 255, 0.9);
  backdrop-filter: blur(24px);
  box-shadow: 24px 0 60px rgba(15, 23, 42, 0.14);
  transform: translateX(calc(-100% - 24px));
  transition: transform 0.26s ease;
  overflow-y: auto;
}

.app-sidebar.is-open {
  transform: translateX(0);
}

/* Верхняя часть панели даёт понятный заголовок и кнопку закрытия. */
.app-sidebar__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.app-sidebar__eyebrow {
  margin-bottom: 0.35rem;
  color: var(--text-soft);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.app-sidebar__title {
  margin: 0;
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.app-sidebar__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--text-muted);
  transition: transform 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.app-sidebar__close:hover,
.app-sidebar__close:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(31, 143, 255, 0.24);
  color: var(--accent-dark);
  outline: none;
}

/* Дерево проектов оформляем как аккуратный навигатор с группами и подпапками. */
.project-tree {
  display: grid;
  gap: 0.8rem;
}

.project-folder {
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.56);
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.04);
  overflow: hidden;
}

.project-folder--nested {
  margin-top: 0.65rem;
  margin-left: 0.6rem;
  border-radius: 16px;
  background: rgba(246, 248, 251, 0.9);
  box-shadow: none;
}

.project-folder__summary {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.85rem 1rem;
  cursor: pointer;
  list-style: none;
  user-select: none;
}

.project-folder__summary::-webkit-details-marker {
  display: none;
}

.project-folder__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 10px;
  background: rgba(31, 143, 255, 0.1);
  color: var(--accent-dark);
  font-size: 0.95rem;
  flex: 0 0 auto;
}

.project-folder--nested .project-folder__icon {
  background: rgba(245, 158, 11, 0.12);
  color: #b45309;
}

.project-folder__label {
  flex: 1 1 auto;
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--text-main);
}

.project-folder__summary::after {
  content: "\F282";
  font-family: "bootstrap-icons";
  font-size: 0.8rem;
  color: var(--text-soft);
  transition: transform 0.18s ease;
}

.project-folder[open] > .project-folder__summary::after {
  transform: rotate(180deg);
}

.project-folder__body {
  display: grid;
  gap: 0.2rem;
  padding: 0 0.6rem 0.7rem 0.6rem;
}

.project-link {
  display: flex;
  align-items: center;
  min-height: 38px;
  padding: 0.55rem 0.8rem;
  border-radius: 12px;
  color: var(--text-muted);
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  transition: background-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.project-link:hover,
.project-link:focus-visible {
  background: rgba(31, 143, 255, 0.08);
  color: var(--text-main);
  transform: translateX(2px);
  outline: none;
}

/* Внешняя обёртка помогает удержать приложение в одной визуальной системе. */
.board-app {
  min-height: 100vh;
  padding: 0 18px 18px;
}

/* Внутри приложения оставляем общий холст, но без внешней рамки и обводки. */
.container-fluid {
  position: relative;
  min-height: calc(100vh - 18px);
  padding-top: 10px;
  padding-bottom: 28px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: hidden;
}

/* Декоративные пятна на фоне оживляют страницу, но не мешают рабочему контенту. */
.container-fluid::before,
.container-fluid::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(4px);
  pointer-events: none;
}

.container-fluid::before {
  top: -120px;
  right: 8%;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(31, 143, 255, 0.14) 0, transparent 70%);
}

.container-fluid::after {
  bottom: -150px;
  left: -80px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(44, 182, 125, 0.14) 0, transparent 70%);
}

/* Верхняя панель оформлена как отдельная стеклянная карточка приложения. */
.topbar {
  position: relative;
  z-index: 30;
  padding: 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-panel);
  overflow: visible;
}

/* Внутри шапки размещаем левый триггер сайдбара и правый набор быстрых действий. */
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.topbar__start,
.topbar__end {
  display: inline-flex;
  align-items: center;
}

.topbar-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
}

.topbar-brand__label {
  color: var(--text-main);
  font-size: 1.22rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.topbar__end {
  margin-left: auto;
}

/* Иконки справа превращаем в аккуратные круглые контролы с hover-состоянием. */
.topbar-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.65rem;
}

.topbar-search {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

/* Контейнер уведомлений нужен для позиционирования выпадающей панели. */
.topbar-notifications {
  position: relative;
}

/* Контейнер инпута живёт слева от иконки поиска и раскрывается по клику. */
.topbar-search__form {
  width: 0;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  transform: translateX(10px);
  transition: width 0.24s ease, opacity 0.18s ease, transform 0.24s ease;
}

.topbar-search.is-open .topbar-search__form {
  width: min(32vw, 320px);
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

/* Инпут поиска стилизуем в духе остальной шапки: мягкая капсула, но компактнее. */
.topbar-search__input {
  height: 42px;
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  padding-inline: 0.9rem;
  background: rgba(246, 248, 251, 0.96);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92);
  color: var(--text-main);
  font-size: 0.88rem;
  font-weight: 600;
}

.topbar-search__input::placeholder {
  color: var(--text-soft);
  font-weight: 500;
}

.topbar-search__input:focus {
  border-color: rgba(31, 143, 255, 0.24);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(31, 143, 255, 0.08);
}

/* Маленькая точка на колокольчике показывает, что есть непрочитанные события. */
.topbar-notifications__toggle {
  position: relative;
}

.topbar-notifications__dot {
  position: absolute;
  top: 9px;
  right: 10px;
  width: 8px;
  height: 8px;
  border: 2px solid #ffffff;
  border-radius: 50%;
  background: #ef4444;
}

/* Выпадающая панель уведомлений привязана к правой части шапки и раскрывается под колокольчиком. */
.notifications-panel {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  z-index: 80;
  width: min(420px, calc(100vw - 48px));
  padding: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(22px);
  box-shadow: 0 22px 50px rgba(15, 23, 42, 0.14);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.2s ease, transform 0.22s ease;
}

.topbar-notifications.is-open .notifications-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.notifications-panel__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0 0.15rem 0.85rem;
}

.notifications-panel__title {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.notifications-panel__actions {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.notifications-panel__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 12px;
  background: rgba(246, 248, 251, 0.96);
  color: var(--text-muted);
  font-size: 0.98rem;
  transition: transform 0.18s ease, color 0.18s ease, border-color 0.18s ease, background-color 0.18s ease;
}

.notifications-panel__icon:hover,
.notifications-panel__icon:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(31, 143, 255, 0.22);
  background: #ffffff;
  color: var(--accent-dark);
  outline: none;
}

/* Список уведомлений прокручивается внутри панели, чтобы dropdown не становился слишком длинным. */
.notifications-list {
  display: grid;
  max-height: min(60vh, 520px);
  overflow-y: auto;
}

.notification-item {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 0.85rem;
  padding: 0.95rem 0.15rem;
  border-top: 1px solid rgba(148, 163, 184, 0.14);
}

.notification-item:first-child {
  border-top: 1px solid rgba(148, 163, 184, 0.14);
}

.notification-item--unread {
  background: linear-gradient(90deg, rgba(31, 143, 255, 0.05) 0%, transparent 100%);
}

/* Аватарки пока статические, но уже выглядят как нормальные user chips. */
.notification-item__avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.notification-item__avatar--blue {
  background: linear-gradient(135deg, #1f8fff 0%, #155fce 100%);
}

.notification-item__avatar--mint {
  background: linear-gradient(135deg, #2cb67d 0%, #178f60 100%);
}

.notification-item__avatar--amber {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.notification-item__avatar--slate {
  background: linear-gradient(135deg, #64748b 0%, #475569 100%);
}

.notification-item__content {
  min-width: 0;
}

.notification-item__date {
  margin-bottom: 0.35rem;
  color: var(--text-soft);
  font-size: 0.76rem;
  font-weight: 800;
}

.notification-item__text {
  margin: 0 0 0.5rem;
  color: var(--text-main);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.5;
}

.notification-item__mention {
  color: var(--accent-dark);
}

.notification-item__meta {
  margin: 0.16rem 0 0;
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.45;
}

.topbar-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.7);
  color: var(--text-main);
  font-size: 1.05rem;
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.topbar-action:hover,
.topbar-action:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(31, 143, 255, 0.28);
  box-shadow: 0 14px 24px rgba(15, 23, 42, 0.09);
  outline: none;
}

.topbar-action--menu {
  font-size: 1.4rem;
}

.topbar-action--profile {
  font-size: 1.25rem;
}

/* Основной контент отделяем от шапки крупным воздухом. */
.board-content {
  position: relative;
  z-index: 1;
  padding: 22px 10px 0;
}

/* Блок заголовка остаётся на том же месте, но теперь создаёт более премиальный тон страницы. */
.project-intro {
  margin-bottom: 28px;
  padding-inline: 12px;
}

.project-intro__heading {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.project-intro__title {
  margin: 0;
  font-size: clamp(2.1rem, 3vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 1.02;
}

.project-intro__action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-top: 0.15rem;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--text-muted);
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.project-intro__action:hover,
.project-intro__action:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(31, 143, 255, 0.24);
  color: var(--accent-dark);
  box-shadow: 0 14px 24px rgba(15, 23, 42, 0.09);
  outline: none;
}

/* Сетка колонок остаётся слева, сохраняя свободное пространство справа как на скетче. */
.board-grid {
  align-items: stretch;
  width: 100%;
  padding-inline: 12px;
}

/* Каждую колонку делаем полупрозрачной панелью с мягкой глубиной. */
.board-column {
  position: relative;
  min-height: 700px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--radius-xl);
  background: var(--surface-column);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-panel);
  overflow: hidden;
}

/* Цветной верхний отсвет помогает отличать типы колонок без перегруза интерфейса. */
.board-column::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  opacity: 0.9;
}

.board-column--queue::before {
  background: linear-gradient(90deg, #94a3b8 0%, rgba(148, 163, 184, 0.2) 100%);
}

.board-column--progress::before {
  background: linear-gradient(90deg, var(--accent-amber) 0%, rgba(245, 158, 11, 0.2) 100%);
}

.board-column--review::before {
  background: linear-gradient(90deg, var(--accent-mint) 0%, rgba(44, 182, 125, 0.2) 100%);
}

.board-column--done::before {
  background: linear-gradient(90deg, var(--accent-violet) 0%, rgba(124, 92, 255, 0.2) 100%);
}

/* Заголовок колонки объединяет название, подпись и счётчик. */
.board-column__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.board-column__title {
  margin: 0;
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.board-column__count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.2rem;
  height: 2.2rem;
  padding: 0 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--text-main);
  font-size: 0.9rem;
  font-weight: 800;
  box-shadow: inset 0 0 0 1px var(--line-soft);
}

/* Список задач внутри колонки укладываем простой вертикальной сеткой. */
.board-column__tasks {
  display: grid;
  gap: 0.75rem;
}

/* Карточка задачи получает более насыщенную структуру, но остаётся визуально лёгкой. */
.task-card {
  padding: 0.8rem 0.85rem;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, var(--surface-strong) 0%, var(--surface-soft) 100%);
  box-shadow: var(--shadow-card);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.task-card:hover {
  transform: translateY(-3px);
  border-color: rgba(31, 143, 255, 0.22);
  box-shadow: 0 22px 34px rgba(15, 23, 42, 0.1);
}

.task-card--focus {
  border-color: rgba(44, 182, 125, 0.2);
  background: linear-gradient(180deg, #ffffff 0%, #f3fbf8 100%);
}

/* Верх карточки содержит тип и состояние задачи. */
.task-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.6rem;
}

/* Заголовок карточки и дополнительный текст дают нужную иерархию контента. */
.task-card__title {
  flex: 1 1 auto;
  margin: 0;
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.task-card__deadline {
  flex: 0 0 auto;
  margin-top: 0.02rem;
  padding: 0.22rem 0.55rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.06);
  color: var(--text-muted);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

/* Цвет дедлайна теперь можно задавать модификатором в зависимости от срочности задачи. */
.task-card__deadline--gray {
  background: rgba(100, 116, 139, 0.12);
  color: #667085;
}

.task-card__deadline--yellow {
  background: rgba(245, 158, 11, 0.16);
  color: #b45309;
}

.task-card__deadline--red {
  background: rgba(239, 68, 68, 0.14);
  color: #b42318;
}

.task-card__text {
  margin: 0 0 0.7rem;
  color: var(--text-muted);
  font-size: 0.84rem;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

/* Низ карточки собирает мета-информацию в одну читаемую строку. */
.task-card__footer {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.85rem;
  padding-top: 0.7rem;
  border-top: 1px solid var(--line-soft);
}

.task-card__meta {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--text-soft);
  font-size: 0.76rem;
  font-weight: 700;
}

.task-card__meta i {
  font-size: 0.82rem;
}

/* На ноутбуках чуть снижаем высоту колонок, чтобы страница была компактнее. */
@media (max-width: 1399.98px) {
  .board-column {
    min-height: 640px;
  }
}

/* На планшетах упрощаем отступы и позволяем колонкам занимать больше ширины. */
@media (max-width: 991.98px) {
  .board-app {
    padding: 0 12px 12px;
  }

  .container-fluid {
    min-height: calc(100vh - 12px);
    padding-top: 8px;
  }

  .topbar {
    padding: 10px 14px;
  }

  .topbar-actions {
    justify-content: flex-start;
  }

  .app-sidebar {
    width: min(360px, calc(100vw - 16px));
    padding: 14px;
  }

  .topbar-search.is-open .topbar-search__form {
    width: min(52vw, 280px);
  }

  .notifications-panel {
    width: min(420px, calc(100vw - 36px));
  }

  .board-content {
    padding-top: 20px;
  }

  .board-grid {
    width: 100%;
  }

  .board-column {
    min-height: 520px;
  }
}

/* На телефонах уменьшаем плотность интерфейса, не ломая общую композицию. */
@media (max-width: 575.98px) {
  .board-app {
    padding: 0 0 12px;
  }

  .container-fluid {
    min-height: calc(100vh - 12px);
    padding-top: 0;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .app-sidebar {
    width: calc(100vw - 8px);
    padding: 12px;
  }

  .topbar-brand {
    gap: 0.6rem;
  }

  .topbar-brand__label {
    font-size: 1.08rem;
  }

  .topbar {
    border: 0;
    border-radius: 0;
    box-shadow: none;
    padding: 10px 12px;
  }

  .topbar-action {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .topbar-action--menu {
    font-size: 1.25rem;
  }

  .topbar-search {
    gap: 0.5rem;
  }

  .topbar-search.is-open .topbar-search__form {
    width: min(58vw, 220px);
  }

  .topbar-search__input {
    height: 40px;
    font-size: 0.86rem;
  }

  .notifications-panel {
    right: -40px;
    width: min(92vw, 380px);
    padding: 0.75rem;
  }

  .notifications-panel__icon {
    width: 34px;
    height: 34px;
  }

  .notification-item {
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 0.7rem;
  }

  .notification-item__avatar {
    width: 40px;
    height: 40px;
    font-size: 0.74rem;
  }

  .project-intro {
    margin-bottom: 22px;
    padding-inline: 12px;
  }

  .project-intro__title {
    font-size: 2rem;
  }

  .project-intro__heading {
    gap: 0.65rem;
  }

  .project-intro__action {
    width: 40px;
    height: 40px;
    border-radius: 12px;
  }

  .board-grid {
    --bs-gutter-x: 0;
    --bs-gutter-y: 0;
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: visible;
    gap: 12px;
    padding-inline: 12px;
    padding-bottom: 6px;
    margin-inline: 0;
    scroll-snap-type: x proximity;
    scroll-padding-inline: 12px;
    -webkit-overflow-scrolling: touch;
  }

  .board-grid > [class*="col-"] {
    flex: 0 0 88vw;
    width: 88vw;
    min-width: 88vw;
    max-width: 88vw;
    padding-inline: 0;
    scroll-snap-align: start;
  }

  .board-column {
    min-height: auto;
    padding: 14px;
    height: 100%;
  }

  .board-column__title {
    font-size: 1.3rem;
  }

  .task-card {
    padding: 0.75rem 0.8rem;
  }
}
