*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Nunito Sans", sans-serif;
  font-weight: 300;
  background: transparent;
  color: #111110;
}

.widget-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 900px) {
  .widget-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 540px) {
  .widget-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

.crag-card {
  display: flex;
  flex-direction: column;
  padding: 24px 22px 20px;
  background: #FFFFFF;
  border: 1px solid rgba(17, 17, 16, 0.1);
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.2s, transform 0.2s;
  min-height: 210px;
}
.crag-card:hover {
  box-shadow: 0 6px 24px rgba(17, 17, 16, 0.1);
  transform: translateY(-2px);
}
.crag-card.status-active {
  --s-dot: #5AAA3A;
  --s-label: #5AAA3A;
  --s-bar: #5AAA3A;
}
.crag-card.status-recognised {
  --s-dot: #2D5016;
  --s-label: #2D5016;
  --s-bar: #2D5016;
}
.crag-card.status-progress {
  --s-dot: #C8900A;
  --s-label: #C8900A;
  --s-bar: #C8900A;
}
.crag-card.status-scoping {
  --s-dot: #888780;
  --s-label: #888780;
  --s-bar: #888780;
}
@media (max-width: 540px) {
  .crag-card {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    min-height: auto;
    padding: 18px 18px 16px;
    gap: 0;
  }
}

.card-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--s-label);
  margin-bottom: 12px;
}
@media (max-width: 540px) {
  .card-pill {
    width: 100%;
    margin-bottom: 8px;
  }
}

.card-pill-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--s-dot);
  flex-shrink: 0;
}

.card-name {
  font-family: "Raleway", sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: #111110;
  line-height: 1.05;
  margin-bottom: 10px;
}
@media (max-width: 540px) {
  .card-name {
    font-size: 22px;
    flex: 1;
    margin-bottom: 0;
    align-self: center;
  }
}

.card-subtitle {
  font-size: 13px;
  color: rgba(17, 17, 16, 0.5);
  line-height: 1.5;
  margin-bottom: 3px;
}
@media (max-width: 540px) {
  .card-subtitle {
    display: none;
  }
}

.card-council {
  font-size: 12px;
  color: rgba(17, 17, 16, 0.45);
  margin-bottom: auto;
  padding-bottom: 24px;
}
@media (max-width: 540px) {
  .card-council {
    display: none;
  }
}

.card-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 10px;
  margin-top: auto;
}
@media (max-width: 540px) {
  .card-footer {
    width: 100%;
    margin-top: 14px;
    align-items: center;
  }
}

.card-progress-wrap {
  flex: 1;
}

.card-progress-pct {
  font-family: "Raleway", sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: rgba(17, 17, 16, 0.5);
  margin-bottom: 6px;
}

.card-bar-bg {
  height: 3px;
  background: rgba(17, 17, 16, 0.08);
  border-radius: 2px;
  overflow: hidden;
}

.card-bar-fill {
  height: 100%;
  border-radius: 2px;
  background: var(--s-bar);
  transition: width 0.6s ease;
}

.widget-loading {
  padding: 40px 0;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(17, 17, 16, 0.35);
}

/*# sourceMappingURL=widget.css.map */
