.resource-title{
  font-family: Roboto;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
.reasource-doctype {
  margin: 0;
}
.btn-download{
  display: flex;
  align-items: center;
  gap: 10px;
  background: #155AA2;
  color: #fff;
  padding: 10px 20px; 
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  text-decoration: none;
}
.btn-download img, .btn-download span{
  margin: 0;
}
.resource-item{
  gap: 16px;
  border-bottom: 1px solid #E9ECEF;
  padding-bottom: 16px;
  margin-bottom: 16px;
}
.resource-icon {
  flex: 0 0 32px;
}
.resource-content-container{
  gap: 16px;
  flex: 0 0 100%; 
}
.resource-filter-container{
  border-bottom: 1px solid #E9E9E9;
  padding-bottom:16px;
  margin-bottom: 24px;
}
.resource-filter-title{
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
.resources-container{
  background: #F9F9F9;
  padding:24px;
  margin-bottom: 40px;
}
.resource-date{
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  color:#155AA2;
}
.resource-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 0 0 calc(100% - 50px);
}
.resource-btn{
  flex: 0 0 100%; 
}
.resource-btn a{
  display: flex;
  align-items: center;
  justify-content: center;
}
.resource-alert-info{
  padding:40px 0;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color:#ccc;
}
@media (min-width: 768px) {
  .resource-filter-container{
    margin-bottom: 0;
  } 
  .resource-content-container{
    flex: 0 0 calc(100% - 200px);
    flex-direction: row;
  }
  .resource-btn{
    flex: 0 0 auto;
  }
 
  .resource-alert-info{
    height: 300px;
  }
}