/* ------------------------------
  Button Row
------------------------------ */
.button-row {
  display: flex;
  justify-content: flex-end;
}

.button-row--center {
  justify-content: center;
}


/* ------------------------------
  Link Arrow
------------------------------ */
.link-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  max-width: 200px;
  padding: 10px 20px;
  border: 2px solid currentColor;
  border-radius: 5px;
  font-size: 1.2rem;
  font-weight: 700;
}

.link-arrow::after {
  content: "";
  width: 20px;
  height: 2px;
  background: currentColor;
}


/* ------------------------------
  Color Variations
------------------------------ */
.link-arrow--green {
  color: #4c5d42;
  transition: .3s ease;
}

.link-arrow--green:hover {
  background: #fff;
}

.link-arrow--white {
  color: #fff;
  transition: .3s ease;
}

.link-arrow--white:hover {
  background: #728F61;
}

.link-arrow--dark {
  color: #333;
}


/* ------------------------------
  Solid Button
------------------------------ */
.btn-solid {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 200px;
  padding: 12px 20px;
  border-radius: 5px;
  font-size: 1.2rem;
  font-weight: 700;
  transition: .3s ease;
}

.btn-solid--red {
  background: #D43642;
  color: #fff;
}

.btn-solid--red:hover {
  opacity: 0.85;
}


/* ------------------------------
  Responsive
------------------------------ */
@media screen and (max-width: 767px) {
  .button-row {
    justify-content: center;
  }

  .link-arrow {
    max-width: 280px;
    padding: 10px;
  }

  .btn-solid {
    max-width: 280px;
    padding: 12px;
  }
}