/* Shared success stories videos grid */

                  .dm-videos__heading {
                    margin: 28px 16px 20px;
                  }

                  .dm-videos {
                    display: grid;
                    grid-template-columns: repeat(3, minmax(0, 1fr));
                    gap: 28px;
                    width: 100%;
                    max-width: 1100px;
                    margin: 0 auto 40px;
                    padding: 8px 20px 24px;
                    box-sizing: border-box;
                    background: transparent;
                  }

                  .dm-videos__card {
                    background: #fff;
                    border-radius: 14px;
                    overflow: hidden;
                    box-shadow: 0 6px 18px rgba(20, 40, 60, 0.12);
                    display: flex;
                    flex-direction: column;
                    min-width: 0;
                  }

                  .dm-videos__media {
                    position: relative;
                    width: 100%;
                    aspect-ratio: 16 / 10;
                    background: #0f172a;
                    overflow: hidden;
                  }

                  .dm-videos__thumb {
                    display: block;
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                  }

                  .dm-videos__play {
                    position: absolute;
                    top: 50%;
                    left: 50%;
                    transform: translate(-50%, -50%);
                    width: 58px;
                    height: 58px;
                    border: none;
                    border-radius: 50%;
                    background: #ff0000;
                    cursor: pointer;
                    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.35);
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    padding: 0;
                    transition: transform 0.15s ease, background 0.15s ease;
                    z-index: 2;
                  }

                  .dm-videos__play:hover,
                  .dm-videos__play:focus {
                    background: #e60000;
                    transform: translate(-50%, -50%) scale(1.06);
                    outline: none;
                  }

                  .dm-videos__play-icon {
                    width: 0;
                    height: 0;
                    border-style: solid;
                    border-width: 9px 0 9px 16px;
                    border-color: transparent transparent transparent #fff;
                    margin-left: 3px;
                    display: block;
                  }

                  .dm-videos__title {
                    margin: 0;
                    padding: 14px 12px;
                    text-align: center;
                    font-size: 1.05rem;
                    font-weight: 700;
                    color: #1f2937;
                    background: #fff;
                    line-height: 1.4;
                  }

                  .dm-videos__player {
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                    display: block;
                    background: #000;
                  }

                  /* Override old conflicting video styles if any remain */
                  .video-container {
                    display: none !important;
                  }

                  @media (max-width: 900px) {
                    .dm-videos {
                      grid-template-columns: repeat(2, minmax(0, 1fr));
                      gap: 18px;
                      max-width: 720px;
                    }
                  }

                  @media (max-width: 560px) {
                    .dm-videos {
                      grid-template-columns: 1fr;
                      max-width: 380px;
                      gap: 16px;
                    }
                  }
                

.dm-videos__media iframe.dm-videos__player {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.dm-reviews__loc {
  font-weight: 500;
  color: #5a6b7a;
  font-size: 0.85em;
}
