/* Explain: Base reset and typography for the editorial travel site */
* {
    box-sizing: border-box;
}

html {
    background: var(--background-color);
    color: var(--text-color);
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-width: 320px;
    overflow-x: hidden;
    background:
        radial-gradient(circle at top left, rgba(244, 231, 208, 0.75), transparent 34rem),
        linear-gradient(180deg, var(--ivory-color) 0%, #fffaf1 100%);
    font-family: var(--font-body);
    text-rendering: optimizeLegibility;
}

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

a {
    color: inherit;
    text-decoration: none;
}

button,
a,
input,
textarea,
select {
    font: inherit;
}

::selection {
    background: rgba(196, 106, 74, 0.24);
    color: var(--navy-color);
}

.editorial-kicker {
    color: var(--terracotta-color);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.editorial-heading {
    font-family: var(--font-heading);
    letter-spacing: -0.035em;
    line-height: 0.94;
}

.editorial-copy {
    color: var(--text-muted);
    line-height: 1.8;
}

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