/* BUTTONS */
.btn {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border-radius: 6px;
    color: #fffefa;
    font-family: 'Public Sans', sans-serif;
    font-weight: 500;
    font-size: 15px;
    text-transform: capitalize;
    line-height: 22px;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.btn:hover {
    color: #fffefa;
}

.btn-yellow {
    background: #ffba00;
}

.btn-orange {
    background: #f05d23;
}

.btn--gutumberg a {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border-radius: 6px;
    color: #fffefa;
    font-family: 'Public Sans', sans-serif;
    font-weight: 500;
    font-size: 15px;
    text-transform: capitalize;
    line-height: 22px;
    text-decoration: none;
    transition: opacity 0.2s ease;
}