/* PRESS RELEASES */
.press-logo {
  width: 200px;
  margin-bottom: 10px;
}

.press-items-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 20px;
}
.press-items-wrap .item-front {
  display: grid;
  grid-template-columns: 1fr;
  background: rgba(255,255,255,0.95);
  margin-bottom: 15px;
  border: 1px solid rgba(233,195,177,0.5);
  box-shadow: 0px 4px 10px rgba(0,0,0,0.15);
  padding: 10px;
}
.press-items-wrap .item-front:last-child {
  margin-bottom: 0px;
}
.press-items-wrap .item-front .item-header {
  min-height: 120px;
  display: flex;
  flex-direction: column;
}
.press-items-wrap .item-front .item-header .img-post {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border: 1px solid rgba(0,0,0,0.25);
}
.press-items-wrap .item-front .item-content {
  padding: 20px 35px 30px;
}
.press-items-wrap .item-front .item-content ul {
  margin-bottom: 0px;
  padding-left: 0px;
}
.press-items-wrap .item-front .item-content ul li {
  margin-left: 20px;
  margin-bottom: 4px;
  font-size: 16px;
  line-height: 24px;
  font-family: hero-new, Arial, Helvetica, sans-serif;
  font-weight: 200;
}
.press-items-wrap .item-front .item-content a {
  text-decoration: none;
}
.press-items-wrap .item-front .item-content h4 {
  font-weight: 600;
}
.press-items-wrap .item-front .item-content h3 {
  line-height: 32px;
  margin-bottom: 12px;
}
.press-items-wrap .item-front .item-content h4 {
  line-height: 24px;
  margin-bottom: 15px;
  font-weight: 200;
}
.press-items-wrap .item-front .item-content a h4  {
  color: rgba(66,54,48,1.0);
}
.press-items-wrap .item-front .item-content p {
  font-size: 16px;
  line-height: 24px;
  font-family: hero-new, Arial, Helvetica, sans-serif;
  margin-bottom: 9px;
  font-weight: 200;
}
.press-items-wrap .item-front .item-content .date {
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 200;
  color: rgba(0,0,0,0.5);
}
.btn-small-pr {
  white-space: nowrap;
  display: inline-block;
  padding: 13px 15px;
}
@media (max-width: 991px) {
  .press-items-wrap .item-front {
    grid-template-columns: 1fr;
  }
  .press-items-wrap .item-front .item-header .img-post {
      height: 200px;
      width: 100%;
      object-fit: cover;
      object-position: top center;
  }
  .btn-desk {
    display: none !important;
  }
  .btn-mob {
    display: inline-block !important;
    margin: 20px auto;
  }
}
@media (max-width: 768px) {
  .press-items-wrap {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 20px;
  }
}
@media (max-width: 575px) {
  .press-items-wrap .item-front {
    grid-template-columns: 1fr;
  }
}