/** Shopify CDN: Minification failed

Line 715:146 Unexpected "{"

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:comparison-table (INDEX:14) */
.comparison-table {
    width: 100%;
    color: inherit;
  }
  .ct__inner {
    max-width: var(--page-width, 1000px);
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .ct__banner {
    background: var(--ct-banner-bg);
    color: var(--ct-banner-text);
    padding: 1rem 2rem;
    border-radius: var(--media-radius, 8px);
    text-align: center;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    width: 100%;
    max-width: 900px;
  }
  .ct__banner p {
    margin: 0;
  }

  .ct__heading {
    text-align: center;
    margin: 0 0 1rem;
    font-weight: 600;
  }

  .ct__subheading {
    text-align: center;
    margin: 0 auto 3rem;
    font-size: 1.5rem;
    max-width: 700px;
    opacity: 0.8;
  }
  .ct__subheading p {
    margin: 0;
  }

  .ct__table-wrapper {
    width: 100%;
    background: rgb(var(--color-background));
    border: 1px solid var(--ct-table-border);
    border-radius: var(--media-radius, 8px);
    overflow: hidden;
  }

  .ct__table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
  }

  .ct__thead {
    background: var(--ct-table-header-bg);
  }
  
  .ct__th {
    padding: 1.25rem 1.5rem;
    font-weight: 600;
    font-size: 1.4rem;
    color: var(--ct-accent);
  }
  .ct__th--right {
    color: rgba(var(--color-foreground), 0.7);
  }

  .ct__tbody .ct__tr:nth-child(even) {
    background: rgba(var(--color-foreground), 0.02);
  }
  
  .ct__td {
    padding: 1.25rem 1.5rem;
    border-top: 1px solid var(--ct-table-border);
    font-size: 1.2rem;
    line-height: 1.5;
  }
  .ct__td strong {
    font-weight: 700;
  }

  .ct__button-container {
    margin-top: 3rem;
    text-align: center;
  }

  @media screen and (max-width: 749px) {
    .ct__th, .ct__td {
      padding: 1rem;
      font-size: 0.95rem;
    }
  }
/* END_SECTION:comparison-table */

/* START_SECTION:product-feature-card (INDEX:56) */
.product-feature-card {
    width: 100%;
    color: inherit;
    overflow: hidden;
  }
  .pfc__inner {
    max-width: var(--page-width, 1200px);
    margin: 0 auto;
    padding: 0 1.5rem;
  }

  .pfc__header {
    text-align: center;
    margin-bottom: 3rem;
  }
  .pfc__eyebrow {
    text-transform: uppercase;
    margin: 0 0 0.5rem;
    opacity: 0.8;
  }
  .pfc__title {
    margin: 0;
  }

  .pfc__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: center;
  }
  @media (min-width: 750px) {
    .pfc__grid {
      grid-template-columns: 1fr 1fr;
      gap: 3.5rem;
    }
    .pfc__grid--reverse .pfc__media {
      order: 2;
    }
    .pfc__grid--reverse .pfc__content {
      order: 1;
    }
  }

  /* ----- Media Sizing ----- */
  .pfc__media { 
    width: 100%;
    position: relative;
  }
  
  /* Quick Add Floating Pill */
  .pfc__quick-add-form {
    position: absolute;
    bottom: 1.25rem;
    right: 1.25rem;
    z-index: 2;
    margin: 0;
  }
  .pfc__quick-add {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.4rem 0.85rem;
    background: rgb(var(--color-background));
    color: rgb(var(--color-foreground));
    border: 1px solid rgba(var(--color-foreground), 0.12);
    border-radius: 999px;
    font-size: 1.2rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  }
  .pfc__quick-add:hover:not(:disabled) {
    background: rgb(var(--color-foreground));
    color: rgb(var(--color-background));
    border-color: rgb(var(--color-foreground));
  }
  .pfc__quick-add.is-added {
    background: #16a34a;
    border-color: #16a34a;
    color: #ffffff;
  }
  .pfc__quick-add:disabled { cursor: default; }
  .pfc__quick-add-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  
  /* Width Modifiers */
  .pfc__media--w-small .pfc__image,
  .pfc__media--w-small .pfc__placeholder { width: 60%; margin: 0 auto; }
  
  .pfc__media--w-medium .pfc__image,
  .pfc__media--w-medium .pfc__placeholder { width: 80%; margin: 0 auto; }
  
  .pfc__media--w-large .pfc__image,
  .pfc__media--w-large .pfc__placeholder { width: 100%; margin: 0 auto; }

  .pfc__image {
    border-radius: var(--media-radius, 16px);
    display: block;
    object-fit: cover;
  }
  
  .pfc__placeholder {
    background: rgba(var(--color-foreground), 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--media-radius, 16px);
  }
  .pfc__placeholder svg {
    width: 50%;
    height: auto;
    fill: rgba(var(--color-foreground), 0.5);
  }

  /* Height Modifiers */
  .pfc__media--h-adapt .pfc__image {
    height: auto;
  }
  .pfc__media--h-adapt .pfc__placeholder {
    aspect-ratio: 4 / 3;
  }
  .pfc__media--h-small .pfc__image,
  .pfc__media--h-small .pfc__placeholder {
    aspect-ratio: 1 / 1;
  }
  .pfc__media--h-medium .pfc__image,
  .pfc__media--h-medium .pfc__placeholder {
    aspect-ratio: 4 / 3;
  }
  .pfc__media--h-large .pfc__image,
  .pfc__media--h-large .pfc__placeholder {
    aspect-ratio: 16 / 10;
  }

  /* ----- Content ----- */
  .pfc__content > * + * { margin-top: 1.5rem; }

  .pfc__badge {
    display: inline-block;
    background: rgba(var(--color-foreground), 0.1);
    text-transform: uppercase;
    padding: 0.5rem 1rem;
    border-radius: calc(var(--media-radius, 6px) / 2);
  }

  .pfc__subtitle {
    margin: 0;
  }
  .pfc__meta {
    opacity: 0.7;
    margin: 0;
  }

  .pfc__features-heading {
    margin: 1.5rem 0 0.5rem;
    text-transform: uppercase;
  }

  .pfc__features-desc {
    margin-bottom: 1rem;
    opacity: 0.9;
    line-height: 1.6;
  }

  .pfc__features-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .pfc__feature-item {
    position: relative;
    padding-left: 1.25rem;
    margin-bottom: 0.75rem;
    line-height: 1.5;
  }
  .pfc__feature-item::before {
    content: "•";
    position: absolute;
    left: 0;
    opacity: 0.8;
  }

  /* ----- Variants ----- */
  .pfc__variants {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  .pfc__variant-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.4rem 0.8rem;
    background: rgba(var(--color-foreground), 0.06);
    border-radius: 2rem;
    text-decoration: none;
    color: inherit;
    font-size: 0.9em;
    transition: background 0.2s ease, transform 0.15s ease;
  }
  .pfc__variant-link:hover {
    background: rgba(var(--color-foreground), 0.1);
    transform: translateY(-1px);
  }
  .pfc__variant-sku {
    font-weight: 500;
    opacity: 0.9;
  }
  .pfc__variant-sep {
    opacity: 0.4;
  }
  .pfc__variant-title {
    opacity: 0.85;
  }

  /* ----- Buttons ----- */
  .pfc__buttons {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--pfc-button-gap, 12px);
    margin-top: 1.75rem;
  }
  .pfc__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1.6rem;
    border-radius: var(--media-radius, 8px);
    line-height: 1.2;
    text-decoration: none;
    text-align: center;
    border: 2px solid transparent;
    cursor: pointer;
    transition: transform 0.15s ease, opacity 0.2s ease, background 0.2s ease;
  }
  .pfc__button:hover {
    transform: translateY(-1px);
    opacity: 0.92;
  }
  .pfc__button:active {
    transform: translateY(0);
  }
  .pfc__button--primary {
    background: rgb(var(--color-button, var(--color-foreground)));
    color: rgb(var(--color-button-text, var(--color-background)));
    border-color: rgb(var(--color-button, var(--color-foreground)));
  }
  .pfc__button--secondary {
    background: transparent;
    color: inherit;
    border-color: currentColor;
  }
  .pfc__button--text {
    background: transparent;
    border-color: transparent;
    padding: 0.5rem 0.25rem;
    text-decoration: underline;
    text-underline-offset: 4px;
  }
  .pfc__button--full {
    width: 100%;
  }

  /* ----- Animations ----- */
  .pfc--has-animation {
    opacity: 0;
  }
  .pfc--has-animation.is-visible.pfc__animate--fade-in {
    animation: pfcFadeIn 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  }
  .pfc--has-animation.is-visible.pfc__animate--slide-up {
    animation: pfcSlideUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  }

  @keyframes pfcFadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
  }
  @keyframes pfcSlideUp {
    0% { opacity: 0; transform: translateY(40px); }
    100% { opacity: 1; transform: translateY(0); }
  }
/* END_SECTION:product-feature-card */

/* START_SECTION:product-feature-grid (INDEX:57) */
.product-feature-grid {
    width: 100%;
    color: inherit;
  }
  .pfg__inner {
    max-width: var(--page-width, 1200px);
    margin: 0 auto;
    padding: 0 1.5rem;
  }

  /* ---------- Breadcrumbs ---------- */
  .pfg__breadcrumbs {
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
    opacity: 0.7;
  }
  .pfg__breadcrumbs a {
    color: inherit;
    text-decoration: none;
  }
  .pfg__breadcrumbs a:hover { text-decoration: underline; }
  .pfg__crumb-sep { margin: 0 0.5rem; opacity: 0.5; }

  /* ---------- Banner ---------- */
  .pfg__banner {
    text-align: center;
    background: rgba(var(--color-foreground), 0.04);
    border-radius: var(--media-radius, 12px);
    padding: 3rem 1.5rem;
    margin-bottom: 2.5rem;
  }
  @media (min-width: 750px) {
    .pfg__banner { padding: 4.5rem 2rem; }
  }
  .pfg__eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0 0 0.5rem;
    color: rgba(var(--color-foreground), 0.7);
    font-weight: 600;
  }
  .pfg__title {
    margin: 0;
    font-weight: 700;
    font-size: clamp(1.75rem, 1.2rem + 2.5vw, 3rem);
    line-height: 1.15;
  }
  .pfg__subtitle {
    margin: 1rem auto 0;
    max-width: 36rem;
    opacity: 0.75;
    line-height: 1.5;
  }

  /* ---------- Filter Bar ---------- */
  .pfg__filter-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
  }
  .pfg__pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  .pfg__pill {
    appearance: none;
    border: 1px solid transparent;
    background: transparent;
    color: rgba(var(--color-foreground), 0.6);
    padding: 0.5rem 1.1rem;
    border-radius: 999px;
    font-weight: 500;
    font-size: 0.95rem;
    cursor: pointer;
    transition: color 0.2s ease, background-color 0.2s ease;
    font-family: inherit;
  }
  .pfg__pill:hover {
    color: rgb(var(--color-foreground));
    background: rgba(var(--color-foreground), 0.05);
  }
  .pfg__pill.is-active {
    color: rgb(var(--color-foreground));
    background: rgba(var(--color-foreground), 0.08);
    font-weight: 600;
  }

  .pfg__sort-select {
    appearance: none;
    background: transparent;
    border: 1px solid rgba(var(--color-foreground), 0.15);
    color: inherit;
    padding: 0.45rem 2rem 0.45rem 0.85rem;
    border-radius: 6px;
    font-family: inherit;
    font-size: 0.9rem;
    cursor: pointer;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'><path d='M2 4l4 4 4-4' fill='none' stroke='currentColor' stroke-width='1.5'/></svg>");
    background-repeat: no-repeat;
    background-position: right 0.6rem center;
    background-size: 0.7rem;
  }

  /* ---------- Grid ---------- */
  .pfg__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.75rem;
    align-items: start;
  }
  @media (min-width: 750px) {
    .pfg__grid--1-col { grid-template-columns: 1fr; }
    .pfg__grid--2-col { grid-template-columns: repeat(2, 1fr); }
    .pfg__grid--3-col { grid-template-columns: repeat(3, 1fr); }
  }

  /* ---------- Card ---------- */
  .pfg__card {
    background: rgb(var(--color-background));
    color: rgb(var(--color-foreground));
    border-radius: var(--media-radius, 12px);
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.25s ease;
  }
  .pfg__card[hidden] { display: none; }
  .pfg__card:hover { transform: translateY(-2px); }

  /* ---------- Card Media ---------- */
  .pfg__card-media {
    position: relative;
    background: rgba(var(--color-foreground), 0.04);
    border-radius: var(--media-radius, 12px);
    overflow: hidden;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .pfg__card-media--w-small  { padding: 3rem; }
  .pfg__card-media--w-medium { padding: 1.5rem; }
  .pfg__card-media--w-large  { padding: 1rem; }

  .pfg__image,
  .pfg__placeholder {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
  }

  .pfg__card-media--h-adapt .pfg__image { object-fit: contain; }
  .pfg__card-media--h-adapt .pfg__placeholder { aspect-ratio: 4 / 3; }
  .pfg__card-media--h-small .pfg__image,
  .pfg__card-media--h-small .pfg__placeholder { aspect-ratio: 1 / 1; }
  .pfg__card-media--h-medium .pfg__image,
  .pfg__card-media--h-medium .pfg__placeholder { aspect-ratio: 4 / 3; }
  .pfg__card-media--h-large .pfg__image,
  .pfg__card-media--h-large .pfg__placeholder { aspect-ratio: 16 / 9; }

  .pfg__placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .pfg__placeholder svg {
    width: 30%;
    height: auto;
    fill: rgba(var(--color-foreground), 0.3);
  }

  /* ---------- Quick Add pill on image ---------- */
  .pfg__quick-add-form {
position: absolute;
  bottom: 0.85rem;
  right: 0.85rem;
  z-index: 2;
  margin: 0;
  }
  .pfg__quick-add {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.4rem 0.85rem;
    background: rgb(var(--color-background));
    color: rgb(var(--color-foreground));
    border: 1px solid rgba(var(--color-foreground), 0.12);
    border-radius: 999px;
    font-size: 1.2rem;
    font-weight: 500;
    font-family: inherit;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
  }
  .pfg__quick-add:hover:not(:disabled) {
    background: rgb(var(--color-foreground));
    color: rgb(var(--color-background));
    border-color: rgb(var(--color-foreground));
  }
  .pfg__quick-add.is-added {
    background: #16a34a;
    border-color: #16a34a;
    color: #ffffff;
  }
  .pfg__quick-add:disabled { cursor: default; }
  .pfg__quick-add-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  /* ---------- Card Content ---------- */
  .pfg__card-content {
    padding: 1rem 0.25rem 0.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
  }

  .pfg__card-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
  }
  .pfg__card-titles { min-width: 0; }
  .pfg__card-title {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.3;
  }
  .pfg__card-link { text-decoration: none; color: inherit; }
  .pfg__card-link:hover { text-decoration: underline; }
  .pfg__card-subtitle {
    margin: 0.25rem 0 0;
    font-size: 0.85rem;
    opacity: 0.6;
  }
  .pfg__card-price {
    text-align: right;
    font-size: 16px;
    font-weight: 500;
    white-space: nowrap;
    flex-shrink: 0;
  }
  .pfg__price-compare {
    text-decoration: line-through;
    opacity: 0.5;
    margin-right: 0.4rem;
    font-size: 0.85em;
  }

  /* ---------- Badges / pre-order ---------- */
  .pfg__badges {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    margin: 1rem 0 0.25rem;
  }
  .pfg__preorder-indicator {
    display: inline-flex;
    align-items: center;
    background-color: #F39200;
    color: #ffffff;
    padding: 0.25rem 10px;
    border-radius: 0;
    font-size: 0.75em;
    letter-spacing: 0.02em;
  }
  .pfg__badge {
    display: inline-block;
    background: rgba(var(--color-foreground), 0.08);
    text-transform: uppercase;
    padding: 0.4rem 0.8rem;
    border-radius: calc(var(--media-radius, 6px) / 2);
    font-weight: 600;
  }

/* ---------- Description / features ---------- */
  .pfg__card-desc {
    margin: 1rem 0 0;
    line-height: 1.6; /* Matched to your card file */
    opacity: 0.9; /* Matched to your card file */
    font-size: 1.3rem; /* Inherits your theme's standard body text size */
    padding-bottom: 1rem;
  }
  .pfg__card-desc p { margin: 0 0 0.75rem; }
  .pfg__card-desc p:last-child { margin-bottom: 0; }

  .pfg__features-heading {
    margin: 1.5rem 0 0.5rem; /* Matched to your card file */
    text-transform: uppercase;
  }

  .pfg__features-list {
    margin-bottom: 0;
    font-size: 1.3rem; /* Inherits your theme's standard body text size */
  }

  /* This forces the text size to behave perfectly even if H1-H6 is accidentally selected in the Theme Editor */
  .pfg__features-list p, .pfg__features-list h1, .pfg__features-list h2, .pfg__features-list h3, .pfg__features-list h4, .pfg__features-list h5,  {
    font-size: 1em !important;
    font-weight: normal !important;
    margin: 0 0 0.5rem;
    line-height: 1.2; /* Matched to your card file */
  }

  .pfg__features-list h6 {
    font-size: 1em !important;
    font-weight: normal !important;
    margin: none;
    line-height: 1.2; /* Matched to your card file */
  }

  .pfg__features-list ul { padding-left: 1.25rem; margin: 0; }
  .pfg__features-list li { margin-bottom: 0.75rem; line-height: 1.5; }

  .pfg__variants {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0; /* Matched to your card file */
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .pfg__variant-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    text-decoration: none;
    color: inherit;
    font-size: 0.9em; /* Matched to your card file */
  }
  .pfg__variant-link:hover .pfg__variant-title { text-decoration: underline; }
  .pfg__variant-sku { font-weight: 500; opacity: 0.9; } /* Matched to your card file */
  .pfg__variant-sep { opacity: 0.4; }
  .pfg__variant-title { opacity: 0.85; }

  /* ---------- Button ---------- */
  .pfg__card-action-bottom {
    margin-top: auto;
    padding-top: 1.25rem;
    display: flex;
  }
  .pfg__btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 0.75rem 1.5rem;
    background-color: var(--pfg-sku-color);
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.9em;
    border-radius: var(--media-radius, 4px);
    transition: opacity 0.2s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
    font-family: inherit;
  }
  .pfg__btn--full-width { width: 100%; }
  .pfg__btn:hover {
    opacity: 0.85;
    transform: translateY(-1px);
  }

  /* ---------- Empty ---------- */
  .pfg__empty {
    text-align: center;
    opacity: 0.6;
    padding: 3rem 1rem;
    margin: 0;
  }

  .visually-hidden {
    position: absolute !important;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0,0,0,0);
    white-space: nowrap; border: 0;
  }
/* END_SECTION:product-feature-grid */

/* START_SECTION:promotional-banner (INDEX:59) */
.promo-banner {
    width: 100%;
    overflow: hidden;
  }
  .pb__inner {
    max-width: var(--page-width, 1200px);
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    flex-direction: column;
  }

  /* Layout Ordering */
  .pb__layout-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
  .pb__layout--reverse {
    flex-direction: column-reverse;
  }

  /* Content */
  .pb__content {
    width: 100%;
  }
  .pb__title {
    margin: 0 0 1rem;
    color: inherit;
  }
  .pb__desc {
    opacity: 0.9;
    line-height: 1.6;
    max-width: 900px; /* Keeps text readable on wide screens */
  }

  /* Media & Sizing */
  .pb__media { 
    width: 100%; 
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 1rem 0;
  }
  
  /* Width Modifiers */
  .pb__media--w-small { padding: 0 15%; }
  .pb__media--w-medium { padding: 0 7.5%; }
  .pb__media--w-large { padding: 0; }

  @media screen and (max-width: 749px) {
    .pb__media--w-small,
    .pb__media--w-medium { padding: 0 5%; }
  }

  .pb__image,
  .pb__placeholder {
    width: 100%;
    border-radius: var(--media-radius, 12px);
    display: block;
    object-fit: cover;
    background: rgba(var(--color-foreground), 0.08); /* Adapts to color scheme */
  }

  /* Height Modifiers */
  .pb__media--h-adapt .pb__image {
    height: auto;
    object-fit: contain;
  }
  .pb__media--h-adapt .pb__placeholder {
    aspect-ratio: 21 / 9;
  }
  .pb__media--h-small .pb__image,
  .pb__media--h-small .pb__placeholder {
    aspect-ratio: 16 / 9; /* Classic landscape */
  }
  .pb__media--h-medium .pb__image,
  .pb__media--h-medium .pb__placeholder {
    aspect-ratio: 21 / 9; /* Cinematic wide */
  }
  .pb__media--h-large .pb__image,
  .pb__media--h-large .pb__placeholder {
    aspect-ratio: 3 / 1; /* Ultra wide banner */
  }

  .pb__placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .pb__placeholder svg {
    width: 20%;
    height: auto;
    fill: currentColor;
    opacity: 0.5;
  }

  /* Footer */
  .pb__footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(var(--color-foreground), 0.2); /* Adapts to color scheme */
    text-align: center;
  }
  .pb__footer p {
    margin: 0;
  }
  .pb__footer a {
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 4px;
  }
  .pb__footer a:hover {
    opacity: 0.8;
  }

  /* Animations */
  .pb--has-animation {
    opacity: 0;
  }
  .pb--has-animation.is-visible.pb__animate--fade-in {
    animation: pbFadeIn 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  }
  .pb--has-animation.is-visible.pb__animate--slide-up {
    animation: pbSlideUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  }

  @keyframes pbFadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
  }
  @keyframes pbSlideUp {
    0% { opacity: 0; transform: translateY(40px); }
    100% { opacity: 1; transform: translateY(0); }
  }
/* END_SECTION:promotional-banner */