#homepage-gaujes {
  padding: 3rem 0;
  text-align: center;
}

.bn-campaigns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;

  max-width: 768px;
  margin: 0 auto;
}

.bn-wrap {
  max-width: none;
}

@media (max-width:640px) {

  .bn-campaigns {
    grid-template-columns: 1fr;
  }

}

.bn-wrap {
  box-sizing: border-box;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid #ebebeb;
  border-radius: 6px;
  padding: 2rem;
}

.bn-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.bn-visual {
  width: 100%;
  margin-bottom: 1.5rem;
}

.bn-gauge {
  max-width: 200px;
  margin: 0 auto;
}




.bn-text {
  width: 100%;

}





.bn-heart {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
}

.bn-heart svg {
  display: block;
}

.bn-heart-bg {
  fill: #ce1719;
  opacity: 0.18;
}

.bn-heart-fill {
  fill: #ce1719;
}

.bn-title {
  font-size: 1.4rem;
  font-weight: 500;
  color: #1a1a1a;
  line-height: 1.35;
  margin: 0 0 .9rem;
  text-transform: uppercase;
  letter-spacing: .01em;
  margin-bottom: 2rem !important;
}

.bn-title span {
  color: #ce1719;
}

.bn-body {
  font-size: .9rem;
  color: #555;
  line-height: 1.4 !important;
  margin: 0 0 1.5rem;
  text-align: left;
}

.bn-btn,
.bn-wrap .btn {
  display: inline-block;
  padding: .65rem 1.75rem;
  background: #ce1719;
  color: #fff;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.bn-btn:hover,
.bn-wrap .btn:hover {
  background: #a81214;
  color: #fff;
}

.bn-amounts {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: .5rem;
  text-align: left;
}

.bn-collected {
  font-size: 17px;
  font-weight: 500;
  color: #1a1a1a;
}

.bn-pct {
  font-size: 17px;
  font-weight: 500;
  color: #ce1719;
}

.bn-sublabel {
  font-size: 10px;
  color: #999;
  margin-top: 2px;
}

.bn-footer {
  font-size: 11px;
  color: #999;
  border-top: 1px solid #ebebeb;
  padding-top: .5rem;
  margin-top: .35rem;
  text-align: center;
}

.bn-footer strong {
  color: #1a1a1a;
  font-weight: 500;
}

@media (max-width: 768px) {

  .bn-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .bn-visual {
    max-width: 240px;
    margin: 0 auto;
  }

  .bn-wrap {
    padding: 1.5rem 1.25rem;
  }

}