
.dvcs-wrap{width:100%}

.dvcs-controls{
  display:flex;
  gap:12px;
  align-items:stretch;
  flex-wrap:wrap;
  margin-bottom:22px;
}

.dvcs-searchbar{
  display:flex;
  flex:1 1 520px;
}

.dvcs-search-input{
  flex:1 1 auto;
  min-width:0;
  padding:14px 16px;
  border:1px solid #1b1f6a;
  border-right:0;
  border-radius:6px 0 0 6px;
  background:#fff;
}

.dvcs-search-button{
  padding:14px 18px;
  border:1px solid #1b1f6a;
  background:#1b1f6a;
  color:#fff;
  border-radius:0 6px 6px 0;
  cursor:pointer;
}

.dvcs-filters{display:flex}

.dvcs-category{
  min-width:220px;
  padding:12px 14px;
  border:1px solid #e6e8f0;
  border-radius:6px;
  background:#fff;
}

.dvcs-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:28px;
}

.dvcs-card{
  display:block;
  min-height:340px;
  border-radius:12px;
  background:#232a67;
  text-decoration:none;
  overflow:hidden;
}

.dvcs-card-inner{
  min-height:340px;
  padding:24px 26px 22px;
  display:flex;
  flex-direction:column;
  box-sizing:border-box;
}

.dvcs-card-kicker{
  font-size:30px;
  line-height:1;
  font-weight:700;
  color:#fff;
  margin-bottom:28px;
}

.dvcs-card-title{
  min-height:120px;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:0 10px;
}

.dvcs-card-title span{
  font-size:14px !important;
  line-height:1.2;
  font-weight:700;
  color:#fff !important;
}


.dvcs-card-thumbnail{
  width:90%;
  margin:0 auto 14px;
  border-radius:6px;
  overflow:hidden;
  background:#171b48;
  aspect-ratio:16 / 9;
}

.dvcs-card-thumbnail img{
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
}

.dvcs-card-source{
  width:90%;
  margin:0 auto 20px;
  padding:10px 12px;
  box-sizing:border-box;
  background:#f26d2d;
  color:#fff;
  border-radius:3px;
  text-align:center;
  font-size:13px;
  font-weight:600;
}

.dvcs-card-date{
  margin-top:auto;
  text-align:center;
  font-size:13px;
  font-weight:700;
  letter-spacing:.8px;
  text-transform:uppercase;
  color:#fff;
}

.dvcs-more{
  display:flex;
  justify-content:center;
  margin-top:28px;
}

.dvcs-load-more{
  padding:12px 18px;
  border:1px solid #1b1f6a;
  background:#fff;
  color:#1b1f6a;
  border-radius:8px;
  cursor:pointer;
}

@media (max-width:980px){
  .dvcs-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
}

@media (max-width:640px){
  .dvcs-grid{grid-template-columns:1fr}
  .dvcs-category{width:100%;min-width:0}
}
