/* tuls.me — shared styles loaded by base.html (Tailwind CDN handles the rest). */

body {
    font-family: 'Inter', system-ui, sans-serif;
}

[x-cloak] {
    display: none !important;
}

/* Footer */
.otu-footer {
    border-top: 1px solid #e5e7eb;
}

.otu-footer-inner {
    max-width: 72rem;
    margin: 0 auto;
    padding: 1.5rem;
    font-size: .875rem;
    color: #9ca3af;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: .75rem;
}

.otu-footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.otu-footer-link {
    color: #9ca3af;
    text-decoration: none;
    transition: color .15s;
}

.otu-footer-link:hover {
    color: var(--hover, #4b5563);
}

.otu-footer-link.is-active {
    color: #f97316;
    font-weight: 600;
}

