/* Custom additions on top of Tailwind Play CDN */

/* Hide elements still being initialized by Alpine to avoid FOUC */
[x-cloak] { display: none !important; }

/* Slightly larger leading for long-form German/Portuguese paragraphs */
main p {
    text-wrap: pretty;
}

/* Underline animation on inline text links inside prose blocks */
.prose-link {
    background-image: linear-gradient(currentColor, currentColor);
    background-size: 0% 1px;
    background-repeat: no-repeat;
    background-position: 0 100%;
    transition: background-size 200ms ease;
}
.prose-link:hover {
    background-size: 100% 1px;
}

/* Focus ring for keyboard users (subtle, matches palette) */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 2px solid #367788;
    outline-offset: 2px;
    border-radius: 6px;
}

/* Print: drop nav + footer noise */
@media print {
    header, footer { display: none; }
    main { padding: 0; }
    body { color: #000; background: #fff; }
}
