:root {
    --color-black: #000;
    --color-grey: #767676;
    --color-white: #fff;
}

* {
	box-sizing: border-box;
}

*[style] {
	background: none !important;
	color: var(--color-black) !important;
}

html, body {
	color: var(--color-black);
	font-family: "Roboto", Helveitca, Arial, sans-serif;
	font-size: 1rem;
	line-height: 1.5;
	margin: 0 auto;
	padding: 0;
}

form, .no-print, .grecaptcha-badge {
	display: none !important;
}

h1, h2, h3, h4, h5, h6 {
	font-weight: 700;
	margin: 0 0 1rem 0;
	padding: 0;
}

p {
	margin: 0 0 1rem 0;
	padding: 0;
}

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

figure {
    margin-right: 0;
    margin-left: 0;
}

dd {
    margin-left: 0;
}

hr {
    width: 100%;
    border: none;
    border-top: 1px solid var(--color-grey);
}

.aspect-video {
    aspect-ratio: 16 / 9;
}

iframe {
    border: none;
}

/* display */

.sr-only {
    display: none;
}

.print-block {
	display: block !important;
    height: auto !important;
    overflow: auto !important;
}

/* sizing */

.print-small {
	font-size: 0.875rem;
}

.print-default {
	font-size: 1rem;
}

/* text */

.not-italic {
    font-style: normal;
}

.print-regular {
    font-weight: 400;
}

.print-semibold {
	font-weight: 500;
}

.print-bold {
	font-weight: 700;
}

.print-italic {
    font-style: italic;
}

.print-text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
}

/* spacing */

.print-grid {
    display: grid;
}

.print-gap-5 {
    gap: 1.25rem;
}

.print-gap-10 {
    gap: 2.5rem;
}

.print-mt-0 {
    margin-top: 0;
}

.print-mt-5 {
    margin-top: 1.25rem;
}

.print-mb-0 {
    margin-bottom: 0;
}

.print-m-0 {
    margin: 0;
}

.print-pl-0 {
    padding-left: 0;
}

.print-tight {
	margin-bottom: 0;
}

/* sizes */

.print-max-w-full {
    max-width: 100%;
}

/* lists */
.print-list-reset {
    list-style: none;
    margin: 0 0 1rem 0;
    padding: 0;
}

.print-list-reset > li {
	list-style: none;
}

/* colours */

.print-text-grey {
    color: var(--color-grey);
}

/* other */

.print-warning {
    display: grid;
    grid-template-columns: min-content 1fr;
    gap: 0.75rem;
    align-items: center;
    margin-bottom: 1rem;
    font-size: .875rem;
    font-weight: bold;
    line-height: 1.25rem;
    color: green;
}

.print-logo {
    display: block !important;

}

.print-banner {
    margin-bottom: 2.5rem;
}

.print-banner__heading {
    font-weight: bold;
    font-size: 1.875rem;
}

.print-banner__heading:has(+ .print-banner__subheading) {
    margin-bottom: 0;
}

.print-banner__subheading {
    font-size: 1.15rem;
    font-weight: bold;
    color: var(--color-grey);
}

.print-banner__word {
    font-weight: bold;
    font-size: 1.17rem;
}

.print-intro-summary {
    font-size: 1.17rem
}

.print-link::after {
    content: " (" attr(href) ") ";
}

.print-image-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    list-style-type: none;
    padding-left: 0;
    margin: 0;
}

.print-image-grid__item {
    border: 1px solid var(--color-grey);
    padding: 1rem;
    border-radius: .5rem;
}

.print-features-block__item:has(img) {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 1.25rem;
}

.print-image-full {
    display: block;
    width: 100%;
    height: auto;
}

.print-stats {
    display: grid;
    grid-auto-columns: minmax(0, 1fr);
    grid-auto-flow: column;
}

.print-stat__value {
    font-size: 2rem;
    font-weight: bold;
}

.print-code * {
    color: var(--color-white) !important;
}

.print-download-header {
    display: flex;
    justify-content: space-between;
}

.print-download-header__support {
    display: inline-flex;
    gap: 0.75rem;
}

.print-learning-path-group {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.print-learning-path-meta dl {
    display: inline-flex;
    gap: 0.75rem;
}

.print-videos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.print-footer {
    margin-top: 2.5rem;
}

/* tables */

.print-table {
    text-align: left;
    vertical-align: top;
    width: 100%;
    border-collapse: collapse;
    border-color: inherit;
    text-indent: 0;
}
.print-table th,
.print-table td {
    padding: 0.75rem;
}
.print-table th:first-child,
.print-table td:first-child {
    padding-left: 0;
}
.print-table thead tr {
    border-bottom: 2px solid var(--color-grey);
}
.print-table tbody tr {
    border-bottom: 1px solid var(--color-grey);
}

/* cms */

.cms {
    display: grid;
    gap: 1.25rem;
}
.cms > * {
    margin: 0;
}