/* Reinforced.ie */

:root {
    --text: #111;
    --background: #fff;
    --max-width: 760px;
}

* {
    box-sizing: border-box;
}

html {
    font-size: 16px;
}

body {
    margin: 0;
    padding: 48px 24px;
    background: var(--background);
    color: var(--text);

    font-family:
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Helvetica,
        Arial,
        sans-serif;

    font-size: 1rem;
    line-height: 1.7;
    font-weight: 400;

    max-width: var(--max-width);
    margin-inline: auto;

    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

h1 {
    margin: 0 0 1.5rem;
    font-size: 2rem;
    line-height: 1.2;
    font-weight: 700;
}
h2 {
    margin: 2rem 0 1rem;
    font-size: 1.35rem;
    line-height: 1.3;
    font-weight: 600;
    font-style: italic;
}

p {
    margin: 0 0 1.5rem;
}

strong {
    font-weight: 600;
}

em {
    color: #444;
}

a,
a:visited {
    color: #111;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

a:hover {
    text-decoration-thickness: 2px;
}

a:active {
    color: #111;
}

@media (max-width: 600px) {
    body {
        padding: 32px 20px;
        font-size: 1.05rem;
    }

    h1 {
        font-size: 1.7rem;
    }

    h2 {
        font-size: 1.2rem;
    }
}
/* Header */
.site-header {
    text-align: left;
    padding: 10px 0px 30px;
}

/* Responsive logo */
.site-logo {
    display: block;
    width: clamp(200px, 32vw, 250px);
    max-width: 100%;
    height: auto;
    margin: 0;
}