
.edc-grid-wrap{
  width:100%;
  box-sizing:border-box;
}
.edc-grid-heading{
  margin:0 0 18px;
  line-height:1.2;
}
.edc-grid{
  display:grid;
  grid-template-columns:repeat(var(--edc-cols,4),minmax(0,1fr));
  gap:18px;
}
.edc-card{
  min-width:0;
  overflow:hidden;
}
.edc-thumb{
  display:block;
  position:relative;
  width:100%;
  aspect-ratio:16/9;
  overflow:hidden;
  border-radius:8px;
  background:#111;
  text-decoration:none;
}
.edc-thumb img{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
}
.edc-no-thumb{
  display:flex;
  width:100%;
  height:100%;
  align-items:center;
  justify-content:center;
  opacity:.65;
}
.edc-card-body{
  padding-top:9px;
}
.edc-card-title{
  font-size:16px;
  line-height:1.3;
  margin:0 0 8px;
}
.edc-card-title a{
  color:inherit;
  text-decoration:none;
}
.edc-meta{
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  gap:10px;
  font-size:13px;
  opacity:.78;
}
.edc-excerpt{
  margin-top:8px;
  font-size:14px;
  line-height:1.45;
  opacity:.85;
}
.edc-empty{
  margin:0;
}
@media(max-width:1024px){
  .edc-grid{
    grid-template-columns:repeat(min(var(--edc-cols,4),3),minmax(0,1fr));
  }
}
@media(max-width:760px){
  .edc-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:12px;
  }
}
@media(max-width:480px){
  .edc-grid{
    grid-template-columns:1fr;
  }
}

.edc-ad-card{
  min-width:0;
  width:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
}
.edc-ad-card iframe,
.edc-ad-card img{
  max-width:100%;
}
