<style>
  .featured-case {
    margin: 48px auto 64px;
    max-width: 1200px;
    padding: 0 48px;
  }
  .featured-case-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    background: #F6FBB1;
    border-radius: 8px;
    padding: 50px;
    position: relative;
    overflow: visible !important;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
  }
  .featured-case-inner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 50%, rgba(111,190,176,0.15) 0%, transparent 60%);
    pointer-events: none;
    border-radius: 8px;
  }
  .featured-video-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    background: #F6FBB1;
    min-width: 0;
  }
  .featured-video-wrapper .hs-video-widget {
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
  }
  .featured-video-wrapper video {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
  }
  .featured-video-thumb {
    position: relative;
    width: 100%;
    height: 100%;
  }
  .featured-video-thumb iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 12px;
  }
  .featured-case-text {
    color: #043A31;
    min-width: 0;
    overflow: visible;
    box-sizing: border-box;
  }
  /* ── CHIP ── */
  .featured-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    color: #181B1A;
    font-family: "GT Planar", "Helvetica Neue", Arial, sans-serif;
    font-size: 11px;
    font-weight: 400;
    padding: 5px 12px;
    border-radius: 100px;
    border: 1.5px solid #181B1A;
    margin-bottom: 16px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }
  .featured-case-text h2 {
    font-family: "GT Planar", "Helvetica Neue", Arial, sans-serif;
    font-size: 40px;
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.3px;
    margin-bottom: 16px;
    color: #043A31;
    word-break: break-word;
    overflow-wrap: break-word;
  }
  .featured-desc,
  .featured-desc p {
    font-size: 16px;
    color: #043A31;
    line-height: 1.7;
    font-weight: 300;
    margin-bottom: 28px;
    overflow-wrap: break-word;
    word-break: break-word;
    white-space: normal;
  }
  .btn-featured {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #0B5A4C;
    color: white;
    font-family: "GT Planar", "Helvetica Neue", Arial, sans-serif;
    font-size: 16px;
    font-weight: 400;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.2s;
  }
  .btn-featured:hover {
    background: #033028;
    color: white;
    text-decoration: none;
  }
  .btn-arrow {
    display: flex;
    align-items: center;
    transition: transform 0.25s ease;
  }
  .btn-featured:hover .btn-arrow {
    transform: translateX(5px);
  }
  @media (max-width: 991px) {
    .featured-case-inner {
      grid-template-columns: 1fr;
      padding: 32px;
    }
  }
  @media (max-width: 767px) {
    .featured-case {
      margin: 32px 0 48px;
      padding: 0 24px;
    }
  }
</style>