/* Inspired by the visual language of the ITCEQ site: dark institutional blue, orange accent, clean white cards. */
.deac-wrap{width:100%}

.deac-searchbar{
  display:flex;
  width:100%;
  margin-bottom:28px;
}

.deac-search-input{
  flex:1 1 auto;
  min-width:0;
  height:48px;
  padding:0 16px;
  border:1px solid #dfe4ee;
  border-right:0;
  border-radius:4px 0 0 4px;
  background:#fff;
  color:#252525;
  font-size:15px;
  outline:none;
}

.deac-search-input:focus{border-color:#26336c}

.deac-search-button{
  min-width:110px;
  padding:0 20px;
  border:1px solid #26336c;
  border-radius:0 4px 4px 0;
  background:#26336c;
  color:#fff;
  font-size:14px;
  font-weight:700;
  cursor:pointer;
}

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

.deac-card{
  display:flex;
  flex-direction:column;
  overflow:hidden;
  min-width:0;
  background:#fff;
  border-radius:4px;
  text-decoration:none!important;
  box-shadow:0 7px 24px rgba(25,38,88,.08);
  transition:transform .18s ease,box-shadow .18s ease;
}

.deac-card:hover{
  transform:translateY(-4px);
  box-shadow:0 14px 32px rgba(25,38,88,.14);
}

.deac-card-media{
  width:100%;
  aspect-ratio:16/9;
  overflow:hidden;
  background:#eef1f6;
}

.deac-card-media img{
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .3s ease;
}

.deac-card:hover .deac-card-media img{transform:scale(1.035)}

.deac-card-media-placeholder{
  width:100%;
  height:100%;
  background:linear-gradient(135deg,#26336c,#384886);
}

.deac-card-body{
  display:flex;
  flex:1 1 auto;
  flex-direction:column;
  padding:19px 20px 20px;
  border-top:3px solid #ef6b2e;
}

.deac-card-source{
  margin-bottom:10px;
  color:#ef6b2e;
  font-size:12px;
  line-height:1.3;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.5px;
}

.deac-card-title{
  margin:0!important;
  padding:0!important;
  color:#26336c!important;
  font-size:17px!important;
  line-height:1.35!important;
  font-weight:700!important;
  text-transform:none!important;
}

.deac-card-date{
  margin-top:14px;
  color:#767c89;
  font-size:12px;
  line-height:1.4;
}

.deac-card-link{
  margin-top:auto;
  padding-top:18px;
  color:#26336c;
  font-size:13px;
  font-weight:700;
}

.deac-card-link span{
  color:#ef6b2e;
  transition:padding-left .15s ease;
}

.deac-card:hover .deac-card-link span{padding-left:4px}

.deac-more{
  display:flex;
  justify-content:center;
  margin-top:30px;
}

.deac-load-more{
  padding:12px 24px;
  border:1px solid #26336c;
  border-radius:4px;
  background:#26336c;
  color:#fff;
  font-weight:700;
  cursor:pointer;
}

.deac-load-more:hover{background:#ef6b2e;border-color:#ef6b2e}

.is-loading .deac-search-button,
.is-loading .deac-load-more{opacity:.65;cursor:wait}

.deac-empty{
  padding:20px 0;
  color:#555;
}

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

@media(max-width:640px){
  .deac-grid{grid-template-columns:1fr}
  .deac-card-title{font-size:16px!important}
}
