/**
 * prism.js tomorrow night eighties for JavaScript, CoffeeScript, CSS and HTML
 * Based on https://github.com/chriskempson/tomorrow-theme
 * @author Rose Pritchard
 */

code[class*="language-"],
pre[class*="language-"] {
	color: #ccc;
	background: none;
	font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace;
	font-size: 1em;
	text-align: left;
	white-space: pre;
	word-spacing: normal;
	word-break: normal;
	word-wrap: normal;
	line-height: 1.5;

	-moz-tab-size: 4;
	-o-tab-size: 4;
	tab-size: 4;

	-webkit-hyphens: none;
	hyphens: none;

}

/* Code blocks */
pre[class*="language-"] {
	padding: 1em;
	margin: .5em 0;
	overflow: auto;
}

:not(pre) > code[class*="language-"],
pre[class*="language-"] {
	background: #2d2d2d;
}

/* Inline code */
:not(pre) > code[class*="language-"] {
	padding: .1em;
	border-radius: .3em;
	white-space: normal;
}

.token.comment,
.token.block-comment,
.token.prolog,
.token.doctype,
.token.cdata {
	color: #999;
}

.token.punctuation {
	color: #ccc;
}

.token.tag,
.token.attr-name,
.token.namespace,
.token.deleted {
	color: #e2777a;
}

.token.function-name {
	color: #6196cc;
}

.token.boolean,
.token.number,
.token.function {
	color: #f08d49;
}

.token.property,
.token.class-name,
.token.constant,
.token.symbol {
	color: #f8c555;
}

.token.selector,
.token.important,
.token.atrule,
.token.keyword,
.token.builtin {
	color: #cc99cd;
}

.token.string,
.token.char,
.token.attr-value,
.token.regex,
.token.variable {
	color: #7ec699;
}

.token.operator,
.token.entity,
.token.url {
	color: #67cdcc;
}

.token.important,
.token.bold {
	font-weight: bold;
}
.token.italic {
	font-style: italic;
}

.token.entity {
	cursor: help;
}

.token.inserted {
	color: green;
}

/**
 * Vendor
 */
@keyframes passing-through {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  30%, 70% {
    opacity: 1;
    transform: translateY(0px);
  }
  100% {
    opacity: 0;
    transform: translateY(-40px);
  }
}
@keyframes slide-in {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  30% {
    opacity: 1;
    transform: translateY(0px);
  }
}
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  10% {
    transform: scale(1.1);
  }
  20% {
    transform: scale(1);
  }
}
.dropzone, .dropzone * {
  box-sizing: border-box;
}

.dropzone {
  min-height: 150px;
  border: 2px solid rgba(0, 0, 0, 0.3);
  background: white;
  padding: 20px 20px;
}

.dropzone.dz-clickable {
  cursor: pointer;
}

.dropzone.dz-clickable * {
  cursor: default;
}

.dropzone.dz-clickable .dz-message, .dropzone.dz-clickable .dz-message * {
  cursor: pointer;
}

.dropzone.dz-started .dz-message {
  display: none;
}

.dropzone.dz-drag-hover {
  border-style: solid;
}

.dropzone.dz-drag-hover .dz-message {
  opacity: 0.5;
}

.dropzone .dz-message {
  text-align: center;
  margin: 2em 0;
}

.dropzone .dz-message .dz-button {
  background: none;
  color: inherit;
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
  outline: inherit;
}

.dropzone .dz-preview {
  position: relative;
  display: inline-block;
  vertical-align: top;
  margin: 16px;
  min-height: 100px;
}

.dropzone .dz-preview:hover {
  z-index: 1000;
}

.dropzone .dz-preview:hover .dz-details {
  opacity: 1;
}

.dropzone .dz-preview.dz-file-preview .dz-image {
  border-radius: 20px;
  background: #999;
  background: linear-gradient(to bottom, #eee, #ddd);
}

.dropzone .dz-preview.dz-file-preview .dz-details {
  opacity: 1;
}

.dropzone .dz-preview.dz-image-preview {
  background: white;
}

.dropzone .dz-preview.dz-image-preview .dz-details {
  transition: opacity 0.2s linear;
}

.dropzone .dz-preview .dz-remove {
  font-size: 14px;
  text-align: center;
  display: block;
  cursor: pointer;
  border: none;
}

.dropzone .dz-preview .dz-remove:hover {
  text-decoration: underline;
}

.dropzone .dz-preview:hover .dz-details {
  opacity: 1;
}

.dropzone .dz-preview .dz-details {
  z-index: 20;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  font-size: 13px;
  min-width: 100%;
  max-width: 100%;
  padding: 2em 1em;
  text-align: center;
  color: rgba(0, 0, 0, 0.9);
  line-height: 150%;
}

.dropzone .dz-preview .dz-details .dz-size {
  margin-bottom: 1em;
  font-size: 16px;
}

.dropzone .dz-preview .dz-details .dz-filename {
  white-space: nowrap;
}

.dropzone .dz-preview .dz-details .dz-filename:hover span {
  border: 1px solid rgba(200, 200, 200, 0.8);
  background-color: rgba(255, 255, 255, 0.8);
}

.dropzone .dz-preview .dz-details .dz-filename:not(:hover) {
  overflow: hidden;
  text-overflow: ellipsis;
}

.dropzone .dz-preview .dz-details .dz-filename:not(:hover) span {
  border: 1px solid transparent;
}

.dropzone .dz-preview .dz-details .dz-filename span, .dropzone .dz-preview .dz-details .dz-size span {
  background-color: rgba(255, 255, 255, 0.4);
  padding: 0 0.4em;
  border-radius: 3px;
}

.dropzone .dz-preview:hover .dz-image img {
  transform: scale(1.05, 1.05);
  filter: blur(8px);
}

.dropzone .dz-preview .dz-image {
  border-radius: 20px;
  overflow: hidden;
  width: 120px;
  height: 120px;
  position: relative;
  display: block;
  z-index: 10;
}

.dropzone .dz-preview .dz-image img {
  display: block;
}

.dropzone .dz-preview.dz-success .dz-success-mark {
  animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1);
}

.dropzone .dz-preview.dz-error .dz-error-mark {
  opacity: 1;
  animation: slide-in 3s cubic-bezier(0.77, 0, 0.175, 1);
}

.dropzone .dz-preview .dz-success-mark, .dropzone .dz-preview .dz-error-mark {
  pointer-events: none;
  opacity: 0;
  z-index: 500;
  position: absolute;
  display: block;
  top: 50%;
  left: 50%;
  margin-left: -27px;
  margin-top: -27px;
}

.dropzone .dz-preview .dz-success-mark svg, .dropzone .dz-preview .dz-error-mark svg {
  display: block;
  width: 54px;
  height: 54px;
}

.dropzone .dz-preview.dz-processing .dz-progress {
  opacity: 1;
  transition: all 0.2s linear;
}

.dropzone .dz-preview.dz-complete .dz-progress {
  opacity: 0;
  transition: opacity 0.4s ease-in;
}

.dropzone .dz-preview:not(.dz-processing) .dz-progress {
  animation: pulse 6s ease infinite;
}

.dropzone .dz-preview .dz-progress {
  opacity: 1;
  z-index: 1000;
  pointer-events: none;
  position: absolute;
  height: 16px;
  left: 50%;
  top: 50%;
  margin-top: -8px;
  width: 80px;
  margin-left: -40px;
  background: rgba(255, 255, 255, 0.9);
  -webkit-transform: scale(1);
  border-radius: 8px;
  overflow: hidden;
}

.dropzone .dz-preview .dz-progress .dz-upload {
  background: #333;
  background: linear-gradient(to bottom, #666, #444);
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 0;
  transition: width 300ms ease-in-out;
}

.dropzone .dz-preview.dz-error .dz-error-message {
  display: block;
}

.dropzone .dz-preview.dz-error:hover .dz-error-message {
  opacity: 1;
  pointer-events: auto;
}

.dropzone .dz-preview .dz-error-message {
  pointer-events: none;
  z-index: 1000;
  position: absolute;
  display: block;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 8px;
  font-size: 13px;
  top: 130px;
  left: -10px;
  width: 140px;
  background: #be2626;
  background: linear-gradient(to bottom, #be2626, #a92222);
  padding: 0.5em 1.2em;
  color: white;
}

.dropzone .dz-preview .dz-error-message:after {
  content: "";
  position: absolute;
  top: -6px;
  left: 64px;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #be2626;
}

/**
 * Components - blocks
 */
/**
 * This file is read by the styleguide to automatically produce the list of colours names and variables
 * in the General/Colours page.
 *
 * It will assume any line beginning with an "$" is a colour definition line, and will ignore all others.
 */
/**
 * Site colours
 */
/**
 * Theme colours
 */
/**
 * General success / error type colours
 */
/**
 * Overrides for defaults set in include-media.scss
 */
/**
 * Icon font
 *
 * To be used as follows:
 * @include icon(string ligature, fontSize);
 * default font size 24px as this is preferred for material icons
 *
 */
/**
 * AvatarImage
 * Styles the standard avatar image (round icon)
 *
 * To be used as follows:
 * @include avatarImage($size);
 * where $size provides the height and width of the image
 *
 */
/**
 * Line clamp
 *
 * To be used as follows:
 * @include line-clamp(int number-of-lines);
 *
 */
/**
 * Loading shimmer
 * A loading animation in which a gradient sweeps through the background
 *
 * To be used as follows:
 * @include loadingShimmer;
 *
 */
/**
 * Card percentage width
 *
 * To be used as follows:
 * @include cardPercentageWidth(int number-per-row, horizontal-margin-between);
 *
 */
/**
 * Fade
 *
 * To be used as follows:
 * @include fade(int transition-time, bool reverse-animation, string transition-type);
 * reverse-animation defaults to false (fadeOut), true will make this a fadeIn transition.
 * transition-type defaults to ease
 * Requires '.fade' class to be applied to the element.
 *
 */
/**
 * Fields
 *
 * To be used as follows:
 * @include fields;
 * Applies default styling to basic form field elements such as input, textarea, select etc.
 *
 */
/**
 * Waffles
 */
.comment-votes-tooltip, .comment-report__tooltip, .attachments__tooltip {
  position: absolute;
  left: 0;
  width: 100%;
  background: #ffffff;
  margin-top: 20px;
  display: none;
  box-shadow: 0 10px 10px 0 rgba(74, 78, 87, 0.2);
  z-index: 1;
  border-top: 1px solid rgba(74, 78, 87, 0.1);
}
@media (min-width: 768px) {
  .comment-votes-tooltip, .comment-report__tooltip, .attachments__tooltip {
    width: auto;
    margin-top: 24px;
    border-radius: 4px;
    box-shadow: 2px 2px 1px rgba(225, 225, 225, 0.5);
    left: 50%;
    transform: translateX(-50%);
    border-top: none;
    border: 1px solid #cdcdcd;
  }
  .comment-votes-tooltip::before, .comment-report__tooltip::before, .attachments__tooltip::before {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 5px solid #ffffff;
    left: 50%;
    transform: translateX(-50%);
    top: -5px;
  }
  .comment-votes-tooltip::after, .comment-report__tooltip::after, .attachments__tooltip::after {
    content: "";
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid #cdcdcd;
    left: 50%;
    z-index: -1;
    transform: translateX(-50%);
    top: -6px;
    position: absolute;
  }
}
.is-dropdown-open .comment-votes-tooltip, .is-dropdown-open .comment-report__tooltip, .is-dropdown-open .attachments__tooltip {
  display: block;
  animation: dropDown 0.2s ease-in both;
}
@keyframes dropDown {
  from {
    opacity: 0;
    margin-top: calc(var(--dropdown-top-margin) - 10px);
  }
  to {
    opacity: 1;
    margin-top: var(--dropdown-top-margin);
  }
}

.comment-votes-tooltip__link, .comment-report__tooltip-link, .attachments__tooltip-link {
  font-family: var(--body-font);
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
  color: #4a4e57;
  white-space: nowrap;
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 16px;
}
@media (min-width: 768px) {
  .comment-votes-tooltip__link, .comment-report__tooltip-link, .attachments__tooltip-link {
    font-family: var(--body-font);
    font-size: 12px;
    line-height: 20px;
    padding: 8px 24px;
  }
}
.comment-votes-tooltip__link:hover, .comment-report__tooltip-link:hover, .attachments__tooltip-link:hover {
  background: #ebebeb;
}

.comment__text h1, .forum-content__text h1 {
  font-family: var(--header-font);
  font-weight: 700;
  font-size: 36px;
  line-height: 44px;
}
@media (min-width: 768px) {
  .comment__text h1, .forum-content__text h1 {
    font-size: 40px;
    line-height: 48px;
  }
}
.comment__text h2, .forum-content__text h2 {
  font-family: var(--header-font);
  font-weight: 700;
  font-size: 28px;
  line-height: 36px;
}
@media (min-width: 768px) {
  .comment__text h2, .forum-content__text h2 {
    font-size: 32px;
    line-height: 40px;
  }
}
.comment__text h3, .forum-content__text h3 {
  font-family: var(--header-font);
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
}
@media (min-width: 768px) {
  .comment__text h3, .forum-content__text h3 {
    font-size: 28px;
    line-height: 36px;
  }
}
.comment__text h4, .forum-content__text h4 {
  font-family: var(--header-font);
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
}
@media (min-width: 768px) {
  .comment__text h4, .forum-content__text h4 {
    font-size: 28px;
    line-height: 36px;
  }
}
.comment__text h1, .forum-content__text h1,
.comment__text h2,
.forum-content__text h2,
.comment__text h3,
.forum-content__text h3,
.comment__text h4,
.forum-content__text h4,
.comment__text p,
.forum-content__text p,
.comment__text ul,
.forum-content__text ul,
.comment__text ol,
.forum-content__text ol,
.comment__text table,
.forum-content__text table {
  margin-bottom: 24px;
}
.comment__text b, .forum-content__text b,
.comment__text strong,
.forum-content__text strong {
  font-weight: 700;
}
.comment__text em, .forum-content__text em {
  font-style: italic;
}
.comment__text a:not(.o-button), .forum-content__text a:not(.o-button) {
  font-weight: 700;
  color: #3244ff;
}
.comment__text a:not(.o-button):hover, .forum-content__text a:not(.o-button):hover {
  color: #d9121f;
}
.comment__text button a, .forum-content__text button a {
  color: #ffffff;
}
.comment__text ul, .forum-content__text ul {
  list-style: disc;
}
.comment__text ol, .forum-content__text ol {
  list-style: decimal;
}
.comment__text li, .forum-content__text li {
  margin-left: 40px;
  margin-bottom: 8px;
}
.comment__text li:last-child, .forum-content__text li:last-child {
  margin-bottom: 0;
}
.comment__text sup, .forum-content__text sup,
.comment__text sub,
.forum-content__text sub {
  font-size: 75%;
  position: relative;
}
.comment__text sup, .forum-content__text sup {
  top: -0.5em;
}
.comment__text sub, .forum-content__text sub {
  bottom: -0.25em;
}
.comment__text table[border="1"] th, .forum-content__text table[border="1"] th,
.comment__text table[border="1"] td,
.forum-content__text table[border="1"] td {
  border: 1px solid #1d1d1b;
}
.comment__text blockquote, .forum-content__text blockquote {
  padding: 8px 0 8px 24px;
  background-color: #ebebeb;
  border-left: 3px solid rgba(74, 78, 87, 0.2);
}
.comment__text blockquote p, .forum-content__text blockquote p {
  margin-bottom: 0;
}
.comment__text > *:last-child, .forum-content__text > *:last-child {
  margin-bottom: 0;
}

.forum-content {
  display: flex;
  flex-direction: column;
  padding: 24px 16px;
}
@media (min-width: 768px) {
  .forum-content {
    padding: 16px 40px;
  }
}

.forum-content--nominated {
  padding-right: 13px;
  padding-left: 13px;
}
@media (min-width: 768px) {
  .forum-content--nominated {
    padding-right: 37px;
    padding-left: 37px;
  }
}

.forum-content--preview .forum-content__reply-button,
.forum-content--preview .forum-content__actions {
  display: none;
}
.forum-content--preview .forum-content__text {
  margin-bottom: 0;
}

.forum-content__header {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-bottom: 16px;
}
@media (min-width: 992px) {
  .forum-content__header {
    align-items: center;
    flex-direction: row;
  }
}

.forum-content__avatar {
  margin-right: 16px;
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .forum-content__avatar {
    margin-bottom: 0;
  }
}

.forum-content__metadata {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
}
@media (min-width: 768px) {
  .forum-content__metadata {
    align-items: center;
    flex-direction: row;
  }
}

.forum-content__actions {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
}
@media (min-width: 768px) {
  .forum-content__actions {
    justify-content: flex-end;
  }
}

@media (min-width: 768px) {
  .forum-content__body {
    margin-left: 64px;
  }
}
.forum-content--post .forum-content__body {
  margin-left: 0;
}
@media (min-width: 768px) {
  .forum-content--post .forum-content__body {
    padding: 40px 64px;
    border-radius: 4px;
    border: 1px solid rgba(188, 188, 188, 0.5);
  }
}

.forum-content__datetime {
  font-family: var(--body-font);
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
  color: #1d1d1b;
  display: block;
  margin-bottom: 16px;
}

.forum-content__text {
  font-family: var(--body-font);
  font-size: 18px;
  line-height: 28px;
  margin-bottom: 40px;
}

.attachments {
  display: flex;
  flex-direction: column;
  margin-bottom: 24px;
  position: relative;
}

.attachments__label {
  font-family: var(--body-font);
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
  margin-bottom: 16px;
}

.attachments__files {
  display: flex;
  justify-content: flex-start;
}
.attachments__files > .file-download-link {
  margin-right: 24px;
}

.attachments__tooltip {
  top: 54px;
  box-shadow: 0 10px 10px 0 rgba(74, 78, 87, 0.2);
  border-top: 1px solid rgba(74, 78, 87, 0.1);
}
.attachments__tooltip::before, .attachments__tooltip::after {
  display: none;
}

.attachments__tooltip-link {
  white-space: pre-wrap;
  text-align: center;
}

.content-header {
  display: flex;
  flex-direction: column;
  padding-bottom: 40px;
}
@media (min-width: 480px) {
  .content-header {
    padding-bottom: 48px;
  }
}

.content-header__title-container,
.content-header__meta {
  display: flex;
  flex-direction: column;
  margin-bottom: 24px;
}
@media (min-width: 768px) {
  .content-header__title-container,
  .content-header__meta {
    flex-direction: row;
    justify-content: space-between;
    margin-bottom: 0;
  }
}

.content-header__title {
  margin-bottom: 24px;
}
@media (min-width: 768px) {
  .content-header__title {
    flex: 1 1 auto;
    margin-right: 40px;
  }
}

.content-header__follow {
  flex: 1 0 auto;
}
@media (min-width: 768px) {
  .content-header__follow {
    width: 100%;
    flex: 0 1 230px;
    align-self: baseline;
  }
}

.content-header__publish-info {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
}
@media (min-width: 768px) {
  .content-header__publish-info {
    margin-bottom: 0;
  }
}

.content-header__publish-info-content {
  display: flex;
  flex-direction: column;
}

.content-header__author-name {
  font-family: var(--body-font);
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
}

.content-header__author-link {
  color: #3244ff;
}

.content-header__follow-link {
  font-weight: 400;
  margin-left: 8px;
  text-decoration: underline;
}

.content-header__author {
  margin-right: 24px;
}

.content-header__date {
  color: #1d1d1b;
}

.content-header__sponsored-by {
  display: flex;
  flex-direction: row;
  gap: 4px;
  margin-bottom: 16px;
}

.content-header__sponsor-icon {
  max-height: 24px;
}

.content-header__sponsor-text {
  color: #4a4e57;
  text-decoration: underline;
}

.comment {
  display: flex;
  flex-direction: column;
  padding: 24px 16px;
  width: 100%;
}
@media (min-width: 768px) {
  .comment {
    padding: 16px 40px;
  }
}

.comment--nested {
  display: none;
}
@media (min-width: 768px) {
  .comment--nested {
    display: flex;
    padding-top: 0;
    padding-bottom: 0;
    padding-right: 0;
  }
}
.is-expanded .comment--nested {
  padding-top: 0;
  padding-bottom: 0;
  display: flex;
}
.is-expanded .comment--nested:not(.comment--nested-multiple) {
  border-left: 2px solid #bcbcbc;
}
@media (min-width: 768px) {
  .is-expanded .comment--nested:not(.comment--nested-multiple) {
    border-left: 0;
  }
}

.comment--nested-multiple {
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 0;
  border-left: 0;
}

.comment--preview .comment__reply-button,
.comment--preview .comment__actions {
  display: none;
}
.comment--preview .comment__text {
  margin-bottom: 0;
}

.comment__header {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .comment__header {
    align-items: center;
    flex-direction: row;
  }
}

.comment__avatar {
  margin-right: 16px;
  margin-bottom: 16px;
  position: relative;
}
@media (min-width: 768px) {
  .comment__avatar {
    margin-bottom: 0;
  }
}
.comment--nested .comment__avatar::before {
  content: "";
  position: absolute;
  width: 16px;
  border-bottom: 1px solid #bcbcbc;
  left: -16px;
  top: 50%;
  transform: translateY(-50%);
}
@media (min-width: 768px) {
  .comment--nested .comment__avatar::before {
    width: 40px;
    left: -40px;
  }
}

.comment__metadata {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (min-width: 992px) {
  .comment__metadata {
    flex-grow: 1;
  }
}
@media (min-width: 768px) {
  .comment__metadata {
    align-items: center;
    flex-direction: row;
  }
}

.comment__user-metadata {
  display: none;
}
@media (min-width: 992px) {
  .comment__user-metadata {
    display: block;
  }
}

.comment__actions {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
}
@media (min-width: 768px) {
  .comment__actions {
    justify-content: flex-end;
  }
}

@media (min-width: 768px) {
  .comment__body {
    margin-left: 64px;
  }
}

.comment__timestamps {
  display: flex;
  flex-direction: column;
}
@media (min-width: 480px) {
  .comment__timestamps {
    flex-direction: row;
  }
}

.comment__datetime {
  font-family: var(--body-font);
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
  color: #1d1d1b;
  display: block;
  margin-bottom: 16px;
  margin-right: 16px;
}

.comment__text {
  font-family: var(--body-font);
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 40px;
}

.comment__reply-button {
  margin-bottom: 24px;
  /* stylelint-disable selector-max-compound-selectors */
  /* stylelint-enable selector-max-compound-selectors */
}
.comment__reply-button::before {
  content: "reply";
  font-family: "Material Icons Round";
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;
  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;
  /* Support for IE. */
  font-feature-settings: "liga";
  margin-right: 8px;
}
.comment.is-being-replied-to > .comment__body-container > .comment__body > .comment__reply-button {
  display: none;
}

.comment__reply {
  /* stylelint-disable selector-max-compound-selectors */
  /* stylelint-enable selector-max-compound-selectors */
}
.comment:not(.is-being-replied-to) > .comment__body-container > .comment__reply {
  display: none;
}

.comment__replies {
  display: flex;
  flex-direction: column;
}

.comment__replies-divider {
  display: block;
  width: 100%;
  height: 1px;
  color: #bcbcbc;
  background-color: #bcbcbc;
}
@media (min-width: 768px) {
  .comment__replies-divider {
    margin-left: 40px;
  }
}

.comment__toggle-replies {
  font-family: var(--body-font);
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
  padding-left: 16px;
  padding-right: 16px;
  text-align: left;
  display: block;
  position: relative;
}
@media (min-width: 768px) {
  .comment__toggle-replies {
    display: none;
  }
}
.comment__toggle-replies::after {
  content: "keyboard_arrow_down";
  font-family: "Material Icons Round";
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;
  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;
  /* Support for IE. */
  font-feature-settings: "liga";
  speak: none;
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
}
.is-expanded .comment__toggle-replies::after {
  content: "keyboard_arrow_up";
  font-family: "Material Icons Round";
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;
  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;
  /* Support for IE. */
  font-feature-settings: "liga";
}

@media (min-width: 768px) {
  .comment--has-replies .comment__body-container {
    border-left: 2px solid #bcbcbc;
    margin-left: 18px;
  }
  .comment--has-replies .comment__body-container .comment__body {
    margin-left: 34px;
  }
  .comment--nested .comment__body-container {
    border-left: none;
    margin-left: 0;
  }
  .comment--nested .comment__body-container .comment__body {
    margin-left: 40px;
  }
}
.comment.is-being-edited > .comment__body-container > .comment__body {
  display: none;
}
.comment:not(.is-being-edited) > .comment__body-container > .comment__edit {
  display: none;
}

.add-comment {
  display: flex;
  flex-direction: column;
  position: relative;
  padding: 24px 16px;
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .add-comment {
    padding: 16px 40px;
  }
}
.add-comment.is-pending {
  opacity: 0.5;
}
.add-comment.is-reply {
  padding: 0;
  margin-left: 0;
}
@media (min-width: 768px) {
  .add-comment.is-reply {
    margin-left: 40px;
  }
}

.add-comment__title {
  font-family: var(--body-font);
  font-size: 18px;
  line-height: 28px;
  font-weight: 700;
  margin-bottom: 24px;
}

.add-comment__body {
  margin-bottom: 24px;
}

.add-comment__controls {
  display: flex;
  flex-direction: column;
}
@media (min-width: 480px) {
  .add-comment__controls {
    flex-direction: row;
  }
}

.add-comment__submit {
  width: 100%;
  margin-bottom: 16px;
}
@media (min-width: 480px) {
  .add-comment__submit {
    width: -moz-fit-content;
    width: fit-content;
    margin-bottom: 0;
  }
}

.add-comment__cancel {
  text-decoration: underline;
}
@media (min-width: 481px) {
  .add-comment__cancel {
    margin-left: 24px;
  }
}

.add-comment__loading-indicator {
  display: none;
}
.is-pending .add-comment__loading-indicator {
  position: absolute;
  top: 65px;
  left: 0;
  display: block;
}
.is-reply .add-comment__loading-indicator {
  top: 0;
}

.o-comment-section-header {
  padding: 24px 16px;
  text-align: center;
  margin-bottom: 24px;
}
@media (min-width: 768px) {
  .o-comment-section-header {
    padding: 16px 40px;
    text-align: left;
  }
}

.comment-report {
  display: inline-flex;
  position: relative;
}

.comment-report__tooltip {
  top: 54px;
  left: -150px;
  width: unset;
  box-shadow: 0 10px 10px 0 rgba(74, 78, 87, 0.2);
  border-top: 1px solid rgba(74, 78, 87, 0.1);
}
@media (min-width: 768px) {
  .comment-report__tooltip {
    left: -100%;
  }
}
.comment-report__tooltip::before, .comment-report__tooltip::after {
  display: none;
}

.comment-report__tooltip-link {
  white-space: pre;
  text-align: center;
}

.comment-votes {
  font-family: var(--body-font);
  font-size: 18px;
  line-height: 28px;
  font-weight: 700;
  display: inline-flex;
  flex-wrap: nowrap;
  align-items: center;
  background-color: #edeff1;
  line-height: 24px;
  position: relative;
  border-radius: 4px;
}
.comment-votes:last-child {
  margin-right: 0;
}

.comment-votes__vote--like {
  border-bottom-right-radius: 0;
}

.comment-votes__vote--dislike {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.comment-votes__count {
  margin-left: 4px;
  margin-right: 4px;
}

.comment-votes-tooltip {
  top: 54px;
  width: unset;
  box-shadow: 0 10px 10px 0 rgba(74, 78, 87, 0.2);
  border-top: 1px solid rgba(74, 78, 87, 0.1);
}
.comment-votes-tooltip::before, .comment-votes-tooltip::after {
  display: none;
}

.comment-votes-tooltip__link {
  white-space: pre;
  text-align: center;
}

.nominated-comment {
  border: 2px solid #ebebeb;
  border-radius: 4px;
}

.nominated-comment__label {
  font-family: var(--body-font);
  font-size: 18px;
  line-height: 28px;
  font-weight: 700;
  background-color: #ebebeb;
  padding: 24px;
}
@media (min-width: 768px) {
  .nominated-comment__label {
    padding: 24px 40px;
  }
}

.file-download-link {
  display: flex;
  text-align: center;
  align-items: center;
}
@media (min-width: 768px) {
  .file-download-link {
    flex-direction: column;
  }
}
.file-download-link:hover {
  color: #d9121f;
}
.file-download-link::before {
  content: "description";
  font-family: "Material Icons Round";
  font-weight: normal;
  font-style: normal;
  font-size: 34px;
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;
  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;
  /* Support for IE. */
  font-feature-settings: "liga";
  speak: none;
  color: #bcbcbc;
  margin-right: 4px;
}
@media (min-width: 768px) {
  .file-download-link::before {
    font-size: 56px;
    margin-bottom: 4px;
    margin-right: 0;
  }
}

.file-download-link__title {
  font-family: var(--body-font);
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.dz-error-message {
  margin-top: 24px;
}

.dz-size {
  display: none;
}

.dz-filename {
  margin-top: 24px;
}

.forum-listing-group__header {
  font-family: var(--header-font);
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
  padding: 24px 0;
  position: relative;
}
@media (min-width: 768px) {
  .forum-listing-group__header {
    font-size: 28px;
    line-height: 36px;
  }
}

/**
 * This file is read by the styleguide to automatically produce the list of colours names and variables
 * in the General/Colours page.
 *
 * It will assume any line beginning with an "$" is a colour definition line, and will ignore all others.
 */
/**
 * Site colours
 */
/**
 * Theme colours
 */
/**
 * General success / error type colours
 */
/**
 * Overrides for defaults set in include-media.scss
 */
/**
 * Icon font
 *
 * To be used as follows:
 * @include icon(string ligature, fontSize);
 * default font size 24px as this is preferred for material icons
 *
 */
/**
 * AvatarImage
 * Styles the standard avatar image (round icon)
 *
 * To be used as follows:
 * @include avatarImage($size);
 * where $size provides the height and width of the image
 *
 */
/**
 * Line clamp
 *
 * To be used as follows:
 * @include line-clamp(int number-of-lines);
 *
 */
/**
 * Loading shimmer
 * A loading animation in which a gradient sweeps through the background
 *
 * To be used as follows:
 * @include loadingShimmer;
 *
 */
/**
 * Card percentage width
 *
 * To be used as follows:
 * @include cardPercentageWidth(int number-per-row, horizontal-margin-between);
 *
 */
/**
 * Fade
 *
 * To be used as follows:
 * @include fade(int transition-time, bool reverse-animation, string transition-type);
 * reverse-animation defaults to false (fadeOut), true will make this a fadeIn transition.
 * transition-type defaults to ease
 * Requires '.fade' class to be applied to the element.
 *
 */
/**
 * Fields
 *
 * To be used as follows:
 * @include fields;
 * Applies default styling to basic form field elements such as input, textarea, select etc.
 *
 */
/**
 * Waffles
 */
@keyframes dropDown {
  from {
    opacity: 0;
    margin-top: calc(var(--dropdown-top-margin) - 10px);
  }
  to {
    opacity: 1;
    margin-top: var(--dropdown-top-margin);
  }
}
.forum-content__text h1 {
  font-family: var(--header-font);
  font-weight: 700;
  font-size: 36px;
  line-height: 44px;
}

@media (min-width: 768px) {
  .forum-content__text h1 {
    font-size: 40px;
    line-height: 48px;
  }
}
.forum-content__text h2 {
  font-family: var(--header-font);
  font-weight: 700;
  font-size: 28px;
  line-height: 36px;
}

@media (min-width: 768px) {
  .forum-content__text h2 {
    font-size: 32px;
    line-height: 40px;
  }
}
.forum-content__text h3 {
  font-family: var(--header-font);
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
}

@media (min-width: 768px) {
  .forum-content__text h3 {
    font-size: 28px;
    line-height: 36px;
  }
}
.forum-content__text h4 {
  font-family: var(--header-font);
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
}

@media (min-width: 768px) {
  .forum-content__text h4 {
    font-size: 28px;
    line-height: 36px;
  }
}
.forum-content__text h1,
.forum-content__text h2,
.forum-content__text h3,
.forum-content__text h4,
.forum-content__text p,
.forum-content__text ul,
.forum-content__text ol,
.forum-content__text table {
  margin-bottom: 24px;
}

.forum-content__text b,
.forum-content__text strong {
  font-weight: 700;
}

.forum-content__text em {
  font-style: italic;
}

.forum-content__text a:not(.o-button) {
  font-weight: 700;
  color: #3244ff;
}

.forum-content__text a:not(.o-button):hover {
  color: #d9121f;
}

.forum-content__text button a {
  color: #ffffff;
}

.forum-content__text ul {
  list-style: disc;
}

.forum-content__text ol {
  list-style: decimal;
}

.forum-content__text li {
  margin-left: 40px;
  margin-bottom: 8px;
}

.forum-content__text li:last-child {
  margin-bottom: 0;
}

.forum-content__text sup,
.forum-content__text sub {
  font-size: 75%;
  position: relative;
}

.forum-content__text sup {
  top: -0.5em;
}

.forum-content__text sub {
  bottom: -0.25em;
}

.forum-content__text table[border="1"] th,
.forum-content__text table[border="1"] td {
  border: 1px solid #1d1d1b;
}

.forum-content__text blockquote {
  padding: 8px 0 8px 24px;
  background-color: #ebebeb;
  border-left: 3px solid rgba(74, 78, 87, 0.2);
}

.forum-content__text blockquote p {
  margin-bottom: 0;
}

.forum-content__text > *:last-child {
  margin-bottom: 0;
}

.forum-content {
  display: flex;
  flex-direction: column;
  padding: 24px 16px;
}
@media (min-width: 768px) {
  .forum-content {
    padding: 16px 40px;
  }
}

.forum-content--nominated {
  padding-right: 13px;
  padding-left: 13px;
}
@media (min-width: 768px) {
  .forum-content--nominated {
    padding-right: 37px;
    padding-left: 37px;
  }
}

.forum-content--preview .forum-content__reply-button,
.forum-content--preview .forum-content__actions {
  display: none;
}
.forum-content--preview .forum-content__text {
  margin-bottom: 0;
}

.forum-content__header {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-bottom: 16px;
}
@media (min-width: 992px) {
  .forum-content__header {
    align-items: center;
    flex-direction: row;
  }
}

.forum-content__avatar {
  margin-right: 16px;
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .forum-content__avatar {
    margin-bottom: 0;
  }
}

.forum-content__metadata {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
}
@media (min-width: 768px) {
  .forum-content__metadata {
    align-items: center;
    flex-direction: row;
  }
}

.forum-content__actions {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
}
@media (min-width: 768px) {
  .forum-content__actions {
    justify-content: flex-end;
  }
}

@media (min-width: 768px) {
  .forum-content__body {
    margin-left: 64px;
  }
}
.forum-content--post .forum-content__body {
  margin-left: 0;
}
@media (min-width: 768px) {
  .forum-content--post .forum-content__body {
    padding: 40px 64px;
    border-radius: 4px;
    border: 1px solid rgba(188, 188, 188, 0.5);
  }
}

.forum-content__datetime {
  font-family: var(--body-font);
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
  color: #1d1d1b;
  display: block;
  margin-bottom: 16px;
}

.forum-content__text {
  font-family: var(--body-font);
  font-size: 18px;
  line-height: 28px;
  margin-bottom: 40px;
}

/**
 * This file is read by the styleguide to automatically produce the list of colours names and variables
 * in the General/Colours page.
 *
 * It will assume any line beginning with an "$" is a colour definition line, and will ignore all others.
 */
/**
 * Site colours
 */
/**
 * Theme colours
 */
/**
 * General success / error type colours
 */
/**
 * Overrides for defaults set in include-media.scss
 */
/**
 * Icon font
 *
 * To be used as follows:
 * @include icon(string ligature, fontSize);
 * default font size 24px as this is preferred for material icons
 *
 */
/**
 * AvatarImage
 * Styles the standard avatar image (round icon)
 *
 * To be used as follows:
 * @include avatarImage($size);
 * where $size provides the height and width of the image
 *
 */
/**
 * Line clamp
 *
 * To be used as follows:
 * @include line-clamp(int number-of-lines);
 *
 */
/**
 * Loading shimmer
 * A loading animation in which a gradient sweeps through the background
 *
 * To be used as follows:
 * @include loadingShimmer;
 *
 */
/**
 * Card percentage width
 *
 * To be used as follows:
 * @include cardPercentageWidth(int number-per-row, horizontal-margin-between);
 *
 */
/**
 * Fade
 *
 * To be used as follows:
 * @include fade(int transition-time, bool reverse-animation, string transition-type);
 * reverse-animation defaults to false (fadeOut), true will make this a fadeIn transition.
 * transition-type defaults to ease
 * Requires '.fade' class to be applied to the element.
 *
 */
/**
 * Fields
 *
 * To be used as follows:
 * @include fields;
 * Applies default styling to basic form field elements such as input, textarea, select etc.
 *
 */
/**
 * Waffles
 */
.o-forum-content-header {
  padding: 24px 16px;
  text-align: center;
  margin-bottom: 24px;
}
@media (min-width: 768px) {
  .o-forum-content-header {
    padding: 16px 40px;
    text-align: left;
  }
}

.forum-post-listing {
  padding-bottom: 40px;
}

.forum-post-listing__title-bar {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px 8px;
  color: #ffffff;
  background-color: #1d1d1b;
  align-items: center;
  margin-bottom: 24px;
}
@media (min-width: 480px) {
  .forum-post-listing__title-bar {
    flex-direction: row;
    padding: 24px 24px;
  }
}

.forum-post-listing__title {
  margin-bottom: 24px;
}
@media (min-width: 480px) {
  .forum-post-listing__title {
    margin-bottom: 0;
  }
}

.forum-post-listing__create-post {
  width: 100%;
}
@media (min-width: 480px) {
  .forum-post-listing__create-post {
    max-width: 250px;
  }
}

.forum-post-listing__label {
  font-family: var(--body-font);
  font-size: 18px;
  line-height: 28px;
  font-weight: 700;
  margin-bottom: 24px;
}
.forum-post-listing__label strong {
  color: #d9121f;
}

.forum-post-listing__options {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (min-width: 768px) {
  .forum-post-listing__options {
    flex-direction: row;
  }
}

.forum-post-listing__search,
.forum-post-listing__search-info {
  margin-bottom: 24px;
}

.forum-post-listing__contribute-link {
  color: #3244ff;
  font-weight: 700;
}
.forum-post-listing__contribute-link:hover {
  color: #d9121f;
}

.forum-post-listing__sort {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.forum-post-listing__sort > .select-field {
  width: auto;
  margin-right: 24px;
  margin-bottom: 24px;
}

.forum-post-listing__paginator {
  display: flex;
  width: 100%;
  margin-bottom: 24px;
}
@media (min-width: 768px) {
  .forum-post-listing__paginator {
    justify-content: flex-end;
    margin-bottom: 0;
  }
}

.forum-post-preview__actions {
  display: flex;
  flex-direction: column;
  margin-bottom: 24px;
}
@media (min-width: 480px) {
  .forum-post-preview__actions {
    flex-direction: row;
    margin-bottom: 40px;
  }
}

.forum-post-preview__action {
  margin-bottom: 24px;
}
@media (min-width: 480px) {
  .forum-post-preview__action {
    margin-bottom: 0;
    margin-right: 24px;
    padding: 16px 64px;
  }
}

.forum-post-preview__cancel-text {
  font-family: var(--body-font);
  font-size: 16px;
  line-height: 24px;
}

.forum-listing-item {
  width: 100%;
  display: inline-flex;
  flex-direction: column;
  border: 1px solid rgba(29, 29, 27, 0.17);
  transition: 0.2s;
}
.forum-listing-item:hover {
  transform: scale(1.02);
}

.forum-listing-item__link {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-bottom: 1px solid #bcbcbc;
  padding: 24px;
}
@media (min-width: 768px) {
  .forum-listing-item__link {
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
  }
}

.forum-listing-item__metadata {
  font-family: var(--header-font);
  font-weight: 700;
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .forum-listing-item__metadata {
    margin-left: auto;
  }
}

.forum-listing-item__metadata-set {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
}
@media (min-width: 768px) {
  .forum-listing-item__metadata-set {
    justify-content: flex-start;
  }
}

.forum-listing-item__metadata-set--highlighted {
  color: #d9121f;
}

.forum-listing-item__metadata-label {
  margin-left: 8px;
}

.forum-listing-item__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media (min-width: 768px) {
  .forum-listing-item__body {
    flex-basis: 70%;
  }
}

.forum-listing-item__body-title {
  font-family: var(--body-font);
  font-size: 18px;
  line-height: 28px;
  font-weight: 700;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: #1d1d1b;
  margin-bottom: 8px;
}
@media (min-width: 768px) {
  .forum-listing-item__body-title {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
}

.forum-listing-item__body-subtext {
  font-family: var(--body-font);
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 8px;
}
@media (min-width: 768px) {
  .forum-listing-item__body-subtext {
    display: flex;
    flex-direction: row;
    margin-bottom: 0;
  }
}

.forum-listing-item__icon {
  display: none;
}
@media (min-width: 768px) {
  .forum-listing-item__icon {
    margin-right: 16px;
    display: flex;
    width: 86px;
    height: 86px;
    background: #ebebeb;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
  }
  .forum-listing-item__icon::before {
    content: "forum";
    font-family: "Material Icons Round";
    font-weight: normal;
    font-style: normal;
    font-size: 32px;
    display: inline-block;
    line-height: 1;
    text-transform: none;
    letter-spacing: normal;
    word-wrap: normal;
    white-space: nowrap;
    direction: ltr;
    /* Support for all WebKit browsers. */
    -webkit-font-smoothing: antialiased;
    /* Support for Safari and Chrome. */
    text-rendering: optimizeLegibility;
    /* Support for Firefox. */
    -moz-osx-font-smoothing: grayscale;
    /* Support for IE. */
    font-feature-settings: "liga";
    color: #d9121f;
  }
}

.forum-listing-item__recent {
  font-family: var(--body-font);
  font-size: 16px;
  line-height: 24px;
  padding: 24px 24px;
}

.forum-listing-item__recent-subtext {
  font-weight: bold;
}

.forum-listing-item__recent-post {
  text-decoration: underline;
}

@media (min-width: 992px) {
  .forum_highlights {
    display: flex;
  }
}

@media (min-width: 992px) {
  .forum_highlights__forum {
    margin-right: 24px;
  }
  .forum_highlights__forum .d-card-deck:last-child {
    margin-bottom: 0;
  }
}

.forum_highlights__body {
  border: 1px solid rgba(29, 29, 27, 0.17);
  padding: 24px;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .forum_highlights__body {
    padding: 24px;
    flex: 1 0 404px;
  }
}

.forum_highlights__description {
  font-family: var(--body-font);
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 24px;
}

.forum_highlights__title {
  font-family: var(--body-font);
  font-size: 18px;
  line-height: 28px;
  font-weight: 700;
  margin-bottom: 24px;
}

.hero {
  height: 100%;
  position: relative;
  overflow: hidden;
  color: var(--text-colour);
  padding: 32px 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .hero {
    flex-direction: row;
    flex-wrap: wrap;
  }
}
@media (min-width: 992px) {
  .hero {
    padding: 48px 0;
    gap: 48px;
  }
}

.hero__stats-block {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.hero__stats-block .d-hero__stats-block {
  width: calc(33.3333333333% - 10.6666666667px);
}

.hero__title {
  font-family: var(--header-font);
  font-weight: 700;
  font-size: 44px;
  line-height: 52px;
  max-width: 620px;
  display: inline-block;
  flex: 1 1 auto;
}
@media (min-width: 768px) {
  .hero__title {
    font-size: 48px;
    line-height: 56px;
  }
}
.hero__title > b {
  color: var(--alt-text-colour);
}

@media (min-width: 768px) {
  .hero__title--spaced {
    flex: 1 0;
  }
}

.hero__body {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
}
@media (min-width: 768px) {
  .hero__body {
    flex: 1 0;
  }
}

.hero__content {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .hero__content {
    flex: 1 0;
    flex-direction: row;
    gap: 24px;
  }
}
@media (min-width: 992px) {
  .hero__content {
    flex: 1 0;
    flex-direction: row;
  }
}

.hero__subtitle {
  font-family: var(--body-font);
  font-size: 16px;
  line-height: 24px;
}
@media (min-width: 768px) {
  .hero__subtitle {
    flex: 1;
  }
}

@media (min-width: 768px) {
  .hero__image {
    flex: 0 1 auto;
  }
}

.hero--variant-column {
  flex-direction: column;
  padding: 32px 0;
  gap: 32px;
  align-items: center;
}
@media (min-width: 992px) {
  .hero--variant-column {
    flex-direction: row;
    gap: 64px;
    padding: 16px 0;
  }
}
.hero--variant-column > .hero__content {
  flex-direction: column;
  gap: 32px;
}
@media (min-width: 992px) {
  .hero--variant-column > .hero__content {
    padding: 32px 0;
    flex: 1 0 calc(50vw - 32px);
  }
}
@media (min-width: 992px) {
  .hero--variant-column > .hero__image {
    flex: 1 0 calc(50vw - 32px);
  }
}

.hero--new-layout {
  color: #ffffff;
  gap: 40px;
  text-align: center;
  padding: 0;
}
.hero--new-layout .hero__body {
  align-items: center;
  gap: 24px;
}
.hero--new-layout .hero__content {
  align-items: center;
  flex-direction: column;
}
.hero--new-layout .hero__title {
  max-width: -moz-max-content;
  max-width: max-content;
}
.hero--new-layout .hero__subtitle {
  font-family: var(--body-font);
  font-size: 18px;
  line-height: 28px;
}

.stats-block {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 24px 8px;
  background: #ffffff;
  border-radius: 10px;
  border: 1px solid #edeff1;
}
@media (min-width: 768px) {
  .stats-block {
    align-items: stretch;
    padding: 24px;
  }
}

.stats-block__value {
  font-family: var(--header-font);
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
  color: #d9121f;
}
@media (min-width: 768px) {
  .stats-block__value {
    font-size: 28px;
    line-height: 36px;
  }
}

.stats-block__label {
  font-family: var(--body-font);
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
}

.user-metadata {
  display: flex;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .user-metadata {
    justify-content: flex-start;
    margin-bottom: 0;
  }
}

.user-metadata__set {
  font-family: var(--body-font);
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
  display: flex;
  flex-direction: column;
  margin-right: 16px;
  text-align: center;
}
@media (min-width: 480px) {
  .user-metadata__set {
    flex-direction: row;
  }
  .user-metadata__set .user-metadata__value {
    margin-right: 4px;
  }
}

@media (min-width: 768px) {
  .user-metadata__set--reversed {
    flex-direction: row-reverse;
  }
  .user-metadata__set--reversed .user-metadata__value {
    margin-right: 0;
  }
  .user-metadata__set--reversed .user-metadata__term {
    margin-right: 4px;
  }
}

.user-metadata__value {
  color: #d9121f;
}

.user-metadata__term {
  color: #4a4e57;
}

.mini-profile {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media (min-width: 769px) {
  .mini-profile {
    margin: 24px 64px;
  }
}

.mini-profile__avatar {
  flex-direction: column;
  gap: 8px;
}
.mini-profile__avatar > .avatar__image {
  width: 92px;
  height: 92px;
}
.mini-profile__avatar > .avatar__username {
  font-family: var(--header-font);
  font-weight: 700;
  font-size: 28px;
  line-height: 36px;
  margin-left: 0;
  font-size: 32px;
  color: #1d1d1b;
}
@media (min-width: 768px) {
  .mini-profile__avatar > .avatar__username {
    font-size: 32px;
    line-height: 40px;
  }
}

.mini-profile__bio {
  text-align: center;
  margin-bottom: 16px;
}

.mini-profile__since {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.mini-profile__since-date {
  font-family: var(--body-font);
  font-size: 12px;
  line-height: 20px;
}

.mini-profile__metadata > .user-metadata {
  margin-bottom: 0;
  gap: 8px;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}
@media (min-width: 769px) {
  .mini-profile__metadata > .user-metadata {
    gap: 16px;
  }
}
.mini-profile__metadata > .user-metadata > .user-metadata__set {
  margin-right: 0;
  gap: 4px;
  flex-direction: row;
}
@media (min-width: 769px) {
  .mini-profile__metadata > .user-metadata > .user-metadata__set {
    gap: 0;
  }
}
.mini-profile__metadata > .user-metadata > .user-metadata__set--reversed {
  flex-direction: row-reverse;
}

@media (min-width: 769px) {
  .mini-profile__buttons {
    gap: 16px;
  }
}

/**
 * Components - structures
 */
.s-comments {
  width: 100%;
  padding: 32px 0;
}
@media (min-width: 992px) {
  .s-comments {
    padding-right: 16px;
    padding-left: 16px;
  }
}
.s-comments > .d-comments {
  width: 100%;
  max-width: 1042px;
  margin-right: auto;
  margin-left: auto;
}
.s-comments > .d-comments--header {
  background-color: #1d1d1b;
  padding-right: 0;
  padding-left: 0;
}

/**
 * Section is the default block on a page.
 *
 * It'll typically have one or more d-section children
 */
.s-user-content {
  width: 100%;
  padding: 12px 16px;
}
.s-user-content > .d-user-content {
  width: 100%;
  max-width: 1042px;
  margin-right: auto;
  margin-left: auto;
}

.s-user-content--header {
  padding-top: 32px;
}

.s-user-content--fullwidth {
  max-width: 1276px;
  margin-left: auto;
  margin-right: auto;
}
.s-user-content--fullwidth > .d-user-content {
  max-width: none;
  margin: 0;
}

.s-user-content--no-padding {
  padding-left: 0;
  padding-right: 0;
}

.s-user-content--2cols {
  max-width: 1276px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 992px) {
  .s-user-content--2cols {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
  }
  .s-user-content--2cols > .d-user-content {
    margin: 0;
    width: 66.66%;
  }
  .s-user-content--2cols > .d-user-content__aside {
    width: 33.33%;
    padding-left: 64px;
  }
}

.d-user-content__aside--sticky {
  position: sticky;
  top: 70px;
}
