/* Local baseline styles keep the tool usable if external CSS or fonts fail. */
* {
    box-sizing: border-box;
}

html {
    background: #221010;
}

body {
    margin: 0;
    background: #221010;
    color: #fff;
    font-family: "Spline Sans", Arial, sans-serif;
}

a {
    color: inherit;
}

img {
    display: block;
    max-width: 100%;
}

select {
    color: #fff;
}

select option {
    color: #221010;
}

.layout-container {
    min-height: 100vh;
}

.serif-heading {
    font-family: Georgia, serif;
}

.ai-summary {
    max-width: 42rem;
}

.countdown-tool {
    width: min(100%, 48rem);
}

.language-select {
    border: 0;
    min-width: 8rem;
    font: inherit;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

#days,
#hours,
#minutes,
#seconds {
    font-variant-numeric: tabular-nums;
}

@supports not (width: min(100%, 48rem)) {
    .countdown-tool {
        width: 100%;
        max-width: 48rem;
    }
}
