/* Shared marketing component styles. */

.mkt-card {
      background: var(--cw-surface);
      border: 1px solid var(--cw-border-subtle);
      border-radius: var(--cw-radius-card, 1.25rem);
      padding: 2.5rem 2rem;
      display: flex;
      flex-direction: column;
      height: 100%;
      box-shadow: var(--cw-shadow-card);
      transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    }
    .mkt-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--cw-shadow-card-hover);
      border-color: rgba(255, 255, 255, 0.18);
    }
    .mkt-card-featured {
      background: var(--cw-surface);
      border: 2px solid var(--cw-blue);
      border-radius: var(--cw-radius-card, 1.25rem);
      padding: 2.5rem 2rem;
      display: flex;
      flex-direction: column;
      height: 100%;
      position: relative;
      box-shadow: 0 8px 30px rgba(37, 99, 235, 0.25);
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }
    .mkt-card-featured:hover {
      transform: translateY(-4px);
      box-shadow: 0 16px 48px rgba(37, 99, 235, 0.35);
    }
    .mkt-card-muted {
      background: linear-gradient(180deg, var(--cw-surface-low) 0%, var(--cw-surface-lowest) 100%);
      border: 1px solid var(--cw-border-subtle);
      border-radius: var(--cw-radius-card, 1.25rem);
      padding: 2.5rem 2rem;
      display: flex;
      flex-direction: column;
      height: 100%;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }
    .mkt-card-muted:hover {
      transform: translateY(-4px);
      box-shadow: var(--cw-shadow-card-hover);
    }
    .mkt-card-flat {
      background: var(--cw-surface);
      border: 1px solid var(--cw-border-subtle);
      border-radius: var(--cw-radius-card, 1.25rem);
      padding: 2rem;
      box-shadow: var(--cw-shadow-card);
      transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    }
    .mkt-card-flat:hover {
      transform: translateY(-3px);
      box-shadow: var(--cw-shadow-card-hover);
      border-color: rgba(255, 255, 255, 0.18);
    }
    .mkt-check {
      flex-shrink: 0;
      width: 20px;
      height: 20px;
      border-radius: 50%;
      background: rgba(37, 99, 235, 0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-top: 1px;
    }
    .mkt-check svg {
      width: 12px;
      height: 12px;
      stroke: var(--cw-blue);
      fill: none;
      stroke-width: 2.5;
      stroke-linecap: round;
      stroke-linejoin: round;
    }
    .mkt-btn-primary {
      display: block;
      text-align: center;
      color: #ffffff;
      font-weight: 600;
      padding: 0.875rem 1.5rem;
      border-radius: 0.625rem;
      background: var(--cw-blue);
      box-shadow: var(--cw-shadow-cta);
      transition: background 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
      text-decoration: none;
    }
    .mkt-btn-primary:hover {
      background: var(--cw-blue-hover);
      box-shadow: 0 6px 20px rgba(37, 99, 235, 0.45);
      transform: translateY(-1px);
    }
    .mkt-btn-outline {
      display: block;
      text-align: center;
      color: var(--cw-blue);
      font-weight: 600;
      padding: 0.875rem 1.5rem;
      border-radius: 0.625rem;
      border: 2px solid var(--cw-blue);
      background: transparent;
      transition: all 0.15s ease;
      text-decoration: none;
    }
    .mkt-btn-outline:hover {
      background: var(--cw-blue);
      color: #ffffff;
      box-shadow: var(--cw-shadow-cta);
      transform: translateY(-1px);
    }
    .mkt-btn-navy {
      display: block;
      text-align: center;
      color: #ffffff;
      font-weight: 600;
      padding: 0.875rem 1.5rem;
      border-radius: 0.625rem;
      background: var(--cw-navy);
      transition: background 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
      text-decoration: none;
    }
    .mkt-btn-navy:hover {
      background: var(--cw-navy-dark);
      box-shadow: 0 6px 20px rgba(51, 59, 92, 0.35);
      transform: translateY(-1px);
    }
    .mkt-btn-white-outline {
      display: inline-block;
      color: #ffffff;
      font-weight: 600;
      padding: 0.875rem 2.5rem;
      border-radius: 0.625rem;
      border: 2px solid rgba(255, 255, 255, 0.4);
      background: transparent;
      transition: all 0.15s ease;
      text-decoration: none;
    }
    .mkt-btn-white-outline:hover {
      background: #ffffff;
      color: var(--cw-bg);
      border-color: #ffffff;
    }
    .mkt-btn-primary-lg {
      display: inline-block;
      color: #ffffff;
      font-weight: 600;
      padding: 1rem 2.5rem;
      border-radius: 0.625rem;
      font-size: 1.125rem;
      background: var(--cw-blue);
      box-shadow: 0 4px 14px rgba(37, 99, 235, 0.4);
      transition: background 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
      text-decoration: none;
    }
    .mkt-btn-primary-lg:hover {
      background: var(--cw-blue-hover);
      box-shadow: 0 8px 24px rgba(37, 99, 235, 0.5);
      transform: translateY(-1px);
    }
    /* Inactive CTA — keep label visible, mark as not yet available */
    .mkt-btn-coming-soon {
      display: inline-flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 0.2rem;
      opacity: 0.55;
      cursor: not-allowed;
      pointer-events: none;
      box-shadow: none !important;
      transform: none !important;
      user-select: none;
      text-decoration: none;
    }
    .mkt-btn-coming-soon:hover {
      background: inherit;
      color: inherit;
      border-color: inherit;
      box-shadow: none;
      transform: none;
    }
    .mkt-btn-outline.mkt-btn-coming-soon {
      display: flex;
      width: 100%;
    }
    .mkt-btn-outline.mkt-btn-coming-soon:hover {
      background: transparent;
      color: var(--cw-blue);
    }
    .mkt-btn-coming-soon-note {
      display: block;
      font-size: 0.7rem;
      font-weight: 500;
      letter-spacing: 0.02em;
      line-height: 1.2;
      opacity: 0.95;
    }
    .mkt-divider {
      width: 60px;
      height: 4px;
      border-radius: 2px;
      background: var(--cw-blue);
      margin: 0 auto 2rem;
    }
    .mkt-separator {
      height: 1px;
      background: var(--cw-border-subtle);
      margin-bottom: 1.5rem;
    }
    .mkt-number-badge {
      width: 3rem;
      height: 3rem;
      border-radius: 1rem;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #ffffff;
      font-weight: 700;
      font-size: 1.125rem;
      background: linear-gradient(135deg, var(--cw-blue) 0%, #1d4ed8 100%);
      box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
      margin-bottom: 1.5rem;
    }
    .mkt-badge {
      display: inline-block;
      color: #ffffff;
      font-size: 0.75rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      padding: 0.375rem 1rem;
      border-radius: 9999px;
      background: linear-gradient(135deg, var(--cw-blue) 0%, #1d4ed8 100%);
      margin-bottom: 1.25rem;
      align-self: flex-start;
    }
    .mkt-icon-box {
      width: 2.5rem;
      height: 2.5rem;
      border-radius: 0.875rem;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .mkt-icon-box svg {
      width: 1.25rem;
      height: 1.25rem;
      flex-shrink: 0;
      color: var(--cw-blue);
    }
    .mkt-icon-box-blue { background: rgba(37, 99, 235, 0.2); }
    .mkt-icon-box-red { background: rgba(239, 68, 68, 0.15); }
    .mkt-icon-box-green { background: rgba(34, 197, 94, 0.15); }

    /* Larger icon badge with rotated accent blob, for feature/value highlights */
    .mkt-icon-badge-lg {
      position: relative;
      width: 3.5rem;
      height: 3.5rem;
      border-radius: 1rem;
      display: flex;
      align-items: center;
      justify-content: center;
      background: var(--cw-blue);
      color: #ffffff;
      z-index: 1;
      margin-bottom: 1.25rem;
    }
    .mkt-icon-badge-lg::before {
      content: "";
      position: absolute;
      inset: 0;
      border-radius: 1rem;
      background: rgba(37, 99, 235, 0.18);
      transform: rotate(20deg);
      z-index: -1;
      transition: transform 0.25s ease;
    }
    .mkt-card:hover .mkt-icon-badge-lg::before,
    .mkt-card-flat:hover .mkt-icon-badge-lg::before {
      transform: rotate(45deg);
    }
    .mkt-icon-badge-lg svg { width: 1.75rem; height: 1.75rem; }

    .mkt-hero-gradient {
      position: relative;
      background: linear-gradient(135deg, var(--cw-navy) 0%, #1e3a8a 50%, var(--cw-blue) 100%);
      overflow: hidden;
    }
    .mkt-hero-gradient::before,
    .mkt-hero-gradient::after {
      content: "";
      position: absolute;
      border-radius: 50%;
      filter: blur(60px);
      pointer-events: none;
      z-index: 0;
    }
    .mkt-hero-gradient::before {
      width: 420px;
      height: 420px;
      top: -160px;
      right: -120px;
      background: rgba(96, 165, 250, 0.25);
    }
    .mkt-hero-gradient::after {
      width: 320px;
      height: 320px;
      bottom: -140px;
      left: -100px;
      background: rgba(37, 99, 235, 0.2);
    }
    .mkt-hero-gradient > * {
      position: relative;
      z-index: 1;
    }
    .mkt-section-gradient {
      background: linear-gradient(180deg, var(--cw-surface-low) 0%, var(--cw-bg) 100%);
    }
    .mkt-table td, .mkt-table th { padding-top: 0.875rem; padding-bottom: 0.875rem; }
    .mkt-highlight-pill {
      display: inline-block;
      border-radius: 1rem;
      padding: 1.25rem 2rem;
      background: linear-gradient(135deg, var(--cw-navy) 0%, #1e3a8a 100%);
      color: #ffffff;
    }
    .mkt-btn-outline-light {
      display: inline-block;
      color: var(--cw-heading);
      font-weight: 600;
      padding: 0.875rem 2.5rem;
      border-radius: 0.75rem;
      border: 2px solid var(--cw-heading);
      background: transparent;
      transition: all 0.15s ease;
      text-decoration: none;
    }

    .mkt-btn-outline-light:hover {
      background: var(--cw-heading);
      color: var(--cw-bg);
    }

    .mkt-comp-check {
      width: 1.25rem;
      height: 1.25rem;
      border-radius: 50%;
      background: rgba(34, 197, 94, 0.15);
      color: #4ade80;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 0.65rem;
      font-weight: 800;
      flex-shrink: 0;
    }

    .mkt-comp-cross {
      width: 1.25rem;
      height: 1.25rem;
      border-radius: 50%;
      background: rgba(239, 68, 68, 0.15);
      color: #f87171;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 0.7rem;
      font-weight: 800;
      flex-shrink: 0;
    }

    .mkt-img-placeholder {
      background: linear-gradient(135deg, var(--cw-surface) 0%, var(--cw-surface-low) 100%);
      border: 1px dashed rgba(255, 255, 255, 0.2);
      border-radius: 0.75rem;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--cw-text-faint);
      font-size: 0.8125rem;
      text-align: center;
      padding: 1rem;
    }

    /* Real screenshot in place of a placeholder: rounded frame, no dashed border */
    .mkt-img-frame {
      position: relative;
      border-radius: 0.75rem;
      overflow: hidden;
      border: 1px solid rgba(255, 255, 255, 0.14);
      box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35), 0 0 32px rgba(226, 232, 255, 0.12), 0 0 0 1px rgba(255, 255, 255, 0.05);
    }
    /* Padding-bottom aspect-ratio hack instead of the CSS aspect-ratio property:
       Safari has shown row-height/track-sizing mismatches when aspect-ratio boxes
       sit inside align-items:center grid rows next to variable-height siblings
       (rows misjudge height before the image finishes sizing, so later journey-row
       badges render lower than intended and appear to overlap the frame above). */
    .mkt-img-frame::before {
      content: "";
      display: block;
      padding-bottom: 75%;
    }
    .mkt-img-frame img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    /* 3D flip cards (front image + title, back detail copy) */
    .mkt-flip-card {
      perspective: 1600px;
      height: 100%;
      min-height: 360px;
    }
    .mkt-flip-card-inner {
      position: relative;
      width: 100%;
      height: 100%;
      min-height: 360px;
      transition: transform 0.6s cubic-bezier(0.4, 0.1, 0.2, 1);
      transform-style: preserve-3d;
      -webkit-transform-style: preserve-3d;
      cursor: pointer;
    }
    .mkt-flip-card:hover .mkt-flip-card-inner,
    .mkt-flip-card.is-flipped .mkt-flip-card-inner {
      transform: rotateY(180deg);
    }
    .mkt-flip-card:focus-visible .mkt-flip-card-inner {
      outline: 2px solid var(--cw-blue);
      outline-offset: 4px;
    }
    .mkt-flip-card-front,
    .mkt-flip-card-back {
      position: absolute;
      inset: 0;
      backface-visibility: hidden;
      -webkit-backface-visibility: hidden;
      -webkit-transform: rotateY(0deg);
      transform: rotateY(0deg);
      border-radius: var(--cw-radius-card, 1.25rem);
      border: 1px solid var(--cw-border-subtle);
      display: flex;
      flex-direction: column;
      box-shadow: var(--cw-shadow-card);
    }
    .mkt-flip-card-front {
      justify-content: flex-end;
      padding: 1.75rem;
      background-size: cover;
      background-position: center;
    }
    .mkt-flip-card-front::before {
      content: "";
      position: absolute;
      inset: 0;
      border-radius: inherit;
      background: linear-gradient(180deg, rgba(14, 14, 16, 0.05) 0%, rgba(14, 14, 16, 0.9) 100%);
      z-index: 0;
    }
    .mkt-flip-card-front > * {
      position: relative;
      z-index: 1;
    }
    .mkt-flip-card-front-bg-1 { background-color: var(--cw-navy); background-image: radial-gradient(circle at 30% 15%, rgba(37, 99, 235, 0.55) 0%, transparent 55%); }
    .mkt-flip-card-front-bg-2 { background-color: var(--cw-navy); background-image: radial-gradient(circle at 75% 25%, rgba(37, 99, 235, 0.55) 0%, transparent 55%); }
    .mkt-flip-card-front-bg-3 { background-color: var(--cw-navy); background-image: radial-gradient(circle at 50% 85%, rgba(37, 99, 235, 0.55) 0%, transparent 55%); }
    .mkt-flip-card-front-title {
      font-size: 1.375rem;
      font-weight: 800;
      color: #ffffff;
      line-height: 1.25;
    }
    .mkt-flip-card-front-subtitle {
      font-size: 0.875rem;
      color: rgba(255, 255, 255, 0.75);
      margin-top: 0.35rem;
    }
    .mkt-flip-card-hint {
      position: absolute;
      top: 1rem;
      right: 1rem;
      z-index: 1;
      width: 2rem;
      height: 2rem;
      border-radius: 9999px;
      background: rgba(255, 255, 255, 0.12);
      backdrop-filter: blur(4px);
      display: flex;
      align-items: center;
      justify-content: center;
      color: #ffffff;
    }
    .mkt-flip-card-hint svg { width: 1rem; height: 1rem; }
    .mkt-flip-card-back {
      -webkit-transform: rotateY(180deg);
      transform: rotateY(180deg);
      background: var(--cw-surface);
      padding: 2rem;
      justify-content: center;
    }

    /* Alternating journey rows with decorative background connector (HIW) */
    .mkt-journey {
      position: relative;
    }
    .mkt-journey-connector {
      position: absolute;
      inset: 0;
      z-index: 0;
      pointer-events: none;
    }
    .mkt-journey-rows {
      position: relative;
      z-index: 1;
      display: flex;
      flex-direction: column;
      gap: 4.5rem;
    }
    .mkt-journey-row {
      display: grid;
      grid-template-columns: 1fr;
      gap: 2rem;
      align-items: center;
    }
    @media (min-width: 1024px) {
      .mkt-journey-row {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
      }
    }
    .mkt-journey-hook {
      display: block;
      font-size: 0.9rem;
      color: var(--cw-text-faint);
      margin: 0.5rem 0 0.75rem;
    }
    .mkt-journey-link {
      display: inline-block;
      margin-top: 1rem;
      font-size: 0.875rem;
      font-weight: 600;
      color: var(--cw-blue);
      text-decoration: none;
    }
    .mkt-journey-link:hover {
      text-decoration: underline;
    }

    /* Expandable detail cards (Cluster 2 HIW) */
    .grid[data-detail-group] {
      align-items: start;
    }
    .mkt-detail-card {
      background: var(--cw-surface);
      border: 1px solid var(--cw-border-subtle);
      border-radius: 1rem;
      box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
      transition: box-shadow 0.2s ease, border-color 0.2s ease;
    }
    .mkt-detail-card:hover {
      border-color: rgba(255, 255, 255, 0.18);
      box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
    }
    .mkt-detail-card.is-open {
      border-color: rgba(37, 99, 235, 0.4);
      box-shadow: 0 8px 30px rgba(37, 99, 235, 0.15);
    }
    .mkt-detail-card-toggle {
      display: block;
      width: 100%;
      border: none;
      background: transparent;
      padding: 1.5rem;
      margin: 0;
      cursor: pointer;
      text-align: left;
      font: inherit;
      color: inherit;
    }
    .mkt-detail-card-toggle:focus-visible {
      outline: 2px solid var(--cw-blue);
      outline-offset: -2px;
      border-radius: 1rem;
    }
    .mkt-detail-card-header {
      display: flex;
      align-items: flex-start;
      gap: 1rem;
      width: 100%;
    }
    .mkt-detail-card-header-main,
    .mkt-detail-card-teaser {
      flex: 1;
      min-width: 0;
    }
    .mkt-detail-card-header-main {
      display: flex;
      flex-direction: column;
    }
    .mkt-detail-card-chevron {
      flex-shrink: 0;
      width: 1.25rem;
      height: 1.25rem;
      color: var(--cw-text-faint);
      margin-top: 0.125rem;
      transition: transform 0.2s ease, color 0.2s ease;
    }
    .mkt-detail-card-chevron svg {
      width: 100%;
      height: 100%;
    }
    .mkt-detail-card.is-open .mkt-detail-card-chevron {
      transform: rotate(180deg);
      color: var(--cw-blue);
    }
    .mkt-detail-card-title {
      display: block;
      font-size: 1.0625rem;
      font-weight: 700;
      color: var(--cw-heading);
      margin-bottom: 0.375rem;
      line-height: 1.35;
    }
    .mkt-detail-card-hook {
      display: block;
      font-size: 0.875rem;
      color: var(--cw-text-muted);
      line-height: 1.5;
    }
    .mkt-detail-card-panel {
      border-top: 1px solid var(--cw-border-subtle);
      padding: 0 1.5rem 1.5rem;
      background: var(--cw-surface-low);
      border-radius: 0 0 1rem 1rem;
    }
    .mkt-detail-card-body {
      font-size: 0.875rem;
      color: var(--cw-text-muted);
      line-height: 1.65;
      margin: 1rem 0 0;
    }
    .mkt-detail-card-link {
      display: inline-block;
      margin-top: 1rem;
      font-size: 0.875rem;
      font-weight: 600;
      color: var(--cw-blue);
      text-decoration: none;
    }
    .mkt-detail-card-link:hover {
      text-decoration: underline;
    }
    .mkt-detail-card-header-main .mkt-icon-box {
      margin-bottom: 0.75rem;
    }
    .mkt-detail-card-journey .mkt-number-badge {
      margin-bottom: 0;
      flex-shrink: 0;
    }
    .mkt-detail-card-journey .mkt-detail-card-hook {
      margin-top: 0.125rem;
    }

    /* Light card variant for use on dark gradient sections (per-section override) */
    .mkt-card-flat-light {
      background: #e5e5e8;
      border-color: rgba(0, 0, 0, 0.08);
    }
    .mkt-card-flat-light:hover {
      border-color: rgba(0, 0, 0, 0.15);
    }

    /* Demo / contact form inputs — light field on dark card, dark typed text */
    .mkt-form-input {
      width: 100%;
      padding: 0.75rem 1rem;
      border-radius: 0.5rem;
      border: 1px solid rgba(0, 0, 0, 0.12);
      background-color: #ffffff;
      color: #1f2937;
      font-size: 1rem;
      line-height: 1.5;
      outline: none;
      transition: border-color 0.15s ease, box-shadow 0.15s ease;
    }
    .mkt-form-input::placeholder {
      color: #9ca3af;
    }
    .mkt-form-input:focus {
      border-color: var(--cw-blue);
      box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.25);
    }
    .mkt-form-honeypot {
      position: absolute;
      left: -9999px;
      width: 1px;
      height: 1px;
      opacity: 0;
      pointer-events: none;
    }

    /* Monitor/browser-frame mockup for product screenshot placeholders */
    .mkt-monitor-frame {
      background: var(--cw-surface-lowest);
      border-radius: 0.75rem;
      border: 1px solid var(--cw-border-subtle);
      box-shadow: var(--cw-shadow-card-hover);
      overflow: hidden;
    }
    .mkt-monitor-frame-bar {
      display: flex;
      align-items: center;
      gap: 0.375rem;
      padding: 0.65rem 0.85rem;
      background: var(--cw-surface-low);
      border-bottom: 1px solid var(--cw-border-subtle);
    }
    .mkt-monitor-frame-dot {
      width: 0.55rem;
      height: 0.55rem;
      border-radius: 9999px;
      background: rgba(255, 255, 255, 0.15);
    }
    .mkt-monitor-frame-screen {
      background: linear-gradient(135deg, var(--cw-surface) 0%, var(--cw-surface-low) 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--cw-text-faint);
      font-size: 0.8125rem;
      text-align: center;
      padding: 2rem 1.5rem;
      min-height: 220px;
    }

    /* Large floated check icon so body text wraps around it (pain-point cards) */
    .mkt-check-lg {
      float: left;
      width: 2.75rem;
      height: 2.75rem;
      border-radius: 9999px;
      background: rgba(37, 99, 235, 0.15);
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 0.85rem 0.5rem 0;
    }
    .mkt-check-lg svg {
      width: 1.375rem;
      height: 1.375rem;
      stroke: var(--cw-blue);
      fill: none;
      stroke-width: 2.5;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    /* Glassmorphic stat card (proof-strip style) */
    .mkt-stat-card-glass {
      background: rgba(255, 255, 255, 0.06);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border: 1px solid rgba(255, 255, 255, 0.14);
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    }
    .mkt-stat-card-glass:hover {
      background: rgba(255, 255, 255, 0.09);
      border-color: rgba(255, 255, 255, 0.22);
    }

    /* Team member avatar placeholder (circular headshot slot) */
    .mkt-avatar-placeholder {
      width: 4.5rem;
      height: 4.5rem;
      border-radius: 9999px;
      background: linear-gradient(135deg, var(--cw-navy) 0%, var(--cw-surface-high) 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--cw-text-faint);
      font-weight: 700;
      font-size: 1.25rem;
      flex-shrink: 0;
      border: 1px solid var(--cw-border-subtle);
      overflow: hidden;
    }
    .mkt-avatar-placeholder img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
