#SearchForm {}

#SearchForm input{
        font-size: 18px;
        color: #333;
        padding: 10px;
        border: 1px solid ccc;
    }

#SearchResults {
  width: 90%;
  height: auto;
  margin: 0 auto;
  padding: 20px;
}


#ContentResults {}
.ContentCard {
  display: block;
  width: 100%;
  height: 170px;
  margin: 10px;
  background-color: #FFF;
  border: 2px solid #fff;
}
.ContentCard:hover {
  border: 2px solid #db0003;
}
.ContentCard .ContentImg {
  display: inline-block;
  width: 28%;
  height: 170px;
  background-position: center center;
  background-size: cover;
}
.ContentCard .ContentTextBlock {
  display: inline-block;
  width: 65%;
  vertical-align: top;
  padding: 20px;
}
.ContentCard .ContentTextBlock H2 {
  font-size: 20px;
  line-height: 28px;
  color: #db0003;
  margin: 0px;
  font-weight: 500;
}
.ContentCard .ContentTextBlock P {
  font-size: 16px;
  line-height: 28px;
  color: #737373;
  margin: 0px;
  font-weight: 300;
}


#NewsResults {}
.NewsCard {
  display: block;
  width: 100%;
  height: 170px;
  margin: 10px;
  background-color: #FFF;
  border: 2px solid #fff;
}
.NewsCard:hover {
  border: 2px solid #db0003;
}
.NewsCard .NewsImg {
  display: inline-block;
  width: 28%;
  height: 170px;
  background-position: center center;
  background-size: cover;
}
.NewsCard .NewsTextBlock {
  display: inline-block;
  width: 65%;
  vertical-align: top;
  padding: 20px;
}
.NewsCard .NewsTextBlock H2 {
  font-size: 20px;
  line-height: 28px;
  color: #db0003;
  margin: 0px;
  font-weight: 500;
}
.NewsCard .NewsTextBlock P {
  font-size: 16px;
  line-height: 28px;
  color: #737373;
  margin: 0px;
  font-weight: 300;
}
.accordion {
  background-color: #eee;
  color: #444;
  cursor: pointer;
  margin-bottom: 10px;
  padding: 18px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 15px;
  transition: 0.4s;
}
.active, .accordion:hover {
  background-color: #ccc;
}
.accordion:after {
  content: '\002B';
  color: #777;
  font-weight: bold;
  float: right;
  margin-left: 5px;
}
.active:after {
  content: "\2212";
}
.panel {
  padding: 0 18px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 1s ease-out;
}


@media only screen and (max-width:840px) {

.ContentCard,  .NewsCard {
    height: 200px;
    margin: 0px;
    margin-bottom: 10px;
}
    
.ContentCard .ContentImg, .NewsCard .NewsImg  {
  width: 25%;
  height: 200px;
}
    
}

@media only screen and (max-width:614px) {
 

 .ContentCard .ContentTextBlock, .NewsCard .NewsTextBlock  {
    padding: 10px;
}
    
.ContentCard,  .NewsCard {
    height: 120px;
    margin-bottom: 10px;
}
    
.ContentCard P,  .NewsCard P{
    height: 60px;
    overflow: hidden;
    
}
    
.ContentCard P::before,  .NewsCard P::before{
    content: "[...]";
    position: relative;
    float: right;
    margin-top: 30px;
}
    
    
.ContentCard .ContentImg, .NewsCard .NewsImg  {
  width: 20%;
  height: 120px;

}
    
}
