
/* buttons.css - shared button styles */
.btn {
  display: inline-block;
  padding: .65rem 1.2rem;
  border-radius: 6px;
  font-size: .95rem;
  font-weight: 500;
  text-align: center;
  border: none;
  cursor: pointer;
  transition: background .2s ease;
  text-decoration: none;
}
.btn-primary { background: var(--brand-green); color: #fff; }
.btn-primary:hover { background: #3a9c70; }
.btn-secondary {
  background: transparent;
  border: 1px solid var(--brand-dark);
  color: var(--brand-dark);
}
.btn-secondary:hover { background: var(--brand-dark); color: #fff; }
.btn-link {
  color: var(--brand-green);
  text-decoration: none;
  font-weight: 500;
}
.btn-link:hover { text-decoration: underline; }

/* buttons.css - shared button styles */
.btn {
  display: inline-block;
  padding: .65rem 1.2rem;
  border-radius: 6px;
  font-size: .95rem;
  font-weight: 500;
  text-align: center;
  border: none;
  cursor: pointer;
  transition: background .2s ease;
  text-decoration: none;
}
.btn-primary { background: var(--brand-green); color: #fff; }
.btn-primary:hover { background: #3a9c70; }
.btn-secondary {
  background: transparent;
  border: 1px solid var(--brand-dark);
  color: var(--brand-dark);
}
.btn-secondary:hover { background: var(--brand-dark); color: #fff; }
.btn-link {
  color: var(--brand-green);
  text-decoration: none;
  font-weight: 500;
}
.btn-link:hover { text-decoration: underline; }

