@media (min-width: 768px) {
  .button-container-8 {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 31px 26px;
    background-color: #fdd9d9;
    padding: 50px 20px;
  }
}

@media (max-width: 767px) {
  .button-container-8 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 31px 26px;
    background-color: #fdd9d9;
    padding: 20px;
  }
}

.button-link {
  text-decoration: none;
}

.custom-btn-8 {
  width: 242px;
  background-color: #ffffff;
  border-radius: 6px;
  border: 2px solid #e8e8e8;
  padding: 22px 12px 22px 0;
  font-size: 20px;
  color: #725b1f;
  cursor: pointer;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-weight: bold;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}

.custom-btn-8.press {
  box-shadow: 1.5px 4px 0 rgba(0, 0, 0, 0.2);
}

.custom-btn-8.press:hover {
  transform: translateY(4px);
  box-shadow: none;
}

.custom-btn-8 .icon-8 {
  width: 6px;
  height: 12px;
}

@media (max-width: 767px) {
  .custom-btn-8 {
    font-size: 24px;
    width: 100%;
    padding: 16px 12px 16px 0;
  }
  .custom-btn-8 .icon-8 {
    width: 7.54px;
    height: 15.08px;
  }
}

@media (max-width: 630px) {
  .custom-btn-8 {
    font-size: 16px;
    width: 100%;
  }
  .custom-btn-8 .icon-8 {
    width: 7.54px;
    height: 15.08px;
  }
}

@media (max-width: 470px) {
  .custom-btn-8 {
    font-size: 10px;
    width: 100%;
  }
  .custom-btn-8 .icon-8 {
    width: 3.77px;
    height: 7.504px;
  }
}
