/* =========================================================
   DASHBOARD
========================================================= */

.dashboard{
  padding: 120px 0 60px;
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
}

.dashboard-header{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 40px;
}

.dashboard-tag{
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(139,92,246,.12);
  border: 1px solid rgba(139,92,246,.25);
  color: #a78bfa;
  font-size: .75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.dashboard h1{
  margin-top: 14px;
  font-size: clamp(2.6rem, 5vw, 4.5rem);
}

.dashboard-cards{
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
  margin-bottom: 50px;
}

.dashboard-card{
  padding: 28px;
  border-radius: 24px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(14px);
}

.dashboard-card span{
  display: block;
  color: #9ca3af;
  margin-bottom: 14px;
}

.dashboard-card strong{
  font-size: 2.4rem;
  color: #fff;
}

.dashboard-list-header{
  margin-bottom: 24px;
}

.briefings-grid{
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 20px;
}

.briefing-item{
  padding: 24px;
  border-radius: 24px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
}

.briefing-item h3{
  margin-bottom: 10px;
}

.briefing-item p{
  color: #aeb9d6;
  margin-bottom: 8px;
}

.briefing-badge{
  display: inline-flex;
  margin-top: 12px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(139,92,246,.15);
  color: #c4b5fd;
  font-size: .75rem;
  font-weight: 700;
}

@media(max-width: 900px){

  .dashboard-cards{
    grid-template-columns: 1fr;
  }

  .briefings-grid{
    grid-template-columns: 1fr;
  }

  .dashboard-header{
    flex-direction: column;
    align-items: start;
  }

}

