/* BEGIN 6 pw,ts,ic Defaults */

:root {
  --default-gap: 20px;
  --rows-gap: 0;
  --columns-gap: var(--default-gap);
  --grid-gap: 0;
}

.item--html > :first-child {
  margin-top: 0;
}
.item--html > :last-child {
  margin-bottom: 0;
}
.item--rows {
  display: flex;
  flex-direction: column;
  gap: var(--rows-gap);
}
.item--columns {
  --column-count: 1;
  display: grid;
  grid-template-columns: repeat(var(--column-count), 1fr);
  gap: var(--columns-gap);
}
.item--grid {
  display: grid;
  gap: var(--grid-gap);
}
.item--image {
  display: flex;
}
.item--image img {
  max-width: 100%;
}
.item--image.item--center {
  justify-content: center;
  align-items: center;
}
.item--image.item--left {
  justify-content: left;
  align-items: start;
}
.item--image.item--right {
  justify-content: right;
  align-items: start;
}
.item--image.item--full-width {
  display: block;
}
.item--image.item--full-width img {
  width: 100%;
}
.item--button .item__button {
  display: inline-block;
  cursor: pointer;
  transition: all 0.5s;
  text-decoration: none;
  text-align: center;
}
.item--button .item__button:hover {
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
  text-decoration: none;
}
@media (max-width: 600px) {
  .item--button .item__button {
    width: 100%;
    display: block;
    text-align: center;
  }
}
.item--icon-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 100px 0;
}
.item__icon-grid-category {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0;
  width: 20%;
  text-decoration: none;
}
.item__icon-grid-icon {
  width: 5.5vw;
  height: 5.5vw;
  margin-bottom: 40px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.item__icon-grid-title {
  color: var(--text-color);
  font-size: 1.3vw;
}
.item--productset {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.item__productset-category {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  width: 78%;
  gap: 70px 0;
  margin: 10px 0px 100px;
}
.item__productset-column {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: stretch;
  padding: 0;
  width: 25%;
}
@media (max-width: 902px) {
  .item__productset-category {
    width: 100% !important;
    margin: 0;
    grid-gap: 0 !important;
    justify-content: flex-start;
  }
  .item__productset-column {
    flex-grow: 0;
    flex-basis: 49.6%;
    height: 100vw;
  }
  .item__productset-column:nth-last-child(1) {
    border-bottom: 0;
  }
  .item__productset-column:nth-last-child(2) {
    border-bottom: 0;
  }
}
.item img {
  max-width: 100%;
}
.item--centered-page {
  width: calc(100vw - 32px);
  max-width: 1200px;
  margin: 16px auto;
}
@media (max-width: 1700px) {
  .item--centered-page {
    position: relative;
    left: 0;
    transition: left 0.3s, margin-left 0.3s;
  }
  .site--sidebar-shown .item--centered-page {
    left: var(--sidebar-width);
    left: min(var(--sidebar-width), var(--sidebar-width) - (100vw - 1200px) / 2);
  }
}

@media (max-width: 902px) {
  .item--icon-grid {
    width: 100% !important;
    margin: 0;
    grid-gap: 0 !important;
    justify-content: flex-start;
  }
  .item--icon-grid-category {
    flex-grow: 0;
    flex-basis: 49.6%;
    height: 36vw;
  }
  .item--icon-grid-title {
    font-size: 3vw !important;
  }
}

/* END 6 pw,ts,ic Defaults */

/* BEGIN 7 ic,pw,ts Buttons */

.item--button-large .item__button {
  padding: 0.55em 2em;
  font-size: 125%;
  background-color: white;
  color: black;
}
.item--button-pill .item__button {
  border-radius: 1000em;
}
.item--button-regular .item__button {
  padding: 0.4em 1.5em;
  font-size: 100%;
  background-color: white;
  color: black;
}
.item--button-small .item__button {
  padding: 0.25em 1em;
  font-size: 75%;
  background-color: white;
  color: black;
}
.item--button-default .item__button {
  padding: 0.55em 2em;
  font-size: 125%;
  background-color: var(--primary-color);
  color: black;
}
.item--button-default-large .item__button {
  padding: 0.55em 4em;
  font-size: 125%;
  background-color: var(--primary-color);
  color: black;
}
.item--button-large-black .item__button {
  padding: 0.55em 2em;
  font-size: 125%;
  background-color: black;
  color: white;
}
.item--button-regular-black .item__button {
  padding: 0.4em 1.5em;
  font-size: 100%;
  background-color: black;
  color: white;
}
.item--button-small-black .item__button {
  padding: 0.25em 1em;
  font-size: 75%;
  background-color: black;
  color: white;
}
.item--button-invert .item__button {
  padding: 0.55em 2em;
  font-weight: 800;
  font-size: 150%;
  background-color: black;
  color: white;
}
.item--button-invert .item__button:hover {
  background-color: white;
  color: black;
}
@media (prefers-color-scheme: dark) {
  .item--button-invert .item__button {
    background-color: white;
    color: black;
  }
  .item--button-invert .item__button:hover {
    background-color: black;
    color: white;
  }
}
.item--button-terciary-hover .item__button {
  padding: 0.55em 2em;
  font-size: 150%;
  font-weight: 800;
  background-color: black;
  color: white;
}
.item--button-terciary-hover .item__button:hover {
  background-color: var(--terciary-color);
  color: black;
}
@media (prefers-color-scheme: dark) {
  .item--button-terciary-hover .item__button {
    background-color: white;
    color: black;
  }
  .item--button-terciary-hover .item__button:hover {
    background-color: var(--terciary-color);
    color: black;
  }
}
.item--button-trapezoid .item__button {
  padding: 0.55em 3em;
  font-size: 150%;
  font-weight: 800;
  background-color: black;
  color: white;
}
.item--button-trapezoid .item__button:hover {
  background-color: var(--primary-color);
  color: white;
  transform: scale(1.05);
  clip-path: polygon(10% 0, 100% 0, 90% 100%, 0% 100%);
  transition: all 0.3s ease;
}
@media (prefers-color-scheme: dark) {
  .item--button-trapezoid .item__button {
    background-color: white;
    color: black;
  }
  .item--button-trapezoid .item__button:hover {
    background-color: var(--primary-color);
    color: black;
  }
}
.item--button-size-small .item__button {
  padding: 0.25em 1em;
  font-size: 75%;
}
.item--button-size-medium .item__button {
  padding: 0.4em 1.5em;
  font-size: 100%;
}
.item--button-size-large .item__button {
  padding: 0.55em 2em;
  font-size: 125%;
}
.item--button-size-xlarge .item__button {
  padding: 0.7em 2.5em;
  font-size: 125%;
}
.item--button-size-full .item__button {
  width: 100%;
  display: block;
  box-sizing: border-box;
  padding-top: 0.5em;
  padding-bottom: 0.5em;
  padding-left: 1.5em;
  padding-right: 1.5em;
  font-size: 100%;
  text-align: center;
}
.item--button-color-primary .item__button {
  background-color: var(--primary-color);
  color: black;
}
.item--button-color-secondary .item__button {
  background-color: var(--secondary-color);
  color: white;
}
.item--button-color-tertiary .item__button {
  background-color: var(--tertiary-color);
  color: black;
}
.item--button-color-black .item__button {
  background-color: black;
  color: white;
}
.item--button-color-black-dark-mode-flip .item__button {
  background-color: black;
  color: white;
  border: 1px solid black;
}
@media (prefers-color-scheme: dark) {
  .item--button-color-black-dark-mode-flip .item__button {
    background-color: white;
    color: black;
    border: 1px solid white;
  }
}
.item--button-color-white .item__button {
  background-color: white;
  color: black;
}
.item--button-color-light-neutral .item__button {
  background-color: var(--light-neutral-color);
  color: black;
}
.item--button-shape-pill .item__button {
  border-radius: 1000em;
}
.item--button-shape-trapezoid .item__button:hover {
  transform: scale(1.05);
  clip-path: polygon(10% 0, 100% 0, 90% 100%, 0% 100%);
  transition: all 0.3s ease;
}
.item--button-hover-shadow .item__button:hover {
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}
.item--button-hover-scale .item__button:hover {
  transform: scale(1.05);
}
.item--button-hover-color-shift-2 .item__button:hover {
  background-color: var(--secondary-color);
  color: black;
}
.item--button-hover-color-shift-3 .item__button:hover {
  background-color: var(--tertiary-color);
  color: black;
}
.item--button-hover-invert .item__button:hover {
  background-color: white;
  color: black;
}
.item--button-color-white .item--button-hover-invert .item__button:hover {
  background-color: black;
  color: white;
}
@media (prefers-color-scheme: dark) {
  .item--button-dark-mode.item--button-color-primary .item__button {
    background-color: var(--primary-color);
    color: white;
  }
  .item--button-dark-mode.item--button-color-black .item__button {
    background-color: white;
    color: black;
  }
  .item--button-dark-mode.item--button-color-white .item__button {
    background-color: #333;
    color: white;
  }
}
.item--button--button-column-width {
  --item-type: column;
}
.item--button--button-column-width .item--button {
  display: flex;
  flex-direction: column;
  text-align: center;
}
.item--button--centered {
  justify-content: center;
  align-content: center;
  justify-items: center;
  align-items: center;
  display: flex;
}
.item--button--right {
  display: flex;
  justify-content: flex-end;
  align-items: right;
}
.item--button--left {
  display: flex;
  justify-content: flex-start;
  align-items: left;
}

/* END 7 ic,pw,ts Buttons */

/* BEGIN 8 ic,pw,ts Scaffolding */

:root {
  --section-width: 1200px;
  --section-vertical-padding: 30px;
  --section-top-padding-xl: 120px;
  --section-gap: var(--default-gap);
}

.item--section, .item--section-primary-color, .item--section-white, .item--section-black {
  --item-type: rows;
  --style-comment: "The base section type. Sections themselves are full-width, but contents are clamped.";
  padding: var(--section-vertical-padding) 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--section-gap);
}
.item--section > *, .item--section-primary-color > *, .item--section-white > *, .item--section-black > * {
  width: 100%;
  max-width: var(--section-width);
}
.page > .item > .item--section:first-child, .page > .item > .item--section-primary-color:first-child, .page > .item > .item--section-white:first-child, .page > .item > .item--section-black:first-child {
  padding-top: 40px;
}

.page > .item > .item--section:last-child, .page > .item > .item--section-primary-color:last-child, .page > .item > .item--section-white:last-child, .page > .item > .item--section-black:last-child {
  padding-bottom: 150px;
}

.item--section-black {
  --style-comment: 'Base section with black background and white text regardless of color setting. Prefer "section" unless it looks bad in light mode.';
  background-color: black;
  color: white;
}
.item--section-white {
  --style-comment: 'Base section with white background and black text regardless of color setting. Prefer "section" unless it looks bad in dark mode.';
  background-color: white;
  color: black;
}
.item--section-primary-color {
  --style-comment: 'Base section with white background and black text regardless of color setting. Prefer "section" unless it looks bad in dark mode.';
  background-color: var(--section-primary-color);
  color: black;
}
.item--wide-section-page {
  --section-width: 1920px;
}
.item--2400-section-page {
  --section-width: 2400px;
}
.item--1920-section-page {
  --section-width: 1920px;
}
.item--1600-section-page {
  --section-width: 1600px;
}
.item--1440-section-page {
  --section-width: 1440px;
}
.item--1400-section-page {
  --section-width: 1400px;
}
.item--1280-section-page {
  --section-width: 1280px;
}
.item--1024-section-page {
  --section-width: 1024px;
}
.item--960-section-page {
  --section-width: 960px;
}
.item--800-section-page {
  --section-width: 800px;
}
.item--768-section-page {
  --section-width: 768px;
}
.item--640-section-page {
  --section-width: 640px;
}
.item--480-section-page {
  --section-width: 480px;
}
.item--mid-section-page {
  --section-width: 1400px;
}
.item--padding-none {
  --section-vertical-padding: 0px;
}
.item--padding-tight {
  --section-vertical-padding: 20px;
}
.item--padding-normal {
  --section-vertical-padding: 40px;
}
.item--padding-loose {
  --section-vertical-padding: 60px;
}
.item--padding-xl {
  --section-vertical-padding: 120px;
}
.item--padding-2xl {
  --section-vertical-padding: 180px;
}
.item--padding-top-2xl {
  padding-top: 180px;
}
.item--padding-bottom-2xl {
  padding-bottom: 180px;
}
.item--stack {
  gap: 40px;
}
@media (max-width: 600px) {
  .item--stack {
    gap: 24px;
  }
}
.item--landing-2xl-wrapper {
  --rows-gap: var(--default-gap);
  --grid-gap: var(--default-gap);
  --default-gap: 20px;
  --section-vertical-padding: 180px;
}
.item--stack-large {
  gap: 80px;
}
@media (max-width: 600px) {
  .item--stack-large {
    gap: 24px;
  }
}
.item--mind-the-gap {
  --rows-gap: var(--default-gap);
  --grid-gap: var(--default-gap);
  --default-gap: 33px;
}

/* END 8 ic,pw,ts Scaffolding */

/* BEGIN 10 ic,pw,ts Fonts */

.item--big-landing-fonts h1,
.item--big-landing-fonts .item--h1 {
  font-size: clamp(48px, 7vw, 96px);
  line-height: 1.1;
  font-weight: 800;
}
.item--big-landing-fonts h2,
.item--big-landing-fonts .item--h2 {
  font-size: clamp(32px, 5vw, 64px);
  line-height: 1.2;
  font-weight: 700;
}
.item--big-landing-fonts h3,
.item--big-landing-fonts .item--h3 {
  font-size: clamp(20px, 3vw, 36px);
  line-height: 1.3;
  font-weight: 600;
}
.item--big-landing-fonts p,
.item--big-landing-fonts .item--p {
  font-size: clamp(16px, 1.5vw, 20px);
  line-height: 1.6;
}
.item--font-thin {
  /* --- Added: Spacing rules for H2s and H3s only --- */
  /* Applies margin-top when an h2 or h3 immediately follows another h2 or h3 */
}
.item--font-thin h1,
.item--font-thin .item--h1 {
  font-size: clamp(48px, 7vw, 96px);
  line-height: 1.1;
  font-weight: 800;
  /* Note: This is a heavy weight in a 'font-thin' context */
}
.item--font-thin h2,
.item--font-thin .item--h2 {
  font-size: clamp(32px, 5vw, 42px);
  line-height: 1.2;
  font-weight: 200;
}
.item--font-thin h3,
.item--font-thin .item--h3 {
  font-size: clamp(20px, 3vw, 28px);
  line-height: 1.3;
  font-weight: 200;
}
.item--font-thin p,
.item--font-thin .item--p {
  font-size: clamp(16px, 1.5vw, 20px);
  line-height: 1.6;
  font-weight: 200;
}
.item--font-thin h2 + h2,
.item--font-thin h2 + h3,
.item--font-thin h3 + h2,
.item--font-thin h3 + h3 {
  margin-top: -30px;
  /* Adjust this value as needed (e.g., 15px, 0.75rem) */
}
.item--all-caps {
  text-transform: uppercase;
}

/* END 10 ic,pw,ts Fonts */

/* BEGIN 12 ic,pw,ts Product Specials */

.item--double-image-hover {
  display: inline-block;
  position: relative;
}
.item--double-image-hover img {
  display: block;
  width: 100%;
  height: auto;
  transition: opacity 0.3s ease;
}
.item--double-image-hover img:nth-child(2) {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  pointer-events: none;
}
.item--double-image-hover:hover img:nth-child(2) {
  opacity: 1;
}
.item--jersey-diagram-container {
  position: relative;
  aspect-ratio: 3/4;
  width: 30%;
}
.item--jersey-diagram-container::after {
  content: "";
  display: table;
  clear: both;
}
.item--jersey-image {
  position: absolute;
  display: block;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  pointer-events: none;
}
.item--diagram-point {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--primary-color, #00c4b5);
  transform: translate(-50%, -50%);
  z-index: 10;
}
@media (max-width: 768px) {
  .item--diagram-point {
    width: 8px;
    height: 8px;
  }
}
.item--diagram-line {
  position: absolute;
  height: 2px;
  background-color: var(--primary-color, #00c4b5);
  z-index: 5;
  transform: translateY(-50%);
}
.item--diagram-line--right {
  left: 0;
  right: auto;
}
.item--diagram-line--left {
  right: 0;
  left: auto;
}
@media (max-width: 768px) {
  .item--diagram-line {
    height: 1px;
  }
}
.item--diagram-text {
  position: absolute;
  color: inherit;
  font-size: clamp(12px, 1.5vw, 16px);
  font-weight: 600;
  padding: 0;
  z-index: 10;
  transform: translateY(-50%);
  width: 300px !important;
  max-width: 300px !important;
  white-space: normal !important;
  word-wrap: break-word !important;
  line-height: 1.3 !important;
}
.item--diagram-text--right {
  left: 0;
  text-align: left;
}
.item--diagram-text--left {
  right: 0;
  text-align: right;
}
@media (max-width: 768px) {
  .item--diagram-text {
    font-size: 11px;
    width: 180px !important;
    max-width: 180px !important;
  }
}
@media (max-width: 480px) {
  .item--diagram-text {
    font-size: 10px;
    width: 140px !important;
    max-width: 140px !important;
  }
}
.item--landing-page-fresh-drops {
  background-color: black;
  background-image: url("/data/admin-uploads/2023-08-01/cur4zcrg.svg");
  background-position: left bottom;
  background-repeat: repeat-x;
  background-size: 686px auto;
}
@media only screen and (max-width: 1600px) {
  .item--landing-page-fresh-drops {
    background-size: 53vw auto;
  }
}
@media only screen and (max-width: 1300px) {
  .item--landing-page-fresh-drops {
    background-size: 54vw auto;
  }
}
@media only screen and (max-width: 872px) {
  .item--landing-page-fresh-drops {
    background-repeat: no-repeat;
    background-position: left;
    background-size: cover;
  }
}
.item--landing-page-fresh-drops h1 {
  font-size: clamp(40px, 5.6vw, 96px);
  line-height: 1.1;
  font-weight: 800;
  text-transform: uppercase;
  color: white;
  text-align: center;
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
  max-width: 1200px;
}
@media only screen and (max-width: 1352px) {
  .item--landing-page-fresh-drops h1 {
    font-size: clamp(32px, 4.6vw, 64px);
    padding-left: 6vw;
    padding-right: 6vw;
  }
}
@media only screen and (max-width: 872px) {
  .item--landing-page-fresh-drops h1 {
    font-size: 6.2vw;
    line-height: 6.8vw;
    padding-left: 6vw;
    padding-right: 6vw;
    width: auto;
  }
}
.item--header-fresh-drops {
  display: flex;
}
.item--header-fresh-drops .item--logo-txt {
  display: flex;
  flex-direction: column;
  flex: 0.36;
  background-color: #000000;
}
.item--header-fresh-drops .item--logo-txt .item__button--regular {
  background-color: #00D3C8;
  color: #000000;
  margin: 15px;
  border-radius: 2px;
}
.item--header-fresh-drops .item--logo-txt .item--image {
  width: clamp(150px, 17vw, 330px);
}
.item--header-fresh-drops .item--logo-txt .item--image img {
  width: 100%;
  height: 100%;
  aspect-ratio: inherit !important;
}
.item--header-fresh-drops .item--logo-txt .item__button-regular {
  width: fit-content;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: min(1.5vw, 32px);
  background-color: #00D2C7;
  border: none;
  font-weight: 700;
  padding: 0.6em 0.5em;
  margin-top: 40px;
  letter-spacing: -1px;
}
.item--header-fresh-drops .item--image {
  flex: 0.57;
}
.item--header-fresh-drops .item--image img {
  height: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  object-position: left;
}
.item--header-fresh-drops .item--text-shirt {
  flex: 0.13;
  background-color: #00D3C8;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-inline: 40px;
}
.item--header-fresh-drops .item--text-shirt p {
  text-align: center;
}
.item--header-fresh-drops .item--text-shirt p strong {
  font-size: min(2.5vw, 50px);
  font-weight: 700;
  color: #000000;
}
.item--header-fresh-drops .item--text-shirt .item--image img {
  width: 100%;
  height: 100%;
  aspect-ratio: inherit !important;
}
@media only screen and (max-width: 872px) {
  .item--header-fresh-drops {
    display: none;
  }
}
.item--header-fresh-drops-mobile {
  display: none;
}
.item--header-fresh-drops-mobile .item--text-shirt-mobile {
  display: none;
}
.item--header-fresh-drops-mobile .item--photo-news-carousel-mobile {
  display: none;
}
.item--header-fresh-drops-mobile .item--product-of-week {
  display: none;
}
@media only screen and (max-width: 872px) {
  .item--header-fresh-drops-mobile {
    display: block;
  }
  .item--header-fresh-drops-mobile .item__button--regular {
    background-color: #00D2C7;
  }
  .item--header-fresh-drops-mobile .item--text-shirt-mobile {
    display: flex;
    flex-direction: column;
    background-color: #000000;
    padding-block: 40px;
    justify-content: center;
    align-items: center;
  }
  .item--header-fresh-drops-mobile .item--text-shirt-mobile .item--image {
    width: 55vw;
  }
  .item--header-fresh-drops-mobile .item--text-shirt-mobile .item__button-regular {
    width: fit-content;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: clamp(16px, 4vw, 26px);
    background-color: #00D2C7;
    border: none;
    font-weight: 700;
    padding: 0.6em 4vw;
    margin-top: 10px;
    letter-spacing: -1px;
  }
  .item--header-fresh-drops-mobile .item--photo-news-carousel-mobile {
    display: block;
    height: 85vw;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px dashed gray;
    margin: 3%;
  }
  .item--header-fresh-drops-mobile .item--photo-news-carousel-mobile .item--carousel-text-mobile {
    font-size: 5vw;
    font-weight: 900;
    color: black;
    text-align: center;
  }
  .item--header-fresh-drops-mobile .item--product-of-week {
    background-color: #00D2C7;
    height: 80vw;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2VW;
    text-align: center;
    padding: 3vw;
    font-weight: 900;
    color: black;
    min-width: unset;
    flex-wrap: nowrap;
  }
  .item--header-fresh-drops-mobile .item--product-of-week .item--image {
    display: contents;
  }
  .item--header-fresh-drops-mobile .item--product-of-week .item--image img {
    max-width: 50%;
  }
  .item--header-fresh-drops-mobile .item--product-of-week .item--product-of-week-left,
  .item--header-fresh-drops-mobile .item--product-of-week .item--product-of-week-right {
    min-width: unset !important;
  }
  .item--header-fresh-drops-mobile .item--product-of-week .item--product-of-week-left {
    flex: 1;
    font-size: 8vw;
  }
  .item--header-fresh-drops-mobile .item--product-of-week .item--product-of-week-left p {
    margin: 0;
  }
  .item--header-fresh-drops-mobile .item--product-of-week .item--product-of-week-right {
    flex: 1;
    border: 2px dashed gray;
    height: 70vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 7vw;
  }
}
.item--drops-new {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  color: #000000;
  height: 442px;
  padding-top: min(2vw, 20px);
  padding-inline: min(1vw, 10px);
  gap: 2vw;
}
.item--drops-new .item--fresh-drops {
  font-size: min(6.5vw, 123px);
  line-height: min(3.6vw, 55px);
  padding-top: min(2vw, 50px);
  font-weight: bolder;
  letter-spacing: 15px;
  color: #00D2C7;
}
.item--drops-new .item--fresh-drops p {
  margin: 0;
  padding-bottom: 30px;
}
.item--drops-new .item--fresh-drops:first-child {
  letter-spacing: 12px;
}
.item--drops-new .item--fresh-drops:last-child {
  letter-spacing: 9px;
}
.item--drops-new .item--new-jersey {
  font-size: min(4.2vw, 80px);
  padding-top: min(3vw, 40px);
  line-height: min(3.9vw, 85px);
  width: 62%;
  color: white;
  font-weight: 900;
}
.item--drops-new .item--new-jersey p {
  margin: 0;
  padding-bottom: 30px;
}
@media only screen and (max-width: 1200px) {
  .item--drops-new {
    height: 34vw;
    gap: 2vw;
  }
  .item--drops-new .item--fresh-drops p,
  .item--drops-new .item--new-jersey p {
    padding-bottom: 15px;
  }
}
@media only screen and (max-width: 872px) {
  .item--drops-new {
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    gap: 10vw;
    min-height: 95vw;
    height: auto;
  }
  .item--drops-new .item--fresh-drops {
    line-height: 8.6vw;
    font-size: 19vw;
    text-align: center;
    padding-left: 8vw;
    padding-top: 4vw;
  }
  .item--drops-new .item--fresh-drops p {
    padding-bottom: 0;
  }
  .item--drops-new .item--fresh-drops:first-child {
    letter-spacing: 2.2vw;
    padding-top: 7vw;
  }
  .item--drops-new .item--fresh-drops:last-child {
    letter-spacing: 1.2vw;
    margin-top: 4vw;
    padding-right: 1vw;
  }
  .item--drops-new .item--new-jersey {
    text-align: center;
    font-size: 6.2vw;
    line-height: 6.9vw;
    width: auto;
  }
  .item--drops-new .item--new-jersey p {
    padding-bottom: 0;
  }
}
@media only screen and (max-width: 630px) {
  .item--drops-new {
    background-position: top;
  }
}
.item--icon-nav-expand {
  --lerp-0: 1;
  --lerp-1: 0.5625;
  --lerp-2: 0.25;
  --lerp-3: 0.0625;
  --lerp-4: 0;
  display: flex;
  list-style: none;
  align-items: center;
  justify-content: center;
  align-content: center;
  backdrop-filter: blur(10px);
  flex-wrap: wrap;
}
.item--icon-nav-expand > .item--columns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: 100%;
}
.item--icon-nav-expand .item--html {
  display: grid;
  place-items: center;
  align-content: center;
  transition: flex 0.5s cubic-bezier(0.25, 0.1, 0.25, 1), transform 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
  flex: calc(0.2 + var(--lerp, 0) * 1);
  position: relative;
  outline: none;
  --lerp: 0.5;
  transform: scale(calc(1 + var(--lerp) * 0.5)) translateY(calc(var(--lerp) * -25%));
  max-width: 100px;
  max-height: 100px;
}
.item--icon-nav-expand a {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  text-decoration: none;
  outline: transparent 4px solid;
  transition: transform 0.2s ease;
}
.item--icon-nav-expand a img {
  width: 56%;
  height: auto;
  max-width: 56%;
  transition: transform 0.2s;
}
.item--icon-nav-expand a span {
  margin-top: 4px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
}
.item--icon-nav-expand:not(:hover) .item--html {
  --lerp: 0.5;
}
.item--icon-nav-expand :is(.item--html:hover, .item--html:focus-visible) {
  --lerp: var(--lerp-0);
  z-index: 5;
}
.item--icon-nav-expand .item--html:hover + .item--html {
  --lerp: var(--lerp-1);
  z-index: 4;
}
.item--icon-nav-expand .item--html:has(+ .item--html:hover) {
  --lerp: var(--lerp-1);
  z-index: 4;
}
.item--icon-nav-expand .item--html:hover + .item--html + .item--html {
  --lerp: var(--lerp-2);
  z-index: 3;
}
.item--icon-nav-expand .item--html:has(+ .item--html + .item--html:hover) {
  --lerp: var(--lerp-2);
  z-index: 3;
}
.item--icon-nav-expand .item--html:hover + .item--html + .item--html + .item--html {
  --lerp: var(--lerp-3);
  z-index: 2;
}
.item--icon-nav-expand .item--html:has(+ .item--html + .item--html + .item--html:hover) {
  --lerp: var(--lerp-3);
  z-index: 2;
}
.item--icon-nav-expand .item--html:hover + .item--html + .item--html + .item--html + .item--html {
  --lerp: var(--lerp-4);
  z-index: 1;
}
.item--icon-nav-expand .item--html:has(+ .item--html + .item--html + .item--html + .item--html:hover) {
  --lerp: var(--lerp-4);
  z-index: 1;
}
.item--icon-nav-expand .item--html:hover + .item--html + .item--html + .item--html + .item--html + .item--html,
.item--icon-nav-expand .item--html:hover + .item--html + .item--html + .item--html + .item--html + .item--html + .item--html,
.item--icon-nav-expand .item--html:hover + .item--html + .item--html + .item--html + .item--html + .item--html + .item--html + .item--html,
.item--icon-nav-expand .item--html:hover + .item--html + .item--html + .item--html + .item--html + .item--html + .item--html + .item--html + .item--html,
.item--icon-nav-expand .item--html:hover + .item--html + .item--html + .item--html + .item--html + .item--html + .item--html + .item--html + .item--html + .item--html,
.item--icon-nav-expand .item--html:has(+ .item--html + .item--html + .item--html + .item--html + .item--html:hover),
.item--icon-nav-expand .item--html:has(+ .item--html + .item--html + .item--html + .item--html + .item--html + .item--html:hover),
.item--icon-nav-expand .item--html:has(+ .item--html + .item--html + .item--html + .item--html + .item--html + .item--html + .item--html:hover),
.item--icon-nav-expand .item--html:has(+ .item--html + .item--html + .item--html + .item--html + .item--html + .item--html + .item--html + .item--html:hover),
.item--icon-nav-expand .item--html:has(+ .item--html + .item--html + .item--html + .item--html + .item--html + .item--html + .item--html + .item--html + .item--html:hover) {
  --lerp: var(--lerp-4);
  z-index: 1;
}
@media (max-width: 960px) {
  .item--icon-nav-expand .item--html {
    transition: none;
    transform: none;
  }
  .item--icon-nav-expand a svg {
    width: auto;
    height: auto;
    max-width: auto;
    max-height: 60px;
  }
}
.item--dual-image {
  --g: 8px;
  display: grid;
  clip-path: inset(1px);
}
.item--dual-image > img {
  --p: calc(-1 * var(--g));
  grid-area: 1/1;
  width: 350px;
  cursor: pointer;
  transition: 0.4s 0.1s;
}
.item--dual-image > img:first-child {
  clip-path: polygon(0 0, calc(100% + var(--p)) 0, 0 calc(100% + var(--p)));
}
.item--dual-image > img:last-child {
  clip-path: polygon(100% 100%, 100% calc(0% - var(--p)), calc(0% - var(--p)) 100%);
}
.item--dual-image:hover > img:last-child, .item--dual-image:hover > img:first-child:hover {
  --p: calc(50% - var(--g));
}
.item--dual-image:hover > img:first-child, .item--dual-image:hover > img:first-child:hover + img {
  --p: calc(-50% - var(--g));
}

/* END 12 ic,pw,ts Product Specials */

/* BEGIN 1 pw,ts,ic Global */

a {
  color: var(--primary-color);
  text-decoration: none;
}

a:hover {
  color: var(--link-hover-color);
  text-decoration: underline;
}

@media (max-width: 600px) {
  .item--mobile-hide {
    display: none;
  }
}
@media (max-width: 550px) {
  .item--2-columns {
    display: flex;
    flex-direction: column;
  }
}
@media (max-width: 600px) {
  .item--3-columns {
    display: flex;
    flex-direction: column;
  }
}
@media (max-width: 800px) {
  .item--4-columns {
    display: flex;
    flex-direction: column;
  }
}
@media (max-width: 1000px) {
  .item--5-columns {
    display: flex;
    flex-direction: column;
  }
}
@media (max-width: 600px) {
  .item--columns-mobile {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .item--columns-lock-mobile {
    grid-template-columns: inherit;
  }
}
@media (max-width: 800px) {
  .item--columns-flip-mobile {
    flex-direction: column-reverse;
  }
}
.item--transpose-columns > .item--rows {
  gap: 20px;
}
@media (max-width: 800px) {
  .item--transpose-columns {
    display: flex;
    flex-direction: column;
  }
  .item--transpose-columns > .item--rows {
    display: grid;
    grid-template-columns: 1fr 4fr;
  }
  .item--transpose-columns > .item--rows > .item--image {
    aspect-ratio: auto;
    align-items: start;
  }
}
.item--centered {
  justify-content: center;
  align-content: center;
  justify-items: center;
  align-items: center;
  display: flex;
}
.item--right {
  display: flex;
  justify-content: flex-end;
  align-items: right;
}
.item--left {
  display: flex;
  justify-content: flex-start;
  align-items: left;
}
.item--svg-color a {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: inherit;
  text-decoration: none;
}
.item--svg-color a svg {
  height: 60px;
  width: auto;
  display: block;
  margin-bottom: 8px;
  transition: fill 0.3s;
}
.item--svg-color a span {
  text-align: center;
  text-decoration: underline;
}
.item--svg-color:hover {
  color: var(--primary-color);
}
.item--hero-banner-content-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  min-height: clamp(500px, 80vh, 700px);
  padding: 2vh 4vw;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  gap: 20px;
}
.item--hero-banner-content-left .item--html h1 {
  font-size: clamp(36px, 14vw, 96px);
  line-height: 1.2;
  font-weight: 800;
  color: #ffffff;
  text-align: left;
}
.item--hero-banner-content-left .item--rows,
.item--hero-banner-content-left .item--columns,
.item--hero-banner-content-left .item--html,
.item--hero-banner-content-left .item--button,
.item--hero-banner-content-left .item--block {
  align-self: flex-start;
  text-align: left;
}
.item--hero-banner-content-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  min-height: clamp(500px, 80vh, 700px);
  padding: 2vh 4vw;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  gap: 20px;
}
.item--hero-banner-content-right .item--html h1 {
  font-size: clamp(36px, 14vw, 96px);
  line-height: 1.2;
  font-weight: 800;
  color: #ffffff;
  max-width: 800px;
  text-align: right;
}
.item--hero-banner-content-right .item--rows,
.item--hero-banner-content-right .item--columns,
.item--hero-banner-content-right .item--html,
.item--hero-banner-content-right .item--block {
  align-self: flex-end;
  text-align: right;
}
.item--block-quote-text {
  --do-nothing: true ;
}
.item--design-services-block {
  gap: 100px;
  align-items: center;
}
@media (max-width: 800px) {
  .item--design-services-block {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
}
.item--design-services-block > :nth-child(2) {
  font-size: 20px;
  font-weight: 700;
}
.item--design-services-block > :nth-child(3) a {
  background: #00d3c8;
  border-color: #00d3c8;
  width: 350px;
  height: 60px;
  font-size: 24px;
  font-weight: 800;
}
.item--header-centered {
  text-align: center;
}
.item--square {
  aspect-ratio: 1;
  align-items: end;
}
.item--logo-list {
  --gap: 50px;
  --num: 5;
  display: flex;
  flex-wrap: wrap;
  gap: var(--gap);
  justify-content: center;
}
.item--logo-list > .item {
  min-width: 140px;
  width: calc(100% / var(--num) - var(--gap) * (var(--num) - 1) / var(--num) - 1px);
  aspect-ratio: 3/2;
}
.item--logo-list > .item img {
  max-height: 100%;
}
.item--vertical-center {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: clamp(40px, 10vh, 160px) 0;
  box-sizing: border-box;
}
@media (max-height: 600px) {
  .item--vertical-center {
    justify-content: flex-start;
    padding-top: 60px;
    min-height: auto;
  }
}
.item--vertical-center-only {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(40px, 10vh, 160px) 0;
  box-sizing: border-box;
}
@media (max-height: 600px) {
  .item--vertical-center-only {
    justify-content: flex-start;
    padding-top: 60px;
    min-height: auto;
  }
}
.item--hero-quote-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
  font-style: italic;
  font-size: 18px;
  line-height: 1.5;
}
.item--hero-quote-text blockquote {
  margin: 0;
  padding: 0;
  border-left: 4px solid var(--primary-color);
  padding-left: 16px;
}
.item--hero-quote-text cite {
  margin-top: 12px;
  display: block;
  font-style: normal;
  font-size: 16px;
}
.item--paragraphs {
  gap: 40px;
}
.item--floating-cta {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: auto;
  max-width: 100%;
  padding: 12px 24px;
  background: inherit;
  color: inherit;
  gap: 16px;
}
.item--floating-cta > * {
  width: auto;
  max-width: 100%;
}
@media (max-width: 768px) {
  .item--floating-cta {
    width: calc(100% - 32px);
    left: 16px;
    right: 16px;
    transform: none;
    border-radius: 8px;
    padding: 16px;
  }
}
.item--floating-cta-right {
  left: auto;
  right: 24px;
  transform: none;
}
@media (max-width: 768px) {
  .item--floating-cta-right {
    right: 16px;
    left: 16px;
  }
}
@media (max-width: 960px) {
  .item--columns-scroll-wrapper {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    width: 100%;
    padding-bottom: 12px;
    margin-bottom: -12px;
  }
}
@media (max-width: 960px) {
  .item--columns-overflow-flex {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    justify-content: flex-start;
    align-items: center;
    gap: 800px;
    min-width: max-content;
  }
}
.item--nav-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 6px;
}
.item--hero-banner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  min-height: clamp(500px, 80vh, 700px);
  padding: 40px 80px 40px 80px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  gap: 40px;
  width: 100%;
}
.item--hero-banner .item--html h1 {
  font-size: clamp(36px, 14vw, 96px);
  line-height: 1.2;
  font-weight: 800;
  color: #ffffff;
  text-align: left;
}
.item--hero-banner-left-shift {
  background-position: right center;
}
.item--service-card {
  background-color: #3f3f3f;
  color: #ffffff;
  text-align: left;
  padding: 40px;
  gap: 20px;
  width: 100%;
  min-height: 550px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .item--service-card {
    padding: 20px;
    gap: 0px;
    justify-content: space-between;
    min-height: 400px;
    margin: 0px;
  }
}
.item--service-cards-column {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 0;
  margin: 0 auto;
}
@media (max-width: 1600px) {
  .item--service-cards-column {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .item--service-cards-column {
    grid-template-columns: 1fr;
    justify-items: center;
    width: 100%;
  }
}

/* END 1 pw,ts,ic Global */

/* BEGIN 11 ic,pw,ts For Danko Approval */



/* END 11 ic,pw,ts For Danko Approval */

/* BEGIN 5 pw,ts,ic Legacy Blog */

.item--blog-container .item--image img {
  max-width: 36%;
}
.item--blog-container {
  width: 100%;
  margin: 0 auto;
  padding: 20px;
}
.item--fundraiser-blog-section {
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-start;
  gap: min(2vw, 40px);
  padding: min(2vw, 65px) min(2vw, 50px) min(5vw, 100px) min(4vw, 64px);
}
.item--fundraiser-blog-section .item--blog-section-left {
  flex: 1;
  display: flex;
  align-items: flex-start;
}
.item--fundraiser-blog-section .item--blog-section-left .item--related-photo-left {
  display: none;
}
.item--fundraiser-blog-section .item--blog-section-left .item--html h4 {
  color: #00D2C7;
  padding-bottom: 7px;
  font-weight: 900;
  font-size: min(3vw, 58px);
  text-align: start;
}
.item--fundraiser-blog-section .item--blog-section-left .item--html p {
  color: var(--text-color);
  font-size: min(1.9vw, 38px);
}
.item--fundraiser-blog-section .item--blog-section-left .item--blog-section-other-blogs {
  display: none;
}
.item--fundraiser-blog-section .item--blog-section-right {
  flex: 1.2;
  margin-top: min(5vw, 85px);
  gap: min(2vw, 20px);
  color: black;
  display: flex;
  justify-content: flex-start;
  flex-wrap: nowrap;
}
.item--fundraiser-blog-section .item--blog-section-right > .item--rows {
  gap: min(1vw, 20px);
  align-items: flex-start;
}
.item--fundraiser-blog-section .item--blog-section-right .item--related-photo-right {
  flex: 1;
  border: 2px dashed gray;
  height: min(20vw, 408px);
  font-size: min(2.2vw, 55px);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  border-radius: 10px;
  font-weight: 700;
  text-align: center;
}
.item--fundraiser-blog-section .item--blog-section-right .item--rows {
  display: flex;
  gap: 1vw;
}
.item--fundraiser-blog-section .item--blog-section-right .item--columns {
  align-items: flex-start;
}
.item--fundraiser-blog-section .item--blog-section-right .item--html p {
  border: 2px dashed gray;
  font-size: min(1.2vw, 32px);
  padding: min(2vw, 34px);
  font-weight: 700;
}
@media only screen and (max-width: 872px) {
  .item--fundraiser-blog-section {
    flex-direction: column;
    padding: 2vw 2vw 5vw 2vw;
  }
  .item--fundraiser-blog-section .item--blog-section-right {
    display: none;
  }
  .item--fundraiser-blog-section .item--blog-section-left .item--related-photo-left {
    border: none !important;
    border: 2px dashed gray;
    height: 50vw;
    display: flex;
    background: black;
    color: white;
    justify-content: center;
    align-items: center;
    padding: 20px;
    font-weight: 700;
    width: 98%;
    margin-block: 3vw;
    text-align: center;
  }
  .item--fundraiser-blog-section .item--blog-section-left .item--related-photo-left > p {
    color: white;
    font-size: 6vw !important;
  }
  .item--fundraiser-blog-section .item--blog-section-left .item--html h4 {
    font-size: 7vw;
    padding-top: 7px;
    padding-bottom: 0px;
  }
  .item--fundraiser-blog-section .item--blog-section-left .item--html p {
    font-size: 3.9vw;
    color: #515151;
  }
  .item--fundraiser-blog-section .item--blog-section-left .item--blog-section-other-blogs {
    margin-top: 3vw;
    display: flex;
    flex-direction: row;
    height: 40vw;
    gap: 3vw;
    color: white;
  }
  .item--fundraiser-blog-section .item--blog-section-left .item--blog-section-other-blogs > .item--columns {
    position: relative;
    width: 46vw;
  }
  .item--fundraiser-blog-section .item--blog-section-left .item--blog-section-other-blogs > .item--columns .item--html {
    min-width: unset;
  }
  .item--fundraiser-blog-section .item--blog-section-left .item--blog-section-other-blogs .item--html p {
    background-color: black;
    border: none;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 35vw;
    width: 46vw;
    font-size: 2.8vw;
  }
  .item--fundraiser-blog-section .item--blog-section-left .item--other-blogs-title {
    position: absolute;
    height: 10vw !important;
    bottom: 0vw;
  }
  .item--fundraiser-blog-section .item--blog-section-left .item--other-blogs-title p {
    height: 10vw !important;
    background-image: url("/data/admin-uploads/2023-06-29/n3272jyj.svg");
    background-size: 46vw 12vw;
    color: black !important;
    font-weight: 700;
    background-position: bottom;
    background-size: 46vw 8vw !important;
    justify-content: flex-start !important;
    padding-left: 3vw;
    padding-top: 2vw;
  }
}
.item--homePageBlogPost {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: min(2vw, 65px) min(2vw, 50px) min(5vw, 100px) min(4vw, 64px);
  gap: 30px;
  flex-direction: column;
}
.item--homePageBlogPost .home-page-blog-image {
  flex: 1 1 40%;
}
.item--homePageBlogPost .home-page-blog-post {
  flex: 1 1 40%;
}
.item--homePageBlogPost .home-page-blog-post__title {
  margin-bottom: 2px;
}
.item--homePageBlogPost .home-page-blog-post__title a {
  padding-bottom: 7px;
  font-weight: 800;
  font-size: 36px;
  line-height: 38px;
  text-align: start;
  text-decoration: none;
}
.item--homePageBlogPost .home-page-blog-post__date-author {
  display: flex;
  gap: 20px;
  margin-bottom: 10px;
}
.item--homePageBlogPost .home-page-blog-post__row {
  display: flex;
  gap: 20px;
}
.item--homePageBlogPost .home-page-blog-post__abstract {
  flex: 1 1 auto;
}
.item--homePageBlogPost .home-page-blog-post__image {
  flex: 1 1 100%;
}
.item--homePageBlogPost .home-page-blog-post__image img {
  aspect-ratio: 16/9;
  width: 100%;
  object-fit: cover;
  object-position: left;
}
.item--homePageBlogPost .home-page-blog-post .item--html {
  font-size: 16px;
  text-align: justify;
  height: 15vw;
  overflow-y: scroll;
}
.item--homePageBlogPost .home-page-blog {
  display: flex;
  gap: 40px;
}
.item--homePageBlogPost .home-page-blog-history {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.item--homePageBlogPost .home-page-blog-history__post {
  flex: 1 1;
}
.item--homePageBlogPost .home-page-blog-history__post-title {
  margin-top: 15px;
}
.item--homePageBlogPost .home-page-blog-history__post-title a {
  text-decoration: none;
  font-size: 19px;
  font-weight: bold;
}
.item--homePageBlogPost .home-page-blog-history__post-date-author {
  display: flex;
  gap: 20px;
  margin-top: 5px;
}
.item--homePageBlogPost .home-page-blog-history__image img {
  aspect-ratio: 16/9;
  width: 100%;
  object-fit: cover;
  object-position: left;
}
@media only screen and (max-width: 872px) {
  .item--homePageBlogPost {
    padding: 20px;
    flex-direction: column;
  }
  .item--homePageBlogPost .home-page-blog-post__row {
    flex-direction: column-reverse;
  }
  .item--homePageBlogPost .home-page-blog-post__title a {
    font-size: 30px;
  }
  .item--homePageBlogPost .home-page-blog-post .item--html {
    height: 100%;
    scroll-y: inherit;
  }
  .item--homePageBlogPost .home-page-blog-image {
    width: 100%;
  }
}
@media only screen and (max-width: 1100px) {
  .item--homePageBlogPost .home-page-blog {
    flex-direction: column;
  }
  .item--homePageBlogPost .home-page-blog-post__title {
    text-align: center;
  }
  .item--homePageBlogPost .home-page-blog-post__date-author {
    align-items: center;
    justify-content: center;
  }
  .item--homePageBlogPost .home-page-blog-history {
    flex-direction: column !important;
  }
}
@media only screen and (max-width: 1500px) {
  .item--homePageBlogPost {
    flex-wrap: wrap;
  }
  .item--homePageBlogPost .home-page-blog-post {
    flex: 47%;
  }
  .item--homePageBlogPost .home-page-blog-image {
    flex: 1 1 48%;
  }
  .item--homePageBlogPost .home-page-blog-history {
    flex: 1 1 auto;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .item--homePageBlogPost .home-page-blog-history__post {
    margin-bottom: 20px;
  }
}

/* END 5 pw,ts,ic Legacy Blog */

/* BEGIN 3 ts TeamSeams */

:root {
  --primary-color: #0085ca;
  --link-hover-color: #006aa6;
}

/* END 3 ts TeamSeams */

/* BEGIN 9 pw,ts,ic Testing */

@media (max-width: 400px) {
  .item--icon-nav-scroller {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 12px;
  }
}
@media (min-width: 961px) {
  .item--icon-nav-scroller .item--columns {
    justify-content: var(--icon-nav-scroller-justify-desktop, center);
  }
}
@media (max-width: 960px) {
  .item--icon-nav-scroller .item--columns {
    min-width: max-content;
    flex-wrap: nowrap;
  }
}
.item--icon-nav-scroller .item--html a {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: inherit;
  text-decoration: none;
}
.item--icon-nav-scroller .item--html a svg {
  height: 60px;
  width: auto;
  display: block;
  margin-bottom: 8px;
  transition: fill 0.3s ease;
}
.item--icon-nav-scroller .item--html a span {
  text-align: center;
  text-decoration: underline;
  font-size: 1em;
}
.item--icon-nav-scroller .item--html:hover a,
.item--icon-nav-scroller .item--html a:hover {
  color: var(--icon-nav-item-hover-color, var(--primary-color));
}
.item--big-landing-fonts h1,
.item--big-landing-fonts .item--h1 {
  font-size: clamp(48px, 7vw, 96px);
  line-height: 1.1;
  font-weight: 800;
}
.item--big-landing-fonts h2,
.item--big-landing-fonts .item--h2 {
  font-size: clamp(32px, 5vw, 64px);
  line-height: 1.2;
  font-weight: 700;
}
.item--big-landing-fonts h3,
.item--big-landing-fonts .item--h3 {
  font-size: clamp(20px, 3vw, 36px);
  line-height: 1.3;
  font-weight: 600;
}
.item--big-landing-fonts p,
.item--big-landing-fonts .item--p {
  font-size: clamp(16px, 1.5vw, 20px);
  line-height: 1.6;
}
.item--font-thin h1,
.item--font-thin .item--h1 {
  font-size: clamp(48px, 7vw, 96px);
  line-height: 1.1;
  font-weight: 800;
}
.item--font-thin h2,
.item--font-thin .item--h2 {
  font-size: clamp(32px, 5vw, 42px);
  line-height: 1.2;
  font-weight: 200;
}
.item--font-thin h3,
.item--font-thin .item--h3 {
  font-size: clamp(20px, 3vw, 28px);
  line-height: 1.3;
  font-weight: 200;
}
.item--font-thin p,
.item--font-thin .item--p {
  font-size: clamp(16px, 1.5vw, 20px);
  line-height: 1.6;
  font-weight: 200;
}
.item--font-thin h2 + h2,
.item--font-thin h2 + h3,
.item--font-thin h3 + h2,
.item--font-thin h3 + h3 {
  margin-top: -30px;
}
.item--form-demo .dyn-form__fields {
  display: grid;
  grid-template-columns: minmax(max-content, 200px) 1fr;
}
.item--form-demo .dyn-form__field {
  display: grid;
  gap: 8px;
  grid-column: 1/span 2;
  grid-template-columns: subgrid;
}
.item--form-demo .dyn-form__field-label {
  grid-column: 1;
}
.item--form-demo .dyn-form__field-description {
  order: 0;
  grid-column: 2;
}
.item--form-demo .dyn-form__input {
  grid-column: 2;
}
.item--displays-as-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 30px;
  padding: 10px;
}
.item--displays-as-cards > * {
  background-color: #ffffff !important;
  border-radius: 15px;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  aspect-ratio: 1/0.7;
  border: 1px solid #e0e0e0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.item--displays-as-cards > *:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.item--displays-as-cards > * img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}
.item--hover-reveal {
  position: relative;
}
.item--hover-reveal > .default-content,
.item--hover-reveal > .hover-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
  backface-visibility: hidden;
  overflow: auto;
}
.item--hover-reveal > .default-content {
  position: absolute;
  opacity: 1;
  visibility: visible;
  z-index: 2;
}
.item--hover-reveal > .hover-content {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 1;
}
.item--hover-reveal:hover > .default-content {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 1;
  transform: translateY(0);
}
.item--hover-reveal:hover > .hover-content {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 2;
}
.item--hover-section {
  position: relative;
  overflow: hidden;
}
.item--hover-default, .item--hover-reveal {
  transition: opacity 0.3s ease;
}
.item--hover-default {
  z-index: 2;
  opacity: 1;
  pointer-events: auto;
}
.item--hover-reveal {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1;
  opacity: 0;
  pointer-events: none;
}
.item--hover-section:hover .item--hover-default {
  opacity: 0;
  pointer-events: none;
}
.item--hover-section:hover .item--hover-reveal {
  opacity: 1;
  pointer-events: auto;
  z-index: 3;
}

/* END 9 pw,ts,ic Testing */