/* =================================
   GLOBAL
   Neologic Web System
================================= */

html {
    font-size: 16px;
}

body {
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.025em;
}

h1 {
    font-size: clamp(2.5rem, 6vw, 5.5rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
}

h3 {
    font-size: clamp(1.4rem, 2.2vw, 2rem);
}

p {
    color: var(--color-text-soft);
}

strong {
    font-weight: 700;
}

.container {
    width: min(
        100% - (var(--page-gutter) * 2),
        var(--container-width)
    );

    margin-inline: auto;
}

.page-shell {
    min-height: 100vh;

    display: grid;
    grid-template-rows: 1fr auto;
}

.visually-hidden {
    position: absolute;

    width: 1px;
    height: 1px;

    padding: 0;
    margin: -1px;

    overflow: hidden;

    clip: rect(0, 0, 0, 0);
    white-space: nowrap;

    border: 0;
}

.text-center {
    text-align: center;
}

.text-primary {
    color: var(--color-primary);
}

.text-white {
    color: var(--color-white);
}