<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/**
 * Block Button Styles
 *
 * @package Matchbox_Custom_Blocks
 */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background-color: var(--color-accent-1);
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn:hover {
    background-color: var(--color-accent-2);
    transform: translateY(-2px);
}

.btn.dark {
    background-color: #000;
}

.btn.dark:hover {
    background-color: var(--color-accent-1);
}

.btn.layered {
    position: relative;
    overflow: hidden;
}

.btn.layered::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.btn.layered:hover::before {
    transform: translateX(0);
}

.btn .icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.5rem;
    height: 1.5rem;
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.btn:hover .icon {
    transform: translateX(3px);
}

@media (max-width: 767px) {
    .btn {
        padding: 0.625rem 1.25rem;
        font-size: 0.875rem;
    }
} </pre></body></html>