:root {
    --site-width: 1150px;
    --site-margin-sides: 30px;
    --site-mobile-margin-sides: 15px;
    --site-hover-list-row: #e8e8e8;
}

body {
    display: flex;
    flex-direction: column;
    height: 100vh;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;  
    -webkit-font-smoothing: antialiased;  
}

strong {
    font-weight: 500;
}

a {
    text-decoration: none;
    font-weight: 500;
    color: #0084c2;
}

h1 {
    font-family: 'Inter', sans-serif;
    font-size: 35px;
    font-weight: 500;
    line-height: 42px;
    margin: 15px 0;
}

h2 {
    font-family: 'Inter', sans-serif;
    font-size: 25px;
    font-weight: 500;
    margin: 40px 0 16px;
    line-height: 32px;
}

h3 {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 500;
    margin: 30px 0 0px;
}

p, li {
    margin-block-start: 0.1em;
    margin-inline-start: initial;
    margin-inline-end: initial;
    padding-top: 4px;
}

figure {
    margin-inline-start: 0;
    margin-inline-end: 0;
    margin-block-start: 0;
    margin-block-end: 0;
}

figcaption {
    margin-top: 5px;
    width: 80%;
    font-size: 13px;
    line-height: 18px;
}

.support-article .article-container h1:first-child {
    padding-top: 0px;
}

.support-article .article-container h1 {
    font-size: 28px;
    border-bottom: 1px solid #0000003d;
    padding-top: 30px;
    padding-bottom: 7px;
}

.support-article .article-container h2 {
    font-size: 23px;
    margin: 40px 0 9px;
}

.support-article .article-container h3 {
    font-size: 18px;
    margin: 20px 0 0px;
}

.support-article .article-container li {
    padding-bottom: 0px;
}

.support-article .article-container pre {
    display: inline-block;
    padding: 30px;
    border: 1px solid #d8d8d8;
    background-color: #ededed;
    width: 100%;
    box-sizing: border-box;
}

header {
    background-color: #eeeeee;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
}

main {
    flex: 1;
    display: flex;
    justify-content: center;
    background-color: #ffffff;
    z-index: 1;
}

.m-container {
    width: var(--site-width);
    padding-left: var(--site-margin-sides);
    padding-right: var(--site-margin-sides);
    margin-bottom: 100px;
    margin-top: 30px;
}

.visually-hidden { 
    border: 0;
    padding: 0;
    margin: 0;
    position: absolute !important;
    height: 1px; 
    width: 1px;
    overflow: hidden;
    clip: rect(1px 1px 1px 1px); /* IE6, IE7 - a 0 height clip, off to the bottom right of the visible 1px box */
    clip: rect(1px, 1px, 1px, 1px); /*maybe deprecated but we need to support legacy browsers */
    clip-path: inset(50%); /*modern browsers, clip-path works inwards from each corner*/
    white-space: nowrap; /* added line to stop words getting smushed together (as they go onto seperate lines and some screen readers do not understand line feeds as a space */
}

.nowrap {
    white-space: nowrap;
}

@media screen and (min-width: 600px)  {
    .mobile-break { display: none; }
}
    
@media screen and (max-width:700px) {
    p {
        font-size: 16px;
    }

    .m-container {
        padding-left: var(--site-mobile-margin-sides);
        padding-right: var(--site-mobile-margin-sides);
    }

}
