/* StyleReels R167 — final homepage alignment and media consistency pass */

/* Four ordering essentials: identical cells, true optical centering. */
.homepage .trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: start;
  justify-items: stretch;
}

.homepage .trust-strip > div {
  display: flex;
  min-width: 0;
  width: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  text-align: center;
}

.homepage .trust-strip > div > svg {
  display: block;
  width: 28px;
  height: 28px;
  margin: 0 auto;
  flex: 0 0 28px;
}

.homepage .trust-strip > div > span {
  display: block;
  width: 100%;
  max-width: 150px;
  margin: 0 auto;
  text-align: center;
}

/* One visual language for every video play affordance. */
.sr-video-play {
  width: 68px;
  height: 68px;
  padding: 0;
  border: 2px solid rgba(255, 255, 255, .96);
  border-radius: 999px;
  background: rgba(11, 11, 11, .76);
  color: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .35);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.sr-video-play svg {
  width: 30px;
  height: 30px;
  margin-left: 3px;
}

.sr-video-play:hover { background: rgba(0, 230, 214, .88); color: #0b0b0b; }

@media (max-width: 640px) {
  .homepage .trust-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 16px;
    row-gap: 24px;
  }

  .sr-video-play { width: 60px; height: 60px; }
  .sr-video-play svg { width: 27px; height: 27px; }
}
