/* Custom Noise Filter Class */
.bg-noise {
  position: relative;
}
.bg-noise::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 50;
  opacity: 0.08;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* Typography Overrides */
.font-stretch-expanded {
  font-stretch: expanded;
}

/* Hole punch */
.hole-punch {
  width: 36px;
  height: 36px;
  top: 50%;
  right: 40px;
  transform: translateY(-50%);
}
.hole-punch-inner {
  width: 24px;
  height: 24px;
}

@media (min-width: 768px) {
  .hole-punch {
    width: min(48px, 8vw);
    height: min(48px, 8vw);
    top: min(36px, 6vw);
    right: min(36px, 6vw);
    transform: none;
  }
  .hole-punch-inner {
    width: min(32px, 5.5vw);
    height: min(32px, 5.5vw);
  }
}