.frhd__post-grid-interactive-5.frhd__post-block-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 15px;
    row-gap: 20px;
}
.frhd__post-grid-interactive-5 .frhd__post-interactive-article {
    overflow: hidden;
    position: relative;
    padding: 20px;
    transition: all 0.3s;
    box-shadow: 0 0 6px 0 rgba(32, 32, 36, 0.12);
    transition: all 0.35s ease;
}
.frhd__post-grid-interactive-5 .frhd__post-interactive-article:hover {
    box-shadow: 0 10px 20px 0 rgba(32, 32, 36, 0.12);
}
.frhd__post-grid-interactive-5 .frhd__post-interactive-article:hover .frhd__featured-image {
    margin-bottom: 15px;
}
.frhd__post-grid-interactive-5 .frhd__post-interactive-article::before,
.frhd__post-grid-interactive-5 .frhd__post-interactive-article::after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: #000;
    height: 4px;
  }
.frhd__post-grid-interactive-5 .frhd__post-interactive-article::before{
    width: 0;
    opacity: 0;
    transition-delay: 0.5s;
}
.frhd__post-grid-interactive-5 .frhd__post-interactive-article::after{
    width: 100%;
    transition: width 0.5s ease;
}
.frhd__post-grid-interactive-5 .frhd__post-interactive-article:hover::before {
    width: 100%;
    opacity: 1;
    transition: opacity 0.5s ease, width 0.5s ease;
    transition-delay: 0;
  }
.frhd__post-grid-interactive-5 .frhd__post-interactive-article:hover::after {
    width: 0;
    opacity: 0;
    transition: width 0 ease;
}
.frhd__post-grid-interactive-5  .frhd__featured-image {
    margin-bottom: 10px;
    transition: 0.5s;
    height: 100px;
    background: #cccccc;
    position: relative;
    overflow: hidden;
}
.frhd__post-grid-interactive-5  .frhd__featured-image img {
    display: block;
    max-width: 100%;
    max-height: 100px;
    object-fit: cover;
    transition: all 0.3s;
}
.frhd__post-grid-interactive-5 span.frhd__featured-image-missing:before {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  width: 25px;
  height: 25px;
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15 21C14.6917 19.8005 14.1618 18.6686 13.4412 17.6532M3 13.0351C3.31177 13.0127 3.62454 13.0019 3.93756 13.0027C6.57381 12.9466 9.14549 13.7729 11.1937 15.3342C12.0694 16.0016 12.825 16.7848 13.4412 17.6532M16.2449 16.2449C15.2871 16.5074 14.3464 16.9792 13.4412 17.6532' stroke='%23141B34' stroke-width='1.5' stroke-linejoin='round'/%3E%3Ccircle cx='16.5' cy='7.5' r='1.5' stroke='%23141B34' stroke-width='1.5'/%3E%3Cpath d='M2 2L22 22' stroke='%23141B34' stroke-width='1.5' stroke-linejoin='round'/%3E%3Cpath d='M21 3H21.75C21.75 2.58579 21.4142 2.25 21 2.25V3ZM3 21H2.25C2.25 21.4142 2.58579 21.75 3 21.75V21ZM2.25 3V21H3.75V3H2.25ZM21 20.25H3V21.75H21V20.25ZM6.18198 3.75H21V2.25H6.18198V3.75ZM20.25 3V17.818H21.75V3H20.25Z' fill='%23141B34'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  content: "";
  opacity: .5;
}
.frhd__post-grid-interactive-5 span.frhd__featured-image-missing {
    background: #cccccc;
    display: block;
    height: 100px;
}
.frhd__post-grid-interactive-5  .frhd__post-title h2 {
    font-size: 12px;
    line-height: 18px;
    overflow: hidden;
    color: #999;
    font-weight: 600;
    text-transform: uppercase;
    margin: 0;
    letter-spacing: 2px;
    transition: 0.3s;
}
.frhd__post-grid-interactive-5 .frhd__post-interactive-article:hover .frhd__post-title h2 {
    margin-bottom: 15px;
}
.frhd__post-grid-interactive-5 .frhd__post-interactive-article .frhd__post-excerpt p {
    font-size: 16px;
    margin: 0;
    color: #6E6E70;
    line-height: 20px;
}
.frhd__post-grid-interactive-5 .frhd__post-interactive-article .frhd__post-excerpt {
    overflow: hidden;
    max-height: 0;
    transform: translateY(20px);
    transition: all 0.55s ease;
}
.frhd__post-grid-interactive-5 .frhd__post-interactive-article:hover .frhd__post-excerpt {
    max-height: 100px;
    transform: none;
}