/**
 * Shared button styles — load after Bootstrap `.btn` and after `css/styles.css`
 * so `:root` tokens (--brand-yellow, --brand-teal, --light-btn-bg) are defined.
 */

.btn.button-yellow,
.btn.button-green,
.btn.button-white {
  font-weight: 700;
  border-radius: 8px;
}

.btn.button-yellow {
  background: var(--brand-yellow);
  color: #1d1f21;
  border: 1px solid transparent;
}

.btn.button-yellow:hover,
.btn.button-yellow:focus {
  background: #ebbd3c;
  color: #1d1f21;
}

.btn.button-green {
  background: var(--brand-teal);
  color: #ffffff;
  border: 1px solid transparent;
}

.btn.button-green:hover,
.btn.button-green:focus {
  background: #0a5f5e;
  color: #ffffff;
}

.btn.button-white {
  background: var(--light-btn-bg);
  border: 1px solid #ececec;
  color: #222428;
}

.btn.button-white:hover,
.btn.button-white:focus {
  background: #efefef;
  color: #222428;
}

@media (max-width: 1199.98px) {

  .btn.button-yellow,
  .btn.button-white {
    font-size: 18px;
  }
}

@media (max-width: 991.98px) {
  .navbar-collapse .btn.button-yellow {
    margin-top: 1rem;
    display: inline-block;
  }

  .btn.button-yellow,
  .btn.button-white {
    font-size: 16px;
  }
}

@media (max-width: 767.98px) {

  .btn.button-yellow,
  .btn.button-white {
    font-size: 16px;
    width: 100%;
    justify-content: center;
  }
}