@font-face {
    font-family: 'Gugi-Regular';
    src: url('../fonts/Gugi-Regular.ttf') format('truetype');
    /* Add more src declarations if you have different font formats */
}

html {
    scroll-behavior: smooth
}

body {
    font-family: 'Gugi-Regular', sans-serif;
}

.prose p {
    margin: 0 0 1rem
}

.quick-grid ul {
    display: contents
}

.quick-grid li {
    list-style: none
}

.quick-grid a {
    display: flex;
    align-items: center;
    gap: 1rem;
    min-height: 112px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 1.5rem;
    background: rgba(255, 255, 255, .045);
    padding: 1.25rem;
    color: #fff;
    font-weight: 900;
    text-decoration: none;
    transition: .25s ease
}

.quick-grid a:hover {
    transform: translateY(-4px);
    border-color: #ffed00;
    background: rgba(255, 237, 0, .12)
}

.quick-grid img {
    height: 54px;
    width: 54px;
    object-fit: contain;
    /*filter: drop-shadow(0 8px 20px rgba(0, 0, 0, .35))*/
    filter: brightness(0) invert(1);
}

.quick-grid span {
    font-size: 1.05rem
}

.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .7s ease, transform .7s ease
}

.reveal.is-visible {
    opacity: 1;
    transform: none
}

.marquee-single {
    animation: marquee-single 16s linear infinite;
}

@keyframes marquee-single {
    0% {
        transform: translateX(100vw);
    }

    100% {
        transform: translateX(-100%);
    }
}

@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1;
        transform: none;
        transition: none
    }
}
