.tile-btn {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 24px;

    --btn-bg-color: var(--fnd-accent-1-color);
    --btn-fg-color: var(--fnd-on-accent-1-color);
    --btn-bg-hover-color: light-dark(color-mix(in lab, black 5%, var(--btn-bg-color)), color-mix(in lab, white 5%, var(--btn-bg-color)));
    --btn-fg-hover-color: var(--btn-fg-color);
    color: var(--btn-fg-color) !important;
    background-color: var(--btn-bg-color) !important;
    box-shadow: none !important;
    border-radius: var(--shape-xl);

    cursor: pointer;
}

@media (max-width: 768px) {
    .tile-btn {
        border-radius: var(--shape-l);
    }
}

.btn-outline {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 16px 28px;

    --btn-bg-color: var(--fnd-surface-1);
    --btn-fg-color: var(--fnd-text-color);
    --btn-bg-hover-color: light-dark(color-mix(in lab, black 5%, var(--btn-bg-color)), color-mix(in lab, white 5%, var(--btn-bg-color)));
    --btn-fg-hover-color: var(--btn-fg-color);
    color: var(--btn-fg-color) !important;
    background: var(--btn-bg-color);
    box-shadow: none !important;
    border-radius: var(--shape-l);

    font-weight: 600;
    font-size: 0.875rem;
    line-height: 0.875rem;
    letter-spacing: 0.0125rem;
}

.tile-btn:disabled :where(i, span, p), .btn-outline:disabled :where(i, span, p) {
    opacity: 60%;
    cursor: unset !important;
}

.tile-btn :where(i, span, p), .btn-outline :where(i, span, p) {
    font-weight: 600;
    font-size: 0.875rem;
    line-height: 0.875rem;
    letter-spacing: 0.0125rem;

    color: var(--btn-fg-color);

    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
    -khtml-user-select: none; /* Konqueror HTML */
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
    user-select: none;
}

.tile-btn .material-icon-bold-filled, .btn-outline .material-icon-bold-filled {
    font-size: 1rem !important;
    line-height: 1rem !important;
}

@media (hover: hover) and (pointer: fine) {
    .btn-outline:hover, .tile-btn:hover {
        color: var(--btn-fg-hover-color) !important;
        background-color: var(--btn-bg-hover-color) !important;
    }

    .btn-outline:hover :where(i, span, p), .tile-btn:hover, :where(i, span, p) {
        color: var(--btn-fg-hover-color);
    }
}
