.dsvg-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.dsvg-card {
  position: relative;
  cursor: pointer;
}

.dsvg-card img {
  width: 100%;
  border-radius: 20px;
}

.dsvg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  border-radius: 20px;
  padding: 20px;
}

.dsvg-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  background: rgba(255,255,255,0.3);
  width: 40px;
    height: 40px;
  border-radius: 50%;
  display:flex;
  align-items:center;
  justify-content:center;
	backdrop-filter: blur(6px);
    background: rgba(255, 252, 236, 0.12);
    border: 1px solid rgba(255, 252, 236, 0.35);
}
.dsvg-play svg{
	    fill: #fffcec;
}
.dsvg-content {
  position: absolute;
  bottom: 20px;
  color: #fff;
}

#dsvg-modal {
  display:none;
  position:fixed;
  inset:0;
  background: rgba(0,0,0,0.9);
  z-index:9999;
}

.dsvg-modal-inner {
  width:80%;
  margin:5% auto;
}

iframe {
  width:100%;
  height:500px;
}
.dsvg-close{
	font-size: 34px;
    color: #fff;
    text-align: right;
    position: absolute;
    right: 50px;
    top: 20px;
}