/* =========================================================
   Quiet Buttons
   Secondary / Supporting CTA
   ========================================================= */


/* =========================================================
   Base Quiet Button
   ========================================================= */

.quiet-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 54px;

    padding: 0.8rem 1.6rem;

    border: 2px solid transparent;
    border-radius: 6px;

    font-family: var(--body-font);
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.5;

    text-decoration: none !important;

    transition:
        background-color 0.2s ease,
        border-color 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
}


/* =========================================================
   Green Quiet Button
   ========================================================= */

.quiet-button--green {
    color: #ffffff !important;

    background: var(--leaf);

    border-color: var(--leaf);

    box-shadow:
        0 3px 8px rgba(0, 0, 0, 0.18);
}


/* =========================================================
   Green Hover
   ========================================================= */

.quiet-button--green:hover {
    color: #ffffff !important;

    background: #157347;

    border-color: #157347;

    transform: translateY(-2px);

    box-shadow:
        0 6px 14px rgba(0, 0, 0, 0.22);
}


/* =========================================================
   Green Focus / Active
   ========================================================= */

.quiet-button--green:focus,
.quiet-button--green:focus-visible,
.quiet-button--green:active {
    color: #ffffff !important;

    background: var(--leaf);

    border-color: var(--leaf);

    outline: none;

    box-shadow:
        0 3px 8px rgba(0, 0, 0, 0.18);
}


/* =========================================================
   Icon
   ========================================================= */

.quiet-button i {
    margin-right: 0.5rem;

    color: currentColor;

    transition:
        transform 0.2s ease;
}

.quiet-button:hover i {
    transform: translateX(2px);
}


/* =========================================================
   Mobile
   ========================================================= */

@media (max-width: 575.98px) {

    .quiet-button {
        width: 100%;
        max-width: 320px;

        min-height: 54px;

        font-size: 1rem;
    }

}
