@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap");

/* Base: Inter Regular (400) site-wide */
html,
body {
    font-family: "Inter", system-ui, -apple-system, sans-serif;
    font-weight: 400;
}

/* Hide Home nav item */
#home {
    display: none !important;
}

/* Header brand area — logo + “Help Centre” as a flex row with tight spacing */
.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

#mainNav .brand {
    display: flex !important;
    align-items: center;
    gap: 48px;
    padding-top: 32px !important;
    padding-bottom: 32px !important;
    padding-right: 0 !important;
}

.help-centre-label {
    margin-left: 0;
    font-size: 26px;
    font-family: "Inter", system-ui, -apple-system, sans-serif;
    font-weight: 600; /* Inter Semi-bold */
    color: #ffffff;
    line-height: 1;
    position: relative;
    top: 2px;
}

/* Article container */
#fullArticle {
    max-width: 720px;
    margin: 0 auto;
    font-size: 14px;
    line-height: 1.7;
    font-family: "Inter", system-ui, -apple-system, sans-serif;
    font-weight: 400;
}

/* Title */
#fullArticle .title {
    font-size: 34px;
    font-weight: 600; /* Inter Semi-bold */
    margin-bottom: 20px;
}

/* Headings */
#fullArticle h2 {
    font-size: 24px;
    font-weight: 600; /* Inter Semi-bold */
    margin-top: 40px;
    margin-bottom: 12px;
    padding-bottom: 6px;
    border-bottom: 1px solid #eee;
}

#fullArticle h3 {
    font-size: 18px;
    font-weight: 500; /* Inter Medium */
    margin-top: 28px;
}

/* Paragraphs */
#fullArticle p {
    margin-bottom: 18px;
    color: #444;
    font-weight: 400; /* Inter Regular */
}

#fullArticle strong,
#fullArticle b {
    font-weight: 700; /* Inter Bold */
}

/* Lists */
#fullArticle ul,
#fullArticle ol {
    padding-left: 22px;
    margin-bottom: 18px;
}

#fullArticle li {
    margin-bottom: 8px;
}

/* Links */
#fullArticle a {
    color: #2a6df4;
    text-decoration: none;
}

#fullArticle a:hover {
    text-decoration: underline;
}

/* Images */
#fullArticle img {
    max-width: 100%;
    border-radius: 6px;
    margin: 20px 0;
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
}

/* Code */
#fullArticle code {
    background: #f5f5f5;
    padding: 3px 6px;
    border-radius: 4px;
}

#fullArticle pre {
    background: #f5f5f5;
    padding: 16px;
    border-radius: 6px;
    overflow-x: auto;
}

footer span {
    display: none !important;
}
