/* 

page name:     /assets/css/site.css
create date:   2026-01-28
author:        john snowden

description:  site wide css file; Mobile-first spacing + tap targets

Change log

date       iits description
========   ==== =======================================
2025-01-28 jhs  initial development using - tool ref: 1


:root{
  --e-shadow: 0 10px 24px rgba(0,0,0,.08);
}

body{
  background: #f5f7fb;
}

.e-header{
  background: linear-gradient(135deg, #0d6efd 0%, #6610f2 100%);
  color: #fff;
  box-shadow: var(--e-shadow);
}

.e-brand{
  letter-spacing: .2px;
}

.e-breadcrumb{
  --bs-breadcrumb-divider: "›";
}
.e-breadcrumb .breadcrumb-item,
.e-breadcrumb .breadcrumb-item a{
  color: rgba(255,255,255,.92);
}
.e-breadcrumb .breadcrumb-item.active{
  color: rgba(255,255,255,.8);
}

.party-strip{
  display: flex;
  gap: .5rem;
  align-items: center;
  flex-wrap: wrap;
}
.party-badge{
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .35rem .6rem;
  border-radius: 999px;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.2);
  font-size: .9rem;
  user-select: none;
}
.party-icon{
  font-size: 1.15rem;
  line-height: 1;
}
.party-label{
  font-weight: 600;
}

.e-card{
  border: 0;
  border-radius: 1rem;
  box-shadow: 0 8px 18px rgba(0,0,0,.06);
}
.e-card .list-group-item{
  padding: .9rem 1rem;
}
.e-card .list-group-item a{
  text-decoration: none;
}
.tap{
  min-height: 48px; /* thumb-friendly */
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.e-footer{
  background: #111827;
  color: rgba(255,255,255,.9);
}
.e-footer a{
  color: rgba(255,255,255,.9);
  text-decoration: none;
}
.e-footer a:hover{
  text-decoration: underline;
}
.footer-divider{
  border-top: 1px solid rgba(255,255,255,.12);
}
