.digital-video {
    position: relative !important;
    z-index: 1 !important;
}

.tab-gif {
  width: 30px;
  height: 30px;
  margin-right: 8px;
  display: none; /* hide by default */
  vertical-align: middle;
}

/* show GIF ONLY on active tab */
.digital-tabs__tab--active .tab-gif {
  display: inline-block;
}
.digital-tabs {
      max-width: 1200px;
      margin: 0 auto;
    }

    /* TAB HEADERS */
    .digital-tabs__list {
      display: flex;
  flex-wrap: nowrap;   /* <- NEW: tabs stay on one row */
      border-bottom: 1px solid rgba(255, 255, 255, 0.12);
      gap: 0.75rem;
    }

    .digital-tabs__tab {
        flex: 1 1 0;         /* <- NEW: equal-width tabs */
  text-align: center;  /* <- NEW: center tab labels */
  overflow: hidden;
  text-overflow: ellipsis;
      position: relative;
      border: none;
      background: transparent;
      color: rgba(255, 255, 255, 0.7);
      padding: 0.9rem 1.5rem;
      cursor: pointer;
      font-size: 1.4rem;
      letter-spacing: 0.01em;
      white-space: nowrap;
      transition: color 0.2s ease, background 0.2s ease;
    }

    .digital-tabs__tab--active {
      background: rgba(0, 214, 217, 0.15);
      color: #ffffff;
    }

    .digital-tabs__tab--active::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      bottom: -1px;
      height: 3px;
      background: #00d6d9;
    }

    /* PANELS */
    .digital-tabs__panel {
      padding-top: 2rem;
    }

    .digital-tabs__panel--hidden {
      display: none;
    }

    /* TWO-COLUMN LAYOUT */
    .digital-tabs__content {
      display: flex;
      gap: 2.5rem;
      align-items: flex-start;
    }

    .digital-tabs__text {
      flex: 1 1 50%;
      font-size: 1.4rem;
      line-height: 1.4;
      color:white;
    }

    .digital-tabs__text h2 {
      font-size: 1.4rem;
      margin-top: 0;
      margin-bottom: 1rem;
      color:white;
    }

    .digital-tabs__text p {
      margin-top: 0;
      margin-bottom: 1rem;
      color: rgba(255, 255, 255, 0.75) !important;
      flex: 1 1 50%;
}

.digital-tabs__media {
  flex: 1 1 66.66%; /* 2/3 width */
}

    /* VIDEO – NO ROUNDED CORNERS */
    .digital-tabs__video {
      position: relative;
      width: 100%;
      overflow: hidden;
      background: radial-gradient(circle at 20% 20%, #00d6d9, #041026);
    }

    .digital-tabs__video iframe {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      border: 0;
    }

    /* IMAGE – NO ROUNDED CORNERS */
    .digital-tabs__image {
      width: 100%;
      height: auto;
      display: block;
    }

    /* RESPONSIVE */
    @media (max-width: 900px) {
      .digital-tabs__content {
        flex-direction: column;
      }

      .digital-tabs__media {
        order: -1;
      }
    }

    @media (max-width: 600px) {
      .digital-tabs {
        padding-inline: 1rem;
      }

      .digital-tabs__text h2 {
        font-size: 1.2rem;
      }

      .digital-tabs__tab {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
      }
    