.btn-component-wrapper {
    display: grid;
}


.btn-component {
    padding: 12px;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 22px;
    line-height: 26px;
    text-align: center;
    border: none;
    color: #fff;
    min-width: min-content;
    white-space: normal;
}

.btn-component:hover {
    color: #fff;
    text-decoration: none;
}

.basic-btn,
.grey-btn {
    width: 100%;
}

.btn-container {
    display: flex;
    justify-content: space-between;
  }

.btn-container a{
    flex: 1;
    display: flex;
}

.btn-container a button{
    flex: 1;
    max-width: unset !important;
}


@media (min-width: 992px) {
    .basic-btn,
    .grey-btn {
        width: auto;
    }

    .btn-component {
        min-width: max-content;
    }
}