.btn, .btn:hover, .btn-large, .btn-large:hover {
    font-size: 0.9rem;
    color: var(--lh-text-inverse-color)
}

.btn::after, .btn-large::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
    transition: background-color 0.3s ease;
}

.btn:hover::after, .btn-large:hover::after {
    background: var(--lh-element-background-hover-darker);
}

.btn:active, .btn-large:active {
    transform: translate(0, 2px);
}

.btn-outline, .btn-outline:hover {
  border: 2px solid var(--lh-primary-fg-color) !important;
  color: var(--lh-primary-fg-color) !important;
  background-color: var(--lh-secondary-bg-color) !important;
}

.btn-outline:hover::after {
    background: var(--lh-element-background-hover-darker);
}
