/*  core */

@font-face {
  font-family: 'Material Symbols Outlined';
  font-style: normal;
  font-weight: 100 700;
  font-display: block;
  src: url("/fonts/MaterialSymbolsOutlined[FILL,GRAD,opsz,wght].woff2") format("woff2"),
       url("/fonts/MaterialSymbolsOutlined[FILL,GRAD,opsz,wght].ttf") format("truetype");
}

.material-symbols-outlined {
  font-family: 'Material Symbols Outlined';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  max-width: min-content;
  width: 1em;
}

html.material-symbols-pending .material-symbols-outlined {
  visibility: hidden;
}

@view-transition {
  navigation: auto;
}

:root, [data-theme='light'] {
  --light: #c9c9c9;
  --input: #f0f0f0;
  --dark: #333333;
  --bright: #ffffff;
  --text: #333333;
  --background: #ffffff;
  --blue: #0077b37a;
  --orange: #ff4500;
  --orange-opacity: #ff45009c;
  --blood-orange: #ce3800;
  --main-red: #c30000;
  --brand-background: #ffffff;
  --brand-text: #333333;
  --main-blue: #0283bd;
  --main-green: #15B007;
  --subtle-bg: #f1f1f1;
  /** CSS DARK THEME PRIMARY COLORS */
  --color-primary-100: #ff4500;
  --color-primary-200: #ff6028;
  --color-primary-300: #ff7743;
  --color-primary-400: #ff8c5d;
  --color-primary-500: #ffa077;
  --color-primary-600: #ffb491;
  /** CSS DARK THEME SURFACE COLORS */
  --color-surface-100: #121212;
  --color-surface-200: #282828;
  --color-surface-300: #3f3f3f;
  --color-surface-400: #575757;
  --color-surface-500: #717171;
  --color-surface-600: #8b8b8b;
}

[data-theme="dark"] {
  --light: #2d2d2d;
  --input: #333333;
  --dark: #292929;
  --bright: #ffffff;
  --text: #cfcfcf;
  --blood-orange: #9d2d03;
  --background: #000000;
  --blue: #0077b33b;
  --brand-background: #00284d;
  --brand-text: #cfcfcf;
  --orange-opacity: #ff450066;
  --subtle-bg: #242424;
}

@media (prefers-color-scheme: dark) {
  :root {
    --light: #2d2d2d;
    --input: #333333;
    --dark: #292929;
    --bright: #ffffff;
    --text: #cfcfcf;
    --blood-orange: #9d2d03;
    --background: #000000;
    --blue: #0077b33b;
    --brand-background: #00284d;
    --brand-text: #cfcfcf;
    --orange-opacity: #ff450066;
    --subtle-bg: #242424;
  }

  [data-theme='light'] {
    --light: #c9c9c9;
    --input: #f0f0f0;
    --dark: #333333;
    --bright: #ffffff;
    --text: #333333;
    --background: #ffffff;
    --blue: #0077b37a;
    --orange: #ff4500;
    --orange-opacity: #ff45009c;
    --blood-orange: #ce3800;
    --brand-background: #ffffff;
    --brand-text: #333333;
    --main-blue: #0283bd;
    --main-green: #15B007;
    --subtle-bg: #f1f1f1;
  }
}

html {
  scroll-behavior: smooth;
}

body {
  font-size: 20px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  font-display: fallback;
  color: var(--text);
  margin: 0;
  background-color: var(--background);
}

img, object, svg { max-width: 100%; display: block;}

content img { border-radius: 5px; }

.image-inline-text {
  width: 20px;
  margin: 0!important;
  display: inline-block;
  padding: 0;
  margin-bottom: -2px!important;
}

.material-symbols-outlined {
  font-size: inherit;
  font-variation-settings:
  'FILL' 0,
  'wght' 600,
  'GRAD' 0,
  'opsz' 24;
  vertical-align: middle;
}

#navbar .material-symbols-outlined {
  font-size: 120%;
  vertical-align: middle;
}

.meta-tiny .material-symbols-outlined {
  font-size: 110%;
}

.post-meta-base-right .material-symbols-outlined {
  vertical-align: middle;
}

.breadcrumb {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-flow: row-reverse wrap-reverse;
  flex-wrap: wrap-reverse;

  & li {
    display: inline;
    padding-right: 4px;
  }

  & .end-icon {

    & .material-symbols-outlined {
      transform: rotate(90deg);
    }
    
  }
}

audio { width: 80%; min-width: 300px; }

h1, h2, h3, h4, h5, h6 {
  font-weight: 500;
  padding: 0;
}

h3, h4, h5, h6 {
  font-weight: 400;
}

h2 { font-size: 36px; }
h3 { font-size: 30px; }
h4 { font-size: 24px; }
h5 { font-size: 20px; }

:is(h1, h2, h3, h4, h5) a {
  text-decoration: none;
  border-bottom: none;
}

/*:is(article :is(h1, h2, h3, h4, h5, h6)) a::after {
  content: "\f13d";
  font-size: 17px;
  vertical-align: super;
  padding-left: 10px;
  font-family: 'Font Awesome 5 Pro';
  cursor: pointer;
  display: none;
  transition: all 0.2s ease;
}*/

:is(article :is(h1, h2, h3, h4, h5, h6)) a:hover {
  all: unset;
}

:is(article :is(h1, h2, h3, h4, h5, h6)) a:hover::after {
  display: inherit;
  transition: all 0.2s ease;
}

blockquote {
  padding: 20px 20px 20px 60px;
  margin: 20px 0;
  border-radius: 5px;
  position: relative;
  border: 4px solid var(--orange);
}

blockquote::before{
  content: "\201C";
  font-size:4em;
  position: absolute;
  left: 20px;
  top:-10px;
  color: var(--orange);
}

blockquote::after{
  content: '';
}

.label {
  font-size: 70%;
  padding: 0 3px;
  background-color: var(--light);
  border-radius: 5px;
  text-wrap: nowrap;

  &.label-sup {
    vertical-align: text-top;
    vertical-align: super;
  }

  &.label-green {
    background-color: var(--main-green);
    color: white;
  }

  &.label-orange {
    background-color: var(--orange);
    color: white;
  }

  &.label-main-blue {
    background-color: var(--main-blue);
    color: white;
  }

  &.label-blue {
    background-color: var(--blue);
    color: white;
  }

  & .material-symbols-outlined {
    font-size: 130%;
    padding: 0 0 2px 2px;
  }
}

a {
  color: inherit;
  text-underline-offset: 2px;
}

a.active {
  color: var(--blood-orange);
}

.aside-section ul li a.active {
  color: var(--blood-orange);
}

a:hover {
  opacity: 0.8;
}

.text-orange {
  color: var(--orange)
}

.text-blue {
  color: var(--blue);
}

.text-green {
  color: var(--main-green);
}

.text-red {
  color: var(--main-red);
}

.text-align-center {
  text-align: center;
}

.text-align-right {
  text-align: right;
}

.text-align-left {
  text-align: left;
}

hr {
    margin-top: 20px;
    margin-bottom: 20px;
    border: 0;
    border-top: 1px solid var(--text);
}

*:focus {
  outline: 0;
}

cite {
  display: block;
  padding-top: 10px;
  font-size: 15px;
  color: #929292;
}

code {
  font-family: monospace;
  overflow-wrap: anywhere;
  overflow-x: scroll;
  color: var(--blood-orange);
}

pre {
  font-family: monospace;
  padding: 16px;
  overflow-wrap: anywhere;
  overflow-x: scroll;
  background-color: #272822;
  border-radius: 5px;
  color: var(--orange);
}

pre code {
  color: var(--orange);
  border: none;
  padding: 0;
}

input[type=text], 
input[type=email], 
input[type=password], 
input[type=tel], 
input[type=number], 
input[type=search], 
input[type=url], 
input[type=date],
input[type=time],
input[type=checkbox],
textarea,
select {
  background-color: var(--input);
  color: var(--text);
  border: 0;
  padding: 13px;
  border-radius: 5px; 
  outline: 2px solid transparent;
  outline-offset: -2px;
}

input::placeholder {
  color: var(--text);
  opacity: 0.6;
}

input:focus {
  outline: 2px solid var(--orange);
  transition: outline 0.3s ease-in-out;
}

textarea::placeholder {
  color: var(--text);
  opacity: 0.6;
}

textarea:focus {
  outline: 2px solid var(--orange);
  transition: outline 0.3s ease-in-out;
}

.banner {
  background-color: var(--orange);
  padding: 10px;
  border-radius: 5px;
  color: var(--bright);
}

#af_group {
  display: grid;
  grid-template-columns: 1fr 2fr;
  grid-gap: 30px;
  /*padding-top: 30px;*/
}

#af_group_split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 30px;
  /*padding-top: 30px;*/
}

#af_img img {
  margin: 0 auto;
}

.responsive-table-wrapper {
  overflow-x: auto;
  display: block;
}

table {
  border-collapse: collapse;
  width: 100%;
  margin: 20px 0;
  font-size: 80%;
}

thead {
  background-color: #333;
  color: #fff;
}

th,
td {
  text-align: left;
  padding: 8px;
  border-bottom: 1px solid #ddd;
}

.responsive-table-wrapper table {
  border-spacing: 0px 6px;
  border-collapse: separate;
  width: 100%;
  margin: 0 0 20px;
  font-size: 80%;
}

.responsive-table-wrapper thead {
  background-color: transparent;
  color: var(--text);
}

.responsive-table-wrapper tr th {
  padding-bottom: 0;
}

.responsive-table-wrapper th, .responsive-table-wrapper td {
  padding: 18px 14px;
  border-bottom: none;
}

.responsive-table-wrapper td {
  background-color: var(--subtle-bg);
}

.responsive-table-wrapper td:first-child {
  border-radius: 10px 0 0 10px;
}

.responsive-table-wrapper td:last-child {
  border-radius: 0 10px 10px 0;
}

.scrollable {
  max-height: 4.5em; /* limit vertical size */
  overflow-y: auto;
  white-space: normal;
  line-height: 1.5;
  padding-right: 4px;
}

.button {
  /* background-color: var(--brand-background); */
  border: 4px solid var(--orange);
  border-radius: 5px;
  box-sizing: border-box;
  cursor: pointer;
  display: inline-block;
  padding: 10px 15px;
  text-align: center;
  text-decoration: none;
  touch-action: manipulation;
  background-color: var(--orange);
  color: var(--bright);
}

.button-small {
  padding: 4px 8px;
}

::-webkit-input-placeholder { color: #dbdbdb; }
::-moz-placeholder { color: #dbdbdb; }
::placeholder { color: #dbdbdb; }

.extra-bold {
  font-weight: 900!important;
}

.regular {
  font-weight: 400;
}

.light {
  font-weight: 300;
}

.no-padding {
  padding: 0!important;
}

button {
  font-weight: 300;
  font-family: 'Open Sans', sans-serif;
  box-shadow: #00000016 0px 3px 8px;
  transition: all 0.2s ease;
  border: 0;
}

#darktoggle, #corner_search, #corner_menu, #qr_generate {
  justify-self: center;
  padding: 10px;
}

#qr_generate {
  position: relative;
}

.bubble-wrap {
  display: inline-block;
  position: absolute;
  bottom: -30px; /* Position the bubble below the icon */
  left: -74px;
  transform: translateX(-50%);
  white-space: nowrap; /* Prevent text from wrapping */
}

.bubble-wrap #message_bubble {
  display: inline;
  background-color: #ffcc00; /* Bubble background colour */
  color: #000; /* Text colour */
  border-radius: 10px; /* Rounded corners */
  padding: 5px 10px; /* Padding around the text */
  font-size: 12px; /* Adjust font size as needed */
}

.bubble-wrap .material-symbols-outlined { 
  transform: rotate(90deg);
  display: inline-block;
  /*font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;*/
  font-weight: 400;
  max-width: 24px;
}

#darktoggle {
  cursor: pointer;
}

#corner_menu, #menu_modal {
  display: none;
}

#bayton_logo {
  justify-self: start;
  padding-left: 10px;
}

#bayton_logo :is(img, object, svg) {
  width: 170px;
}

#platinum_logo {
  padding: 20px 0 0;
}

#platinum_logo img {
  width: 30px;
  margin: 0 auto;
}

.home-background {
  background: radial-gradient(circle, rgba(0,59,89,1) 0%, rgba(0,119,179,1) 50%, rgba(0,206,250,1) 87%, rgb(0, 213, 255) 100%);
  color: #FFFFFF;
}

#navbar {
  display: grid;
  padding: 15px 20px 15px;
  grid-template-columns: 180px 40px 5fr 60px 60px 60px;
  align-items: center;
  height: 100px;
  max-width: 2800px;
  margin: 0 auto;
}

nav #nav_links {
  padding-top: 5px;
  font-size: 16px;
  padding-right: 20px;
  justify-self: end;
  grid-column-start: 3;
}

#nav_links a {
  text-decoration: none;
  transition: none;
  padding-left: 20px;
  border-bottom: none;
}

.nav-link-individual {
  display: inline;
}

content {
  padding: 30px 20px 0;
  max-width: 1200px;
  margin: 0 auto;
  display: block;
  overflow-wrap: break-word;
}

content#home {
  display: grid;
  max-width: 100%;
  padding: 0;
}

.intro_wrapper{
  display: grid;
  grid-template-columns: 1fr;
  padding: 0 0 100px;
  color: var(--bright);
}

/* Android advisories - card layout */

.android-advisories {
  display: grid;
  gap: 18px;
  padding: 20px 0;
}

.android-advisory-card {
  display: block;
  text-decoration: none;
  border: 1px solid var(--light);
  border-radius: 16px;
  padding: 28px;
  background: var(--background);
  transition: border-color 0.15s ease, transform 0.15s ease;
}

.android-advisory-card:hover {
  border-color: var(--orange);
  transform: translateY(-1px);
}

.android-advisory-card__meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.android-advisory-card__date {
  font-size: 18px;
  color: color-mix(in srgb, var(--text) 55%, transparent);
}

.android-advisory-card__badge {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--orange);
  color: var(--bright);
}

.android-advisory-card__title {
  font-size: 26px;
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 12px;
}

.android-advisory-card__excerpt {
  font-size: 18px;
  line-height: 1.55;
  color: color-mix(in srgb, var(--text) 70%, transparent);
}

.android-advisories__actions {
  padding-top: 6px;
  justify-self: end;
}

@media (max-width: 900px) {
  .android-advisory-card {
    padding: 22px;
    border-radius: 14px;
  }

  .android-advisory-card__title {
    font-size: 22px;
  }
}

/* Android docs - card grid */

.android-docs-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  padding: 20px 0 30px;
}

.android-doc-card {
  border: 1px solid var(--light);
  border-radius: 16px;
  padding: 24px;
  background: var(--background);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color 0.15s ease, transform 0.15s ease;
}

.android-doc-card:hover {
  border-color: var(--orange);
  transform: translateY(-1px);
}

.android-doc-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.android-doc-card__flag {
  font-size: 12px;
  font-weight: 700;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--subtle-bg);
  border: 1px solid var(--light);
  color: color-mix(in srgb, var(--text) 75%, transparent);
}

.android-doc-card__title {
  font-size: 26px;
  font-weight: 800;
  margin: 0;
  line-height: 1.15;
}

.android-doc-card__desc {
  margin: 0;
  font-size: 18px;
  line-height: 1.55;
  color: color-mix(in srgb, var(--text) 65%, transparent);
}

.android-doc-card__links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.android-doc-card__links li a {
  text-decoration: none;
}

.android-doc-card__links li a::before {
  content: "»";
  padding-right: 10px;
}

.android-doc-card__links li a:hover {
  color: var(--orange);
}

.android-doc-card__footer {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--light);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.android-doc-card__count {
  font-size: 16px;
  color: color-mix(in srgb, var(--text) 55%, transparent);
}

.android-doc-card__viewall {
  text-decoration: none;
  font-weight: 700;
  color: var(--orange);
}

.android-doc-card__viewall:hover {
  color: var(--blood-orange);
}

@media (max-width: 1800px) {
  .android-docs-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 1200px) {
  .android-docs-grid {
    grid-template-columns: 1fr;
  }

  .android-doc-card {
    border-radius: 14px;
    padding: 20px;
  }

  .android-doc-card__title {
    font-size: 22px;
  }
}

/* Homepage redesign layout */

.home-redesign-card__header {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Icon is optional – layout should not break if missing */
.home-redesign-card__icon {
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 12px;
}

.home-redesign-card__icon svg,
.home-redesign-card__icon img {
  width: 100%;
  height: 100%;
  display: block;
}

content#home-redesign {
  display: block;
  max-width: 100%;
  padding: 0;
}

.home-redesign-container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 40px;
}

.home-redesign-section {
  padding: 110px 0;
}

.home-redesign-section--muted {
  background: var(--subtle-bg);
}

.home-redesign-section__intro {
  margin-bottom: 40px;
}

.home-redesign-section-partner-logos {
  #vendor_logo_container_scroll {
    padding-top: 60px;
  }
}

.home-redesign-section__title {
  font-size: clamp(44px, 4.6vw, 80px);
  line-height: 1.12;
  margin: 0 0 14px;
  font-weight: 700;
}

.home-redesign-section__title-small {
  font-size: clamp(28px, 2.6vw, 40px);
  line-height: 1.12;
  margin: 0 0 14px;
  font-weight: 700;
}

.home-redesign-section__title--centre {
  text-align: center;
}

.home-redesign-section__lede {
  font-size: 20px;
  line-height: 1.6;
  margin: 0;
  max-width: 900px;
}

.home-redesign-section__lede p {
  margin: 0;
}

.home-redesign-accent {
  color: var(--orange);
}

.home-redesign-hero {
  padding: 90px 0 35px;
}

.home-redesign-hero .home-redesign-container {
  align-items: center;
}

.home-redesign-hero__content {
  display: grid;
  gap: 22px;
}

.home-redesign-hero__title {
  font-size: clamp(60px, 5.6vw, 100px);
  line-height: 1.04;
  margin: 0;
  font-weight: 800;
}

.home-redesign-hero__title p {
  margin: 0;
}

.home-redesign-hero__subheading {
  font-size: 28px;
  line-height: 1.6;
  max-width: 900px;
  padding: 20px 0;
}

.home-redesign-hero__subheading p {
  margin: 0;
}

.home-redesign-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.home-redesign-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 20px 24px;
  border-radius: 8px;
  border: 1px solid var(--light);
  text-decoration: none;
  font-weight: 600;
  font-size: 19px;
  line-height: 1;
  transition: all 0.15s ease;
  gap: 8px;
}

.home-redesign-button--primary {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--bright);
}

.home-redesign-button--primary:hover {
  background: var(--blood-orange);
  border-color: var(--blood-orange);
}

.home-redesign-button--outline {
  background: var(--background);
  color: var(--text);
}

.home-redesign-button--outline:hover {
  border-color: var(--orange);
  color: var(--blood-orange);
}

.home-redesign-hero__intro {
  font-size: 18px;
  line-height: 1.7;
}

.home-redesign-section--mika {
  padding: 16px 0 110px;
}

.home-redesign-mika {
  padding: 22px;
}

.home-redesign-mika__copy {
  margin: 0 0 18px;
  font-size: 18px;
  line-height: 1.6;
}

.home-redesign-mika__form {
  width: 100%;
}

.home-redesign-mika__input-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--subtle-bg);
  border: 1px solid var(--light);
  border-radius: 8px;
  padding: 10px 12px;
  transition: border-color 0.15s ease;
}

.home-redesign-mika__input-bar:focus-within {
  border-color: var(--orange);
}

.home-redesign-mika__input {
  flex: 1;
  border: none;
  background: transparent;
  font-size: 18px;
  color: var(--text);
  outline: none;
  box-shadow: none;
  min-width: 0;
}

.home-redesign-mika__input:focus,
.home-redesign-mika__input:focus-visible {
  outline: none;
  box-shadow: none;
}

.home-redesign-mika__input::placeholder {
  color: color-mix(in srgb, var(--text) 42%, transparent);
}

.home-redesign-mika__submit {
  border: none;
  background: transparent;
  color: var(--orange);
  cursor: pointer;
  padding: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 999px;
  transition: background 0.15s ease, color 0.15s ease, transform 0.15s ease;
}

.home-redesign-mika__submit:hover {
  color: var(--blood-orange);
}

.home-redesign-hero__media {
  display: grid;
  justify-items: center;
}

.home-redesign-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.home-redesign-grid--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.home-redesign-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.home-redesign-card {
  border: 1px solid var(--light);
  padding: 18px;
  border-radius: 8px;
  background: var(--background);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color 0.15s ease, transform 0.15s ease;
}

.home-redesign-card:hover {
  border-color: var(--orange);
}

.home-redesign-card__title {
  font-size: 24px;
  font-weight: 700;
  margin: 0;
  padding-bottom: 12px;
}

.home-redesign-card__title a {
  text-decoration: none;
  color: inherit;
  transition: color 0.15s ease, text-decoration-color 0.15s ease;
}

.home-redesign-card:hover .home-redesign-card__title a {
  color: var(--orange);
  cursor: pointer;
}

.home-redesign-card__copy {
  font-size: 18px;
  line-height: 1.55;
  margin: 0;
}

.home-redesign-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 4px;

  a {
    text-decoration: none;
  }
}

.home-redesign-tag {
  background: var(--subtle-bg);
  border: 1px solid var(--light);
  border-radius: 6px;
  padding: 3px 8px;
  font-size: 11px;
  color: color-mix(in srgb, var(--text) 75%, transparent);
}

.home-redesign-card__action {
  margin-top: auto;
  font-weight: 600;
  text-decoration: none;
  color: var(--text);
  border: 1px solid var(--light);
  border-radius: 6px;
  padding: 8px 10px;
  text-align: center;
  font-size: 12px;
  line-height: 1;
  transition: border-color 0.15s ease, color 0.15s ease;
  width: 50%;
  align-self: end;
}

.home-redesign-card__action:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--bright);
}

.home-redesign-card__meta {
  font-size: 11px;
  color: color-mix(in srgb, var(--text) 55%, transparent);
}

.home-redesign-card--link {
  text-decoration: none;
  color: inherit;
}

/* Reference highlight cards: title + arrow row, no button-look */
.home-redesign-card--highlight {
  gap: 10px;
}

.home-redesign-card--highlight .home-redesign-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.home-redesign-card--highlight .home-redesign-card__arrow {
  font-weight: 700;
}

.home-redesign-card--highlight:hover .home-redesign-card__arrow {
  color: var(--blood-orange);
}

.home-redesign-card--highlight:hover .home-redesign-card__title {
  color: var(--orange);
  cursor: pointer;
}

/* Consultancy section – bespoke layout (matches Figma) */

.home-redesign-consultancy__content {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: start;
  margin-bottom: 70px;
}

.home-redesign-consultancy__logo {
  display: flex;
  gap: 24px;
  align-items: center;
}

.home-redesign-consultancy__badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.home-redesign-consultancy__badge-label {
    font-size: 16px;
    font-weight: 600;
    width: 120px;
    text-align: center;
}

.home-redesign-consultancy__logo img {
  max-width: 150px;
  height: auto;
}

@media (max-width: 900px) {
  .home-redesign-consultancy__content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .home-redesign-consultancy__logo {
    justify-self: start;
  }
}

.home-redesign-section--consultancy {
  padding-top: 140px;
  padding-bottom: 140px;
}

.home-redesign-consultancy__title {
  color: var(--orange);
}

.home-redesign-consultancy__subtitle {
  font-size: clamp(18px, 4vw, 30px);
  font-weight: 800;
  margin: 0 0 60px;
  line-height: 1;
}

/* List */
.home-redesign-consultancy__list {
  list-style: none;
  padding: 0;
  margin: 0 ;
  display: grid;
  gap: 20px;
}

.home-redesign-consultancy__list li {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: clamp(22px, 2.6vw, 32);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text);
}

/* Check-in-circle icon */
.home-redesign-consultancy__list li::before {
  content: " ✓ ";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  border: 2px solid var(--orange);
  color: var(--orange);
  font-weight: 900;
  flex: 0 0 24px;
}

.home-redesign-src { 
  display: block;
  font-size: 14px;
  padding: 10px 0;
  float: right;
}

/* Stat */
.home-redesign-consultancy__stat {
  margin-top: 24px;
}

.home-redesign-consultancy__stat small {
  font-size: 14px;
  color: color-mix(in srgb, var(--text) 55%, transparent);
}

.home-redesign-consultancy__stat a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.home-redesign-videos {
  margin-top: 30px;
}

.home-redesign-videos--top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: start;
}

.home-redesign-videos__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 40px;
}

@media (max-width: 950px) {
  .home-redesign-videos__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 650px) {
  .home-redesign-videos__grid {
    grid-template-columns: 1fr;
  }
}

.home-redesign-videos__column {
  display: contents;
}

/* Video section - consistent cards + cleaner embeds */

.home-redesign-video-card {
  border: 1px solid var(--light);
  border-radius: 10px;
  background: var(--background);
  overflow: hidden;
  transition: border-color 0.15s ease, transform 0.15s ease;
}

.home-redesign-video-card:hover {
  border-color: var(--orange);
}

/* Remove the default spacing the embed plugin adds so cards align */
.home-redesign-video-card .eleventy-plugin-youtube-embed {
  margin: 0;
}

/* Give any text (intro lines, captions) breathing room without boxing the iframe */
.home-redesign-video-card p,
.home-redesign-video-card small,
.home-redesign-video-card em {
  margin: 0;
  padding: 16px 16px 0;
}

/* If the markdown starts with a blockquote (your featured quote), make it calmer in this section */
#home-redesign-videos blockquote {
  border: 1px solid var(--light);
  background: var(--subtle-bg);
  color: color-mix(in srgb, var(--text) 85%, transparent);
  padding: 18px 18px 18px 52px;
  margin: 0;
}

#home-redesign-videos blockquote::before {
  color: color-mix(in srgb, var(--orange) 70%, transparent);
  top: -6px;
}

/* Ensure iframes always render at a consistent 16:9 and fill the card */
.home-redesign-video-card iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  display: block;
  border: 0;
}

/* Featured video card gets a touch more presence */
.home-redesign-video-card--featured {
  border-width: 2px;
}

@media screen and (max-width: 900px) {
  .home-redesign-container {
    padding: 0 20px;
  }
  .home-redesign-section {
    padding: 60px 0;
  }
  .home-redesign-hero {
    padding: 60px 0 25px;
  }
  .home-redesign-section--mika {
    padding: 12px 0 110px;
  }
  .home-redesign-mika {
    padding: 20px;
  }
  .home-redesign-mika__copy {
    font-size: 16px;
    margin-bottom: 16px;
  }
  .home-redesign-mika__input-bar {
    padding: 8px 10px;
  }
  .home-redesign-mika__input {
    font-size: 16px;
  }
  .home-redesign-hero .home-redesign-container,
  .home-redesign-grid,
  .home-redesign-grid--two,
  .home-redesign-grid--three,
  .home-redesign-videos,
  .home-redesign-videos__grid {
    grid-template-columns: 1fr;
  }
}

/* Logo ticker */

.ticker {
  display: grid;
  grid-auto-flow: column;
  align-items: center;
  justify-content: center;
  grid-gap: 30px;
  white-space: nowrap;
}

@keyframes ticker {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}

#vendor_logo_container_scroll {
  margin: 0 -40px;
  padding-top: 10px;
}

.ticker-item img {
  border-radius: 0;
  max-width: unset;
  display: inline-block;
}

/* End ticker */


#highlight_container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 100px 100px;
  padding-top: 50px;
}

.highlight-section h2 {
  margin: 0;
}

.highlight-section {
  border: 4px solid var(--orange);
  padding: 20px;
  border-radius: 5px;
}

.highlight-offside {
  border: none;
  align-self: center;
  font-size: 18px;
}

.highlight-offside-heading {
  font-weight: bold;
  padding-bottom: 15px;
}

.highlight-section > .post-block {
  padding: 10px 0;
}

.highlight-section > .post-block > .post-body {
  border-left: 4px solid var(--main-blue);
  padding-left: 10px
}

.highlight-section > .post-block > .post-body > .post-meta {
  font-size: 16px;
  padding: 0 0 5px;
}

.highlight-section > .post-block > .post-body > .post-title {
  font-size: 18px;
}

.highlight-section > .post-block > .post-body > .post-title a {
  text-decoration: none;
}

#what_i_do_community {
  grid-column: 2/3;
  grid-row: 2/3;
}

.projects-content {
  align-self: center;
}

#community_offside {
  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-items: center;
  grid-gap: 40px;
}

.community-icons {
  display: grid;
  align-items: end;
  justify-items: center;
  grid-template-rows: 1fr 1fr;
  grid-gap: 10px;
}

.community-heading {
  text-align: center;
}

#what_i_do_consultancy {
  grid-column: 1/2;
  grid-row: 3/4;
}
#what_i_do_validation {
  grid-column: 2/3;
  grid-row: 4/5;
}

.post-body-notes {
  font-size: 18px;
}

.post-body-notes a {
  word-break: break-all;
}

.post-body-notes .post-meta {
  padding: 0;
  color: var(--blood-orange);
}

.post-social, .generator-bg {
  padding: 15px 30px;
  background-color: var(--subtle-bg);
  border-radius: 20px;

  & select {
    background-color: var(--background);
  }

  & input, textarea {
    background-color: var(--background);

    &::placeholder {
      color: var(--text);
    }
  }

  & textarea {
    height: 300px;
  }
}

.post-social .meta-grid .meta-author .author-address {
  font-size: 80%;
}

.post-social .meta-grid {
  display: grid;
  grid-template-columns: 60px 1fr 1fr;
}
.post-social .meta-grid .meta-author a {
  text-decoration: none;
}

.post-social .meta-grid .meta-single {
  align-self: center;
  justify-self: end;
  text-align: right;
}
.post-social .meta-grid .meta-single a.note-date {
  display: block;
}

content#doc {
  display: grid;
  grid-template-columns: 1.4fr 4fr;
  padding-top: 60px;
  grid-gap: 30px;
}

content#page, content#search, content#archive, content#generator {
  display: grid;
  grid-template-columns: 1fr;
  padding-top: 60px;
}

.project-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-gap: 30px;
  padding-top: 40px;

  & .project-grid-right {
    max-width: 400px;

    @media screen and (max-width: 900px) {
      max-width: 100%;
    }
  }
}
.projects-overview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 60px;
  gap: 60px 30px;
}

.project-description .button {
  float: right;
}

.project-logo-separator {
  display: grid;
  grid-template-columns: 2fr 50px 2fr;
  align-items: center;
  justify-content: center;
  align-content: center;
  gap: 30px;

  & hr {
    width: 100%;
  }

}

.stats-panel {
  background-color: var(--subtle-bg);
  padding: 20px;
  border-radius: 10px;
  margin-top: 40px;
}

#dynamic_word {
  font-weight: bold;
  color: #ff4500; 
  transition: opacity 0.5s ease;
}

/** Pricing Table CSS **/

.pricing-table {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  margin: 0 auto;
  padding-bottom: 20px;
}

/* Add this to your CSS file */
.funding-bar {
  width: 100%;
  padding: 20px 0;
}

.funding-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.funding-progress {
  background-color: var(--subtle-bg);
  border-radius: 10px;
  overflow: hidden;
  height: 30px;
  margin-bottom: 10px;
  position: relative;
}

.funding-progress-bar {
  background-color: #ff4500;
  height: 100%;
  transition: width 0.5s ease;

  & small {
    padding-left: 5px;
  }
}

.funding-info {
  text-align: right;
}

@media screen and (max-width: 1800px) {
  .pricing-table {
    grid-template-columns: 1fr;
  }
  
}

.pricing-item {
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  background-color: var(--subtle-bg);
}

.pricing-item h3 {
  margin-top: 0;
}

.pricing-item .price {
  font-size: 24px;
  color: var(--main-blue);
  margin: 20px 0;
}

.pricing-item ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

.pricing-item ul li {
  padding: 10px 0;
  border-bottom: 1px solid var(--light);
}

.pricing-item ul li:last-child {
  border-bottom: none;
}

.pricing-item .btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: var(--orange);
  color: var(--bright);
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.pricing-item .btn:hover {
  background-color: var(--main-blue);
}

.pricing-item.popular {
  border: 2px solid var(--main-blue);
  position: relative;
}

.pricing-item.popular::before {
  content: '🚀';
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--main-blue);
  color: var(--bright);
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 14px;
}

/** End **/

#banner_statement {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  justify-content: center;
  font-size: 16px;
  color: #7a7a7a;
}

.banner-statement-individual {
  text-align: center;
}

#Jason_Bayton img {
  width: 500px;
  height: 288px;
}

#intro_block {
  display: grid;
  grid-template-columns: 3fr 1fr;
  grid-column-gap: 20px;
}

#intro_heading {
  font-weight: 400;
  font-size: 70px;
}

.home-heading {
  font-weight: 400;
  font-size: 55px;
}

#intro_subheading, .home-subheading {
  font-size: 26px;
}

.partner-heading {
  text-align: center;
}

#intro_cta {
  justify-self: center;
}

#intro_heading p, .home-heading p {
  margin: 0;
}

#intro_text {
grid-column: 1/-1;
}

#intro_android {
  text-align: center;
  font-size: 24px;
  padding: 10px;
}

.cta {
  padding-top: 15px;
}

#android_head {
  margin: 0 auto;
  /* padding-top: 20px; */
  align-self: center;
}

#header_banner {
  background-color: #000000;
  font-size: 12px;
  display: grid;
  justify-content: center;
  justify-items: center;
  padding: 10px;
  align-items: center;
  color: var(--bright);
}

#header_banner a {
  display: inline;
}

div:hover g#swirl_2, div:active g#swirl_2 {
  transition: transform 0.6s ease-in-out;
  transform: rotate(360deg);
  transform-box: fill-box;
  transform-origin: center;
}
div:hover path#exclude, div:active path#exclude {
  transition: fill 0.6s ease-in-out;
  fill: var(--orange)
}

:is(.heading-wrapper :is(h1, h2, h3, h4)) {
  display: inline;
}

:is(.post-content :is(h1, h2, h3, h4)) {
  font-size: 26px;
}

.home-section {
  padding: 100px 40px 0;
  max-width: 1200px;
  justify-self: center;
}

.year-block {
  padding-bottom: 30px;
}

section#page_content {
  min-height: 600px;
  overflow-x: hidden;
}

section#posts_container {
  display: grid;
  grid-template-columns: 1fr;
  background: radial-gradient(circle, #ce3800 0%, #d33900 50%, #FF5722 87%, #fa4006 100%);
  color: var(--bright);
  padding: 100px 0;
  margin-top: 100px;
}

section#posts_container .button {
  background-color: #000000;
  color: var(--bright);
  border: #000000;
}

section#posts_container a {
  color: var(--bright);
}

section#posts_container code {
  color: black;
}

section#posts {
  max-width: 1900px;
  padding-top: 0;
  padding-bottom: 0;
}

section#sponsor_rrjfc {
  text-align: center;
  padding: 60px 40px;
  margin-top: 100px;

    & .rrjfc-text {
      padding: 0 0 40px;

      & small {
        padding-top: 10px;
        font-size: 14px;
        display: block;
      } 
    }

    & .rrjfc-logo {
      img {
        margin: auto;
        border-radius: 20px;
      }
    }
}

.service-item {
  scroll-margin-top: 40px;
}

.service-image {
  padding-top: 20px;
}

.service-text {
  & h2 {
    font-size: 36px;
    font-weight: 700;

    @media screen and (max-width: 900px) {
      font-size: 30px;
      
    }
  }
}

.service-shortcuts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(132px, 1fr));
  gap: 1.5rem;
  text-align: center;
  justify-content: center;

  .shortcut-card {
  text-decoration: none;
  border: 1px solid var(--light);
  padding: 1rem;
  border-radius: 10px;
  transition: all 0.2s ease-in-out;
  display: flex;
  flex-direction: column;
  align-items: center;

      .material-symbols-outlined {
          padding-bottom: 10px;
          font-size: 20px;
      }
  }

  .shortcut-card:hover {
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  transform: translateY(-2px);
  }

  .shortcut-card .icon {
  width: 36px;
  height: 36px;
  margin-bottom: 0.5rem;
  }

  .shortcut-card span {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
  }
}

#author_bio {
  padding-top: 20px;
  text-align: right;
  color: var(--blood-orange);
}

.post-block {
  padding: 15px 0;
}

.generator-bg {
  margin: 15px 0;
}

.post-block-extra {
  padding: 30px 0;
}

.post-block details, .post-block-extra details {
  margin-block-end: 1em;
  margin-block-start: 1em;
}

.post-block-extra img {
  margin: 20px 0;
}

.post-block dd, .post-block-extra dd, #page_content dd {
  padding-bottom: 20px;
}

.post-block dt, .post-block-extra dt, #page_content dt{
  padding-bottom: 10px;
}

.post-title {
  margin: 0;
  font-weight: 600;
}

.post-meta {
  padding: 10px 0;
  display: block;
}

.post-meta-condensed { 
  font-size: 18px;
}

.post-meta-condensed > .meta-single {
  display: inline;
  padding-right: 20px;
}

#android_post_container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto;
  grid-auto-flow: row;
  grid-gap: 40px;
}

.android-topic ul li::marker {
  content: "\f17b";
  font-family: "Font Awesome 5 Brands";
  color: #78c657;
  padding-right: 5px;
}

.android-topic ul {
  padding-inline-start: 25px;
}

.android-topic ul li {
  padding: 0 8px 15px;
}

.android-topic ul li a {
  text-decoration: none;
}

#qr_type .button {
  background-color: var(--subtle-bg);
  border: var(--subtle-bg);
  margin-right: 10px;
  margin-bottom: 10px;
  color: var(--text);

  &.active {
    color: var(--blood-orange);
  }
}

.field {
  padding: 40px 0;
}

.field-qr {
  padding: 10px 0 15px;
}

#searchField {
  padding: 15px;
  font-size: 24px;
  border-radius: 5px;
  width: 100%;
}

.input-text {
  font-size: inherit; 
  width: 90%;
}

.input-dropdown {
  width: 56%;
}

.check {
  padding: 5px 0;
}

.field-title {
  padding-bottom: 5px;
}

canvas#generated_qr {
  max-width: 100%;
  height: unset !important;
}

#generated_qr img {
  border: 2px solid var(--orange);
  max-width: 512px;
  width: 99%;
  height: auto;
}

#generate_code {
  margin-bottom: 30px;
}

/*#searchField::placeholder {
  color: var(--light)
}*/

button#back_button, button#next_button {
  font-size: 22px;
  padding: 10px 40px;
  margin: 0 40px;
}

section#trusted_logos #trusted_container {
  margin: 0 auto;
}

#android-doc-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 40px;
  padding-top: 40px;
}

.trusted-tag {
  font-size: 18px;
  padding-top: 10px;
  font-weight: 500;
}

#vendor_logo_container {
  padding: 20px 30px;
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  grid-template-rows: auto;
  grid-auto-flow: row;
  border-radius: 5px;
  margin-top: 50px;
  grid-gap: 30px
}

.vendor-logo {
  align-self: center;
  justify-self: center;
}

.vendor-logo img {
  max-width: 100%;
  width: 116px;
  border-radius: 0;
}

#vendor_disclaimer {
  font-size: 12px;
  text-align: center;
  padding-top: 8px;
}

#post_container {
  /*padding-top: 30px;*/
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 50px;
}

#doc_container {
  /*padding-top: 30px;*/
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 30px;
}

.side-note {
  color: var(--blood-orange);
}

.meta-tag {
  text-transform: lowercase;
  color: var(--blood-orange);
}

.eleventy-plugin-youtube-embed {
  margin: 30px 0;
}

.eleventy-plugin-twitter-embed {
  margin: 30px 0;
}

.dpc-vendor b {
  display: block;
}

.dpc-vendor img {
  float: left;
  padding-right: 10px;
  border-radius: 0;
}

#dpc_extras {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-row-gap: 30px;
  padding-bottom: 30px;
}

.tag-more-link {
  padding: 20px 0;
  display: block;
  color: var(--blood-orange);
}

#support-split {
  display: grid;
  grid-template-columns: 3fr 1fr;
  grid-gap: 30px;
}

#content_report {
  float: right;
  font-size: 16px;
  padding-top: 16px;
  padding-bottom: 16px;
}

footer {
  padding: 120px 0 0;
  text-align: center;
}

#subscribe_section {
  padding: 0 20px 40px;
}
#subscribe_button {
  font-size: 20px;
}

#subscribe_input {
  padding: 14px;
  font-size: 20px;
}

#social_icons {
  font-size: 30px;
  display: inline;

  & img {
    display: inline;
    width: 26px;
  }
}

#made_by {
  text-align: center;
  padding: 40px 30px 10px;
  font-size: 16px;
}

#made_by a {
  text-decoration: none;
}

#footer_logos {
  margin: 0 auto;
  max-width: 1000px;
  padding-top: 40px;
  padding-left: 30px;
  padding-right: 30px;
}

#partner_logos {
  /*padding: 50px 40px 0;*/
  overflow: hidden;
}

#partner_logos #vendor_disclaimer {
  text-align: right;
}

#footer_logos #vendor_logo_container {
  margin-top: 0;
}

#footer_logo_text {
  padding-bottom: 8px;
}

#searchSuggestions {
  padding-top: 10px;
}

#searchSuggestions ul {
  list-style: none;
  margin: 0;
  padding: 0;
  padding-top: 10px;
}

#searchSuggestions ul li {
  padding: 10px 0;
}

/* Content and imported styles */
/* Side notes for calling out things
-------------------------------------------------- */

.callout {
    padding: 20px;
    margin: 20px 0;
    border-radius: 20px 10px 10px 50px;
    box-sizing: border-box;
    color: var(--brand-text);
    /* background-color: var(--subtle-bg); */
    border: solid var(--light);
    border-width: 2px 2px 2px 10px;


  &.callout-orange {
      border-color: var(--orange);

    & .callout-heading {
      color: var(--orange);
    }

    & .callout-heading::after {
      background-color: var(--orange);
    }

    & .callout-heading::before {
      content: 'work_alert';
    }

    & .callout-heading-small::after {
      background-color: var(--orange);
    }
  }

  &.callout-blue {
    border-color: var(--main-blue);

    & .callout-heading {
      color: var(--main-blue);
    }

    & .callout-heading::after {
      background-color: var(--main-blue);
    }

    & .callout-heading-small::after {
      background-color: var(--main-blue);
    }


  }

  &.callout-red {
    border-color: var(--main-red);

    & .callout-heading {
      color: var(--main-red);
    }

    & .callout-heading::after {
      background-color: var(--main-red);
    }
    
    & .callout-heading::before {
      content: 'work_alert';
    }

    & .callout-heading-small::after {
      background-color: var(--main-red);
    }
  }

  &.callout-green {
    border-color: var(--main-green);

    & .callout-heading {
      color: var(--main-green);
    }

    & .callout-heading::after {
      background-color: var(--main-green);
    }

    & .callout-heading-small::after {
      background-color: var(--main-green);
    }
  }

  & .callout-heading {
      font-size: 30px;
      font-weight: 600;
      width: fit-content;

    &::after {
      content: '';
      height: 4px;
      display: block;
      clear: both;
      background-color: var(--text);
      border-radius: 5px;
      margin-top: 15px;
    }

    &::before {
      font-family: "Material Symbols Outlined";
      content: 'info';
      padding-right: 5px;
      font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 24;
      max-width: 40px;
      vertical-align: middle;
    }

    & .material-symbols-outlined {
      font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
      max-width: 40px;
    }
  }

  & .callout-heading-small {
    font-size: 24px;

    & .material-symbols-outlined {
      font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
      max-width: 30px;
    }

    &::after {
      content: '';
      height: 2px;
      display: block;
      clear: both;
      background-color: var(--text);
      border-radius: 5px;
      margin-top: 6px;
    }
  }

  &.callout-small {
      border: 0;
      border-radius: 10px;
      padding: 3px;
      background-color: var(--dark);
      color: var(--bright);
      margin: 30px 0 0;

      & p {
        margin: 0;
        padding: 5px 10px;
    }
      & .material-symbols-outlined {
        font-size: 115%;
        padding-right: 6px;
    }
  }

  & .callout-button {
    padding: 20px 0;

    &.callout-button-right {
      text-align: right;
      padding-right: 10px;
    }
  }

  & .callout-icon-sad::before {
    content: 'sentiment_dissatisfied';
  }
  & .callout-icon-edit::before {
    content: 'edit_note';
  }
}

.heading-anchor { 
  display: none;
}

.heading-wrapper:hover .heading-anchor {
  display: unset;
}

.nav-link-individual a {
  text-decoration: none;
}

.toc ol {
  list-style-type: none; 
  padding: 0;
  margin: 0;
}

.toc ol li {
  list-style-type: none;
  padding: 5px 0
}

.toc ol li a {
  text-decoration: none;
}

.toc ol li ol {
  margin-bottom: -5px;
  padding-left: 10px;
}

#mobile_toc {
  display: none;
  padding: 25px 0 15px;
  border-bottom: 1px solid var(--text);
}

#mobile_toc details summary {
  font-weight: 700;
}

#mobile_toc details .toc ol {
  list-style-type: none; 
  padding: 0;
  margin: revert;
}

#mobile_toc details .toc ol li {
  list-style-type: none;
  padding: 5px 0
}

#mobile_toc details .toc ol li a {
  text-decoration: none;
}

#mobile_toc details .toc ol li ol {
  margin-bottom: -5px;
  padding-left: 10px;
}

#mobile_aside {
  display: none;
}

#mobile_aside .aside-section {
  border-top: 1px solid var(--text);
}

.logo-section {
  overflow: hidden;
  width: 100%;
  background-color: var(--bright);
}

.logo-section img {
  padding: 30px;
  height: 40px;
}

.logo-container {
  display: flex;
  animation: scroll 40s linear infinite alternate;  /* The 'alternate' value makes the animation reverse direction every cycle */
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }  /* This value should be the total width of all the logos */
}

.highlight {
  color: var(--orange);
}

.contact-grid, .impactful-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 100px 0px;
  gap: 40px;

  .logo-spin {
    justify-self: center;
  }

  .swirl-spin {
    animation: spinPause 6s infinite ease-in-out;
    transform-origin: center;
  }
  
  @keyframes spinPause {
    0%   { transform: rotate(0deg); }
    20%  { transform: rotate(180deg); }
    40%  { transform: rotate(360deg); }
    60%  { transform: rotate(360deg); }
    100% { transform: rotate(360deg); }
  }

  .contact-info, .impactful-hero {
    h2.page-subtitle {
      font-size: 50px;
      font-weight: 700;
      margin-top: 0;

      @media screen and (max-width: 900px) {
        font-size: 36px;
        
      }
    }

    h2 {
      & .material-symbols-outlined {
        font-size: 70px;
        font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;

        @media screen and (max-width: 900px) {
          font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 24;
        }
      }
    }

    p {
      margin-top: 20px;
      font-size: 24px;

      small {
        font-size: 14px;
      }
    }

    .highlight {
      color: var(--orange);
    }

    .scroll-down {
      font-size: 16px;
      margin-top: 60px;
      padding-right: 10px;
      text-align: right;

      @media (max-width: 900px) {
        margin-top: 30px;
      }

      & a {
        text-decoration: none;

        & .material-symbols-outlined {
          font-size: 26px;
          padding-left: 5px;
          max-width: 32px;
          font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
        }
      }
    }
  }

  .contact-form {
    display: grid;
    gap: 20px;

    .form-group {
      display: flex;
      flex-direction: column;

      label {
        font-size: 14px;
        font-weight: 600;
        margin-bottom: 5px;
      }

      input,
      textarea {
        padding: 15px;
        background-color: var(--input);
        color: var(--text);
        border: 1px solid var(--dark);
        border-radius: 5px;

        &:focus {
          outline: none;
          border-color: var(--orange);
        }
      }

      textarea {
        resize: vertical;
        min-height: 150px;
      }
    }

    & .support-cta {
      justify-self: center;
      align-content: center;

      @media screen and (max-width: 900px) {
        justify-self: end;
      }

      & .scroll-down {
        font-size: 16px;
        margin-top: 30px;
        text-align: center;

        & a {
          text-decoration: none;
  
          & .material-symbols-outlined {
            font-size: 26px;
            padding-left: 5px;
            max-width: 32px;
            font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
          }
        }
      }

      & h3.cta {
        margin: 0;
        justify-self: end;
      }

      & svg {
        margin-left: -20px;
        padding-bottom: 30px;

        @media screen and (max-width: 900px) {
          display: none;
        }
      }
    }

    & h3.cta {
      margin: 0;

    }

    .submit-group {
      display: flex;
      flex-direction: row;
      gap: 20px;
      justify-content: space-between;
    }

    .cta-btn {
      padding: 15px;
      background: var(--orange);
      color: var(--bright);
      font-weight: bold;
      font-size: inherit;
      border: none;
      border-radius: 5px;
      cursor: pointer;
      transition: background-color 0.3s ease;
      max-width: 250px;
      width: 100%;
      height: fit-content;

      &:hover {
        background-color: var(--blood-orange);
      }
    }
  }

  @media (max-width: 900px) {
    grid-template-columns: 1fr;
    padding: 20px 0px 50px;

    .contact-info h1, .impactful-hero h1 {
      font-size: 36px;
    }
  }
}

.logo-spin img {
  width: 150px;
  animation: spinPause 6s infinite ease-in-out;
}

@keyframes spinPause {
  0%   { transform: rotate(0deg); }
  20%  { transform: rotate(180deg); }
  40%  { transform: rotate(360deg); }
  60%  { transform: rotate(360deg); }
  80%  { transform: rotate(360deg); }
  100% { transform: rotate(360deg); }
}

/* Media */

@media (min-width: 1800px) {
  content {
    max-width: 1600px;
  }
}

@media (max-width: 1190px) {
  #intro_cta {
    justify-self: end;
    grid-row: 5/5;
    grid-column: 1/-1;
  }

  #intro_subheading, .home-subheading {
    grid-column: 1/-1;
  }
}

@media (max-width: 1060px) {

}

@media (max-width: 900px) {

  body {
    font-size: 16px;
  }

  section#page_content {
    min-height: unset;
  }

  #subscribe_button {
    font-size: 16px;
    margin: 5px 0;
  }
  
  #subscribe_input {
    font-size: 16px;
  }

  .image-inline-text {
    width: 16px;
  }
  
  h2 { font-size: 30px; }
  h3 { font-size: 24px; }
  h4 { font-size: 18px; }
  h5 { font-size: 18px; }
  
  :is(article :is(h1, h2, h3, h4, h5, h6)) a::after {
    font-size: 12px;
  }

  #searchField {
    font-size: 20px;
  }

  #intro_subheading, .home-subheading{
    font-size: 22px;
  }

  .intro_wrapper {
    padding-bottom: 0px;
  }

  .mobile-50-padding {
    padding-top: 50px;
  }

  #mobile_aside {
    display: inherit;
    grid-column-start: 1;
  }

  #mobile_toc {
    display: inherit;
  }

  .field-mobile {
    padding: 0 0 10px;
  }

  #mobile_menu {
    display: inherit;
  }

  #corner_menu {
    display: unset;
    justify-self: end;
    cursor: pointer;
  }

  #menu_modal {
    display: grid;
    place-items: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--background);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
  }
  
  #menu_modal.visible {
    opacity: 1;
    visibility: visible;
  }
  
  #menu_modal ul {
    display: grid;
    gap: 20px;
    justify-content: center;
    align-content: center;
    padding: 0;
    margin: 0;
    list-style: none;
  }
  
  #menu_modal a {
    text-decoration: none;
    text-align: center;
    display: block;
    padding: 10px;
    color: var(--text);
  }

  #clear-storage {
    color: var(--text);
  }
  
  #menu_close {
    position: absolute;
    top: 40px;
    right: 25px;
    border: none;
    font-size: 1.5em;
    cursor: pointer;
    background-color: var(--background);
    box-shadow: none;
    color: var(--text);
  }

  #navbar {
    grid-template-columns: 1fr 60px 60px 60px 60px;
    padding: 10px 20px;
    font-size: 20px;
  }

  #darktoggle {
    justify-self: end;
    cursor: pointer;
  }

  #qr_generate {
    justify-self: end;
    grid-column-start: 2;
  }

  #corner_search {
    justify-self: end;
  }

  #bayton_logo {
    padding: unset;
  }

  #intro_heading, .home-heading, #intro_text, #intro_android {
    grid-area: auto;
    border: none;
  }

  #intro_heading {
    font-size: 50px;
    padding-bottom: 30px;
  }
  
  .home-heading {
    font-size: 40px;
    padding-bottom: 30px;
  }

  #intro_android {
    padding-top: 20px;
    padding-bottom: 20px;
    grid-row: 1/1;
  }

  .aside-section ul li a.active {
    background: none;
    display: unset;
    margin: unset;
    padding: unset;
    border-radius: unset;
  }

  #post_container, 
  #android-doc-container, 
  #af_group, 
  #af_group_split, 
  #dpc_extras, 
  #intro_block, 
  #doc_container,
  #support-split, 
  .project-grid, 
  .projects-overview {
    grid-template-columns: 1fr;
    grid-column-gap: unset;
  }

  .projects-overview {
    grid-row-gap: 60px;
  }

  #vendor_logo_container {
    grid-template-columns: repeat(4, 1fr);
  }

  #partner_logos #vendor_logo_container {
    grid-template-columns: repeat(3, 1fr);
  }

  #vendor_disclaimer {
    font-size: 10px;
    padding-top: 15px; 
  }

  #partner_logos #vendor_disclaimer {
    text-align: center;
    padding-top: 5px;
  }

  .home-section {
    padding: 50px 40px
  }

  #highlight_container {
    grid-template-columns: 1fr;
    grid-gap: 50px;
  }

  #what_i_do_community, #what_i_do_consultancy, #what_i_do_validation {
    grid-column: unset;
    grid-row: unset;
  }

  #footer_logos {
    max-width: 500px;
  }

}

@media (max-width: 490px) {

  #android_head {
    max-width: 140px;
  }

  h2 { font-size: 26px; }
  h3 { font-size: 20px; }
  h4 { font-size: 18px; }
  h5 { font-size: 14px; }

  .post-social .meta-grid {
    grid-template-columns: 60px 1fr;
    grid-column-gap: unset;
  }

  .post-social .meta-grid .meta-single {
    grid-row: 1/2;
    grid-column: 1/3;
    padding-bottom: 15px;
    justify-self: start;
  }

}

@media (max-width: 450px) {
  #navbar {
    grid-template-columns: repeat(4, 1fr);
    max-width: 300px;
    grid-row-gap: 20px;
    min-height: 100px;
    height: 100%;
  }

  #bayton_logo {
    grid-column: 1 / span all;
    justify-self: center;
    padding-top: 38px
}

  #qr_generate, #darktoggle, #corner_search, #corner_menu {
    justify-self: center;
    grid-column-start: unset;
  }
}

@media (max-width: 390px) {
  #intro_heading {
    font-size: 36px;
    text-align: center;
  }  
  
  .home-heading {
    font-size: 28px;
    text-align: center;
  }

  .home-subheading {
    font-size: 20px;
  }

  #android_head {
    max-width: 70px;
  }

  section#link_out {
    grid-template-columns: 1fr;
  }
}

#aside {
  font-size: 18px;
  padding: 20px;
}

.aside-title h2 {
  margin: 0;
  padding-bottom: 20px;
  font-size: 28px;
}

.aside-section ul li a {
  text-decoration: none;
}

.aside-section ul li {
  padding: 5px 0;
}

.aside-section ul {
  padding-left: 0;
  list-style: none;
  list-style-type: none;
}

.project-nav details {
  padding-bottom: 20px;
}

.project-nav details summary {
  font-weight: 700;
}

.project-nav ul {
  margin-top: 0;
  padding-left: initial;
  padding-left: 20px;
  padding-top: 5px;
}

.project-nav > ul {
  padding-left: 0;
  padding-top: 0;
}

.support-list ul li {
  padding: 5px 0;
}

.support-list ul li svg {
  display: inline-block;
  vertical-align: middle;
}

.support-list ul {
  padding-left: 0;
  list-style: none;
  list-style-type: none;
}

.release-list summary h3 {
  display: inline-block;
}

.docnav-topic-title {
  font-weight: 700;
}

.docnav-topic-title:hover {
  cursor: pointer;
}

.aside-title.increased-top-padding {
  padding-top: 40px;
}

ul.gitlog-list {
  margin-top: 0;
}

.gitlog-time {
  font-weight: 700;
}

a.gitlog-title {
  display:block;
  text-transform: lowercase;
  font-size: 16px;
}

.section-title {
  margin: 0; 
  font-size: 36px;
  font-weight: 600;
  padding: 0;
}

.section-byline {
  font-size: 80%;
  font-style: italic;
}

.post-archive {
  padding-top: 40px;
  float: right;
}

.search-results {
  padding: 0 0 0 0.25em;
}

.search-results > ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.search-results > ul > li {
  margin-bottom: 1em;
}

.search-results a {
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 600;
}

.search-results a:hover {
opacity: 0.8;
}

.search-results h2 {
margin-bottom: 0.5rem;
}

.search-results p:not(.search-no-results) {
font-weight: 400;
font-size: 1rem;
margin-top: 0;
}

.search-no-results {
margin-top: 1.5rem;
font-size: 1.25rem;
}

#search-field {
position: relative;
}

#searchField::-webkit-search-cancel-button {
-webkit-appearance: none;
appearance: none;
display: none;
}

#search-clear {
position: absolute;
top: 50%;
right: 0.75rem;
transform: translateY(-50%);
background: none;
border: none;
cursor: pointer;
padding: 0.25rem;
color: var(--orange);
font-size: 0;
line-height: 1;
}

#search-clear .material-symbols-outlined {
font-size: 28px;
}

/* Search input spinner (typing debounce) */
#debouncing {
position: absolute;
top: 2.1rem;
right: 2.9rem;
width: 2rem;
height: 2rem;
border-radius: 50%;
background: conic-gradient(#0000 1%, #444);
-webkit-mask: radial-gradient(farthest-side, #0000 calc(100% - 4px), #000 0);
mask: radial-gradient(farthest-side, #0000 calc(100% - 4px), #000 0);
animation: spinner 500ms infinite linear;
}

@keyframes spinner {
  to {
    transform: rotate(1turn);
  }
}

.year-heading {
  font-weight: 900;
}

.post-meta-base {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  padding-bottom: 0;
}

.post-meta-base-left {
  justify-self: start
}
.post-meta-base-right {
  justify-self: end;
  align-self: end;
}

.meta-tiny {
  font-size: 10px;
  display: block;
  padding-bottom: 3px;
}

.meta-single svg {
  width: 20px;
}

.meta-single .meta-tiny svg {
  width: 10px;
}

.base-title {
  font-size: 80px;
  font-weight: 900;
  line-height: 66pt;
}

.project-title { 
  padding-bottom: 40px;
}

#aside_docs {
  padding-top: 30px;
}

#android_doc_grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 30px;
}

#android_doc_grid .android-doc-grid-group {
  padding: 10px;
  background-color: var(--blue);
  border-radius: 5px;
  display: grid;
  grid-template-rows: min-content;
}

#android_doc_grid .android-doc-grid-group h2 {
  font-size: 24px;
  font-weight: 600;
  margin: 0;
}
#android_doc_grid .android-doc-grid-group .android-topic ul { 
  list-style-type: none;
  padding-left: 0;
}

#android_doc_grid .android-doc-grid-group .android-topic ul li {
  padding: 0 0 15px;
}

#android_doc_grid .android-doc-grid-group .android-topic ul li::marker {
  content: "";
}

#android_doc_grid .android-doc-grid-group #android_viewmore {
  text-align: right;
  align-self: end;

}

section#sharebox {
  grid-column: 1 / 2;
  grid-row: 2 / 3;
  padding: 20px;
  background-color: var(--main-green);
  border-radius: 5px;
  color: #000000;
}

.share-text {
  padding-top: 10px;
}

.share-links {
  display: grid;
  grid-auto-flow: column;
  padding: 20px 3px 10px;
  grid-gap: 18px;
}

.link-icons a:hover {
  background-color: rgba(255, 255, 255, 0.586);
  transition: 0.5s ease-in-out;
  border-radius: 5px;
  padding: 2px 4px;
}

section#feedback {
  grid-column: 1 / span all;
  justify-self: end;
}

section#link_out {
  grid-column-start: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-content: center;
  grid-gap: 30px;
}

.links-out {
  padding: 20px;
  background-color: var(--main-blue);
  border-radius: 5px;
  display: block;
  color: var(--bright);
}

section#note_overview {
  border-radius: 5px;
  background-color: var(--orange);
  color: var(--bright);
}

@media (max-width: 900px) {
  content#doc{
      grid-template-columns: 1fr;
      grid-gap: 0;
  }

  #android_doc_grid {
      grid-template-columns: 1fr;
      grid-column-gap: 0;
  }

  section#feedback, section#comment-system, section#link_out, section#note_overview {
      grid-column-start: 1;
  }

  section#note_overview {
      margin-top: 40px; 
  }

  .meta-single {
      font-size: 14px;
  }

  .base-title {
      font-size: 30px;
      line-height: unset;
      margin:auto;
  }
}

@media (max-width: 390px) {

  .section-title {
    font-size: 30px;
  }
}

/* CSS for Android sysapp DB */

.filters-grid {
  padding-top:40px; 
  display: flex; 
  gap: 1rem; 
  align-items: center; 
  justify-content: space-between; 
  flex-wrap: wrap; 
  margin-bottom: 1rem;

  & #searchInput {
    flex: 2 1 60%; 
    min-width: 200px;
  }

  & .app-db-filters {
    display: flex; 
    gap: 0.5rem; 
    flex: 1 1 35%; 
    justify-content: flex-end;

    @media (max-width: 490px) {
      flex-direction: column;
      align-items: stretch;
      gap: 1rem;
    }

    & select {
      max-width: 100px;

      @media (max-width: 490px) {
        max-width: 100%;
      }
    }
  }
}

#appTable {
  table-layout: fixed;
  width: 100%;
  min-width: 1100px;
  border-collapse: border
}

.has-js .no-js-table {
  display: none !important;
}

.pagination-controls {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: center;
  justify-self: flex-end;
  gap: 8px;
  text-align: right;
}

.pagination-select {
    justify-content: flex-end;
}

.pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 6px;
}

.pagination a {
  padding: 5px;

}


/* Added nested CSS block 
html, body, [data-theme="light"], [data-theme="dark"] {
  transition: none;
}

html.js-theme-applied, 
html.js-theme-applied body, 
html.js-theme-applied [data-theme="light"], 
html.js-theme-applied [data-theme="dark"] {
  transition: background-color 1.5s ease, color 0.5s ease, border-color 0.5s ease;
} */
