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

/* -------------------------------------------------
   Picotronix.css file  Primary Brand Colours
------------------------------------------------- */
/* -------------------------------------------------
   Neutral Palette
------------------------------------------------- */
/* -------------------------------------------------
   Accent / Utility Colours
------------------------------------------------- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: #202020;
  background: white;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  display: flex;
  flex-direction: column;
}
body main.content {
  flex: 1;
}

a {
  color: #167ac6;
  text-decoration: none;
  transition: color 0.25s ease;
}
a:hover {
  color: rgb(16.9, 93.7181818182, 152.1);
}

h1,
h2 {
  line-height: 1.5;
}

p,
.wp-block-code {
  margin-bottom: 1.5rem;
}
p:last-child,
.wp-block-code:last-child {
  margin-bottom: 0;
}

ul {
  list-style-type: disc;
  list-style-position: inside;
  margin: 1.5rem 0;
}

ul li:not(:last-child) {
  margin-bottom: 0.5rem;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: #0b1f3b;
  margin-bottom: 32px;
  text-align: center;
}

.section-lead {
  font-size: 22px;
  color: rgb(70.25, 70.25, 70.25);
  margin-bottom: 2rem;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

html,
body {
  height: 100%;
}

body {
  display: flex;
  flex-direction: column;
}

.wrapper {
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
  padding: 0 30px;
}

.main {
  flex: 1;
}

.footer {
  position: relative;
  background: #38618C;
  color: #ffffff;
  padding: 1.5rem 0;
  text-align: center;
  font-size: 0.875rem;
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
@media (min-width: 768px) {
  .footer__inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}
.footer__inner p,
.footer__inner li {
  margin: 0;
}
.footer__inner ul li:not(:last-child) {
  margin: 0;
}

/* Footer Links */
.footer__links {
  display: flex;
  gap: 1.5rem;
}

.footer__links a {
  color: #ffffff !important;
  text-decoration: none;
  font-size: 0.875rem;
  transition: opacity 0.25s ease;
}

.footer__links a:hover {
  opacity: 0.8;
}

.connect {
  flex-shrink: 0;
}

.footer__trademarks {
  font-size: 0.8rem;
  opacity: 0.7;
  text-align: center;
  padding: 1rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  margin-top: 1rem;
}

.footer__trademarks p {
  margin: 0;
  color: #ffffff;
}

.hero {
  background: #f4f4f4;
  padding: 6rem 1.5rem;
  text-align: center;
  color: #0b1f3b;
}
.hero__title {
  font-size: clamp(2.2rem, 5vw, 3rem);
  font-weight: 700;
  margin-bottom: 1rem;
  margin-top: 50px;
}
.hero__lead {
  font-size: 1.4rem;
  color: rgb(70.25, 70.25, 70.25);
  margin-bottom: 2rem;
}
.hero__actions {
  display: flex;
  justify-content: center;
  gap: 20px;
}
@media (max-width: 600px) {
  .hero__actions {
    flex-direction: column;
    align-items: center;
  }
  .hero__actions a {
    justify-content: center;
    max-width: 285px;
  }
}

/* ------------------------------------------------
   Full-screen hero (under header)
------------------------------------------------ */
.hero--fullscreen {
  position: relative;
  min-height: 450px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 768px) {
  .hero--fullscreen {
    padding: 120px 0 40px 0;
  }
}
.hero--fullscreen::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(11, 31, 59, 0.45);
  z-index: 1;
}
.hero--fullscreen .hero__content {
  position: relative;
  z-index: 2;
}
.hero--fullscreen .hero__lead {
  color: #ffffff;
}

.header {
  background-color: #38618C;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: all 0.18s linear;
}
.header--over-hero {
  position: fixed;
  left: 0;
  width: 100%;
  background-color: rgba(22, 122, 198, 0.1);
  backdrop-filter: blur(6px);
}
.header--bg-solid {
  background-color: #167ac6;
  backdrop-filter: none;
}
.header ul {
  margin: 0;
}
.header ul li {
  margin: 0;
}

.header__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  padding-bottom: 20px;
}

.logo {
  display: flex;
  font-weight: 700;
  font-size: 1.25rem;
  color: #ffffff;
}

.hamburger {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  color: #ffffff;
}

.hamburger__icon {
  display: block;
  width: 36px;
  height: 36px;
}

body.admin-bar .header--over-hero {
  top: 32px;
}
@media screen and (max-width: 782px) {
  body.admin-bar .header--over-hero {
    top: 46px;
  }
}

@media (max-width: 768px) {
  .hamburger {
    display: block;
  }
}

/* ---------- core nav list ---------- */
.nav__sub {
  list-style: none;
}

.nav__list {
  display: flex;
  gap: 20px;
  align-items: center;
  list-style: none;
  margin: 0;
}
.nav__list li {
  display: flex;
  align-items: center;
  height: 100%;
}
.nav__list li a {
  display: inline-flex;
  align-items: center;
  height: 32px;
  padding: 0 12px;
  margin: 0;
  border-radius: 8px;
  line-height: 1;
  background: none;
  transition: all 0.25s ease;
}
.nav__list li a:hover {
  background-color: rgba(255, 255, 255, 0.2);
}
.nav__list li.current-menu-item a {
  background-color: rgba(255, 255, 255, 0.2);
}
.nav__list li.link-kickstarter a {
  display: block;
  background: url("/assets/images/logos/kickstarter-logo-green.png") no-repeat center;
  background-size: contain;
  margin-left: 12px;
  margin-right: 12px;
  color: transparent;
  text-indent: -9999px;
  overflow: hidden;
  white-space: nowrap;
  width: 120px;
  height: 30px;
  margin-top: 0;
  transition: filter 0.25s ease;
}
.nav__list li.link-kickstarter a:hover {
  filter: brightness(1.1) saturate(1.2);
}

.nav__link {
  font-weight: 500;
  color: #0b1f3b;
  text-decoration: none;
  transition: color 0.25s ease;
  height: 32px;
  display: flex;
  align-items: center;
  padding: 0 12px;
}

.nav__link:hover {
  color: #478cbf;
}

.nav--desk .nav__link {
  color: rgba(255, 255, 255, 0.85);
  font-size: 18px;
  font-weight: 500;
}
.nav--desk .nav__link:hover {
  color: #ffffff;
}

/* ---------- desktop dropdown ---------- */
.nav__item--drop {
  position: relative;
}

@media (min-width: 769px) {
  .nav__sub {
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
    border-radius: 4px;
    min-width: 160px;
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 0.5rem 0;
    border-top: 2px solid #478cbf;
  }
  .nav__item--drop:hover .nav__sub {
    display: flex;
  }
  .nav__sub a {
    padding: 0.5rem 1rem;
    display: block;
    font-size: 0.9rem;
    color: rgba(32, 32, 32, 0.9);
  }
  .nav__sub a:hover {
    background: rgba(71, 140, 191, 0.08);
  }
}

/* ---------- mobile panel ---------- */
.nav--mob {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 260px;
  background: #38618C;
  transform: translateX(100%);
  transition: transform 0.25s ease;
  z-index: 95;
  overflow-y: auto;
  max-height: 100vh;
  padding: 4rem 1.5rem 1.5rem;
  -webkit-overflow-scrolling: touch;
}

.nav--mob.open {
  transform: translateX(0);
}

.nav--mob .nav__list {
  flex-direction: column;
  gap: 16px;
}

.nav--mob .nav__link {
  color: #ffffff;
  font-size: 18px;
}

/* ---------- mobile submenu accordion ---------- */
.nav--mob .nav__item--drop {
  position: static;
}

.nav--mob .nav__sub {
  position: static;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0;
  margin-top: 0.5rem;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  box-shadow: none;
}

.nav--mob .nav__item--drop.active .nav__sub {
  max-height: 200px;
  padding: 0.5rem 0;
}

.nav--mob .nav__sub a {
  display: block;
  width: 100%;
  padding: 0.5rem 1rem;
  color: #ffffff;
  font-size: 0.9rem;
}
.nav--mob .nav__sub a:hover {
  background: rgba(255, 255, 255, 0.15);
}

/* ---------- overlay & close ---------- */
.menu-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: 0;
  color: #ffffff;
  cursor: pointer;
  padding: 0.25rem;
  line-height: 0;
  font-size: 2rem;
}

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(11, 31, 59, 0.45);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  z-index: 90;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

/* ---------- chevron icon ---------- */
.chevron {
  width: 1em;
  height: 1em;
  margin-left: 0.3em;
  vertical-align: middle;
  transition: transform 0.25s ease;
}

.nav__item--drop.active > .nav__link .chevron {
  transform: rotate(180deg);
}

/* ---------- responsive ---------- */
@media (min-width: 769px) {
  .nav--mob,
  .overlay {
    display: none;
  }
}
@media (max-width: 768px) {
  .nav--desk {
    display: none;
  }
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
  border: 2px solid transparent;
  cursor: pointer;
}
.btn.has-icon {
  padding-right: 18px;
}

.btn--primary {
  background: #167ac6;
  color: #ffffff;
}
.btn--primary:hover {
  background: rgb(17.92, 99.3745454545, 161.28);
  color: #ffffff;
}

.btn--secondary {
  background: transparent;
  color: #167ac6;
  border-color: #167ac6;
}
.btn--secondary:hover {
  background: #167ac6;
  color: #ffffff;
}

.btn--secondary--white {
  color: #ffffff;
  border-color: #ffffff;
}
.btn--secondary--white:hover {
  background: #ffffff;
  color: #167ac6;
}

.btn--danger {
  background: #823329;
  color: #ffffff;
}
.btn--danger:hover {
  background: rgb(98.9824561404, 38.8315789474, 31.2175438596);
  color: #ffffff;
}

.btn.js-scroll {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.btn.js-scroll:hover .down-arrow__circle {
  border-color: #ffffff;
}
.btn.js-scroll:hover .down-arrow__circle::before {
  animation: pulse 1.2s ease-out infinite;
}
.btn.js-scroll .down-arrow__circle {
  position: relative;
  display: grid;
  place-items: center;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  border: 1px solid transparent;
  transition: border-color 0.3s ease;
}
.btn.js-scroll .down-arrow__circle .down-arrow {
  width: 15px;
  height: 15px;
  fill: currentColor;
  z-index: 2;
}
.btn.js-scroll .down-arrow__circle::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid #ffffff;
  opacity: 0;
  pointer-events: none;
}

/* _featured-articles.scss */
.featured {
  padding: 4rem 0;
}
.featured .wrapper {
  display: flex;
  flex-direction: column;
}
.featured .btn.cta {
  align-self: center;
  margin-top: 40px;
}

.featured__title {
  text-align: center;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0b1f3b;
  margin-bottom: 3rem;
}

/* grid switches to 1 column < 768 px */
.featured__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

/* ---- single card ---- */
.article-card {
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.article-card:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}
.article-card:hover .article-card__img {
  transform: scale(1.02);
}
.article-card .btn {
  align-self: flex-start;
  padding: 0.5rem 1.25rem;
  font-weight: 500;
}

.article-card__img-mask {
  display: block;
  overflow: hidden;
  border-radius: 8px 8px 0 0;
}

.article-card__img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.article-card__body {
  padding: 1.5rem;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
}

.article-card__meta {
  font-size: 0.8125rem;
  color: rgb(95.75, 95.75, 95.75);
  margin-bottom: 0.5rem;
}

.article-card__title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0b1f3b;
  line-height: 1.3;
  margin-bottom: 0.75rem;
}
.article-card__title a {
  color: rgb(17.92, 99.3745454545, 161.28);
}
.article-card__title a:hover {
  color: #167ac6;
}

.article-card__excerpt {
  font-size: 0.9375rem;
  color: #202020;
  line-height: 1.5;
  margin-bottom: 1rem;
  flex: 1 1 auto;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  70% {
    transform: scale(1.7);
    opacity: 0;
  }
  100% {
    transform: scale(1.7);
    opacity: 0;
  }
}

@keyframes pop {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

/* _newsletter.scss */
.newsletter {
  position: relative;
  padding: 3.5rem 0;
  background: rgba(22, 122, 198, 0.08);
  color: #ffffff;
  isolation: isolate;
}
.newsletter::before {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  background: url("/assets/images/heros/abstract-circuitry-2.png") center/cover no-repeat;
  opacity: 0.1;
  z-index: -1;
}

.newsletter__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 1.5rem;
  text-align: center;
}
@media (min-width: 769px) {
  .newsletter__inner {
    flex-direction: row;
    text-align: left;
  }
}

.newsletter__text {
  flex: 0 1 auto;
}

.newsletter__title {
  color: #0b1f3b;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.newsletter__lead {
  color: rgb(70.25, 70.25, 70.25);
  font-size: 1rem;
  opacity: 0.85;
}

.wpcf7-form.newsletter__form {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  width: 100%;
  max-width: 420px;
}
@media (max-width: 768px) {
  .wpcf7-form.newsletter__form {
    justify-content: center;
  }
}
.wpcf7-form.newsletter__form .wpcf7-form-control-wrap {
  display: contents;
}
.wpcf7-form.newsletter__form .wpcf7-form-control-wrap .wpcf7-not-valid-tip {
  color: #C7423A;
  font-size: 0.875rem;
  min-height: 1.2em;
  order: 3;
}
.wpcf7-form.newsletter__form .newsletter__input {
  flex: 1 1 auto;
  padding: 0.6rem 1rem;
  border: 2px solid rgba(22, 122, 198, 0.35);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.6);
  color: #202020;
  font-size: 1rem;
  min-width: 250px;
}
.wpcf7-form.newsletter__form .newsletter__input::placeholder {
  color: rgba(32, 32, 32, 0.55);
}
.wpcf7-form.newsletter__form .newsletter__input:focus {
  outline: none;
  border-color: #167ac6;
  background: #ffffff;
}
.wpcf7-form.newsletter__form .newsletter__btn {
  white-space: nowrap;
}
@media (max-width: 768px) {
  .wpcf7-form.newsletter__form .newsletter__btn {
    width: 100%;
  }
}
.wpcf7-form.newsletter__form .wpcf7-spinner {
  position: absolute;
  right: 0;
  top: 11px;
}
.wpcf7-form.newsletter__form .wpcf7-response-output {
  color: #167ac6;
  margin: 0;
  padding: 0;
  border: none;
}
.wpcf7-form.newsletter__form.invalid .wpcf7-response-output {
  display: none;
}

/* _connect.scss */
.connect {
  display: flex;
  align-items: center;
  gap: 20px;
  font-style: italic;
  font-size: 0.9375rem;
  color: #ffffff;
}

.connect__label {
  display: none;
  margin: 0;
}
@media (min-width: 768px) {
  .connect__label {
    display: block;
  }
}

.connect__list {
  display: flex;
  gap: 5px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.connect__link {
  display: flex;
  color: #f4f4f4;
  transition: color 0.25s ease, transform 0.25s ease;
}
.connect__link svg {
  width: 34px;
  height: 34px;
}
.connect__link:hover {
  color: rgb(223.6, 223.6, 223.6);
}
.connect__link:hover svg {
  animation: pop 0.3s ease forwards;
}

/* ==========  PRODUCT BLOCK  ========== */
.product {
  padding: 4rem 0 0;
  background: #ffffff;
  text-align: center;
}
@media (max-width: 768px) {
  .product {
    padding-bottom: 0;
  }
}
.product > .wrapper {
  display: flex;
  flex-direction: column;
}
.product .section-lead {
  font-size: 22px;
}

/* ----------  gallery  ---------- */
.product__gallery_wrapper {
  background-color: #f2f5f8;
  padding-bottom: 4rem;
}
.product__gallery_wrapper .wrapper {
  max-width: 1120px;
  max-width: 1130px;
  padding: 0;
}

.product__gallery .splide__track {
  padding: 50px 0 50px 0;
}
.product__gallery .splide__track .gallery__item {
  cursor: pointer;
}
.product__gallery .splide__track .gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.product__gallery .splide__track .gallery__item img:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}
.product__gallery .splide__arrow {
  width: 50px;
  height: 50px;
}
.product__gallery .splide__pagination li {
  margin: 0;
}
.product__gallery .splide__pagination__page.is-active {
  background: #167ac6;
}

.form-kickstarter {
  padding: 2rem;
  background: #ffffff;
  border: 1px solid rgba(56, 97, 140, 0.12);
  border-radius: 8px;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.05);
  display: grid;
  gap: 1.25rem;
}
@media (max-width: 768px) {
  .form-kickstarter {
    padding: 0;
    border: none;
    background: #ffffff;
    box-shadow: none;
  }
}
.form-kickstarter .hidden-fields-container {
  display: none;
}
.form-kickstarter label {
  display: grid;
  gap: 0.4rem;
  color: #0b1f3b;
  font-weight: 600;
  font-size: 0.95rem;
}
.form-kickstarter .wpcf7-form-control:not(.wpcf7-submit) {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 2px solid rgba(22, 122, 198, 0.35);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  color: #202020;
  font-size: 1rem;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.form-kickstarter .wpcf7-form-control:not(.wpcf7-submit)::placeholder {
  color: rgba(32, 32, 32, 0.45);
}
.form-kickstarter .wpcf7-form-control:not(.wpcf7-submit):focus {
  outline: none;
  border-color: #167ac6;
  background: #ffffff;
}
.form-kickstarter .wpcf7-form-control:not(.wpcf7-submit).wpcf7-not-valid {
  border-color: #C7423A;
}
.form-kickstarter textarea {
  min-height: 180px;
  resize: vertical;
  line-height: 1.55;
}
.form-kickstarter .wpcf7-response-output {
  color: #167ac6;
  text-align: center;
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
}
.form-kickstarter .wpcf7-spinner,
.form-kickstarter.invalid .wpcf7-response-output {
  display: none;
}

.kickstarter__fine-print {
  font-size: 0.8rem;
  color: #535353;
  margin-top: 0.75rem;
  font-style: italic;
}

.kickstarter__price-simple {
  display: flex;
  justify-content: center;
  gap: 4rem;
  margin-bottom: 2.5rem;
}

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

.price-simple__amount {
  display: block;
  font-size: 3rem;
  font-weight: 700;
  color: #167ac6;
}

.price-simple__detail {
  display: block;
  font-size: 0.9rem;
  color: #535353;
  margin-top: 0.25rem;
}

@media (max-width: 480px) {
  .kickstarter__price-simple {
    flex-direction: column;
    gap: 2rem;
  }
}

@media (max-width: 780px) {
  #contact-page-element > .e-con-inner {
    flex-direction: column-reverse;
  }
}
#contact-page-element .elementor-widget-heading > h2.elementor-heading-title {
  color: #202020;
  font-size: clamp(1.6rem, 2vw + 1rem, 2rem);
  font-weight: 700;
  line-height: 1.5;
}
#contact-page-element .elementor-widget-text-editor p {
  line-height: 1.7;
  color: #202020;
}
#contact-page-element .elementor-widget-text-editor p:last-child {
  margin-bottom: 0;
}


/* ========== PICOPODS PAGE - COMPACT HEADER ON MOBILE ========== */
@media (max-width: 768px) {
  .picopods .product {
    padding-top: 1.5rem;
  }
  .picopods .product .section-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
  }
  .picopods .product .section-lead {
    font-size: 1rem;
    margin-bottom: 0.75rem;
  }
}

@media (max-width: 480px) {
  .picopods .product {
    padding-top: 1rem;
  }
  .picopods .product .section-title {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
  }
  .picopods .product .section-lead {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
  }
}

sup.tm {
  font-size: 0.6em;
  vertical-align: super;
  margin-left: 0.1em;
  opacity: 0.75;
}
