/* Only for Grid 4 Layout */
.frhd__post-grid-4 .frhd__post-block-article {
    position: relative;
    border-radius: 20px;
}
.frhd__post-grid-4 .frhd__post-block-article .frhd__image-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    max-height: none;
    object-fit: cover;
    outline: none;
    border: none;
    box-shadow: none;
    border-radius: 20px;
}
span.frhd__post-article-overlay {
    background-color: #3f51b5;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 1;
    opacity: .5;
    border-radius: 20px;
}
.frhd__post-grid-4 .frhd__article-body {
    position: relative;
    background-size: cover;
    background-position: 50%;
    min-height: 430px;
    width: 100%;
    z-index: 1;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 50px;
}
.frhd__post-grid-4 .frhd__post-author {
    display: flex;
    align-items: center;
    column-gap: 5px;
    text-transform: capitalize;
}
.frhd__post-grid-4 .frhd__post-author img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}
.frhd__post-grid-4 .frhd__post-date svg {
    width: 15px;
    height: 15px;
}
.frhd__post-grid-4 .frhd__cat-wrap,
.frhd__post-grid-4 .frhd__cat-wrap a,
.frhd__post-grid-4 .frhd__post-title a,
.frhd__post-grid-4 .frhd__post-date,
.frhd__post-grid-4 .frhd__post-excerpt p,
.frhd__post-grid-4 .frhd__post-author a {
    color: #fff !important;
}
.frhd__post-grid-4 .frhd__post-date svg {
    fill: #fff !important;
}
.frhd__post-grid-4 .frhd__post-bottom {
    margin-top: auto;
}
.frhd__post-grid-4 .frhd__post-date,
.frhd__post-grid-4 .frhd__reading-time {
    margin-bottom: 20px;
}

/* Hover Animation */
.frhd__post-block-article:hover .frhd__post-title a {
    text-decoration: underline !important;
    text-decoration-thickness: 1px !important;
    text-decoration-color: rgb(255 255 255 / 30%) !important;
}
.frhd__post-grid-4 .frhd__post-block-article {
    overflow: hidden;
}
.frhd__post-block-article .frhd__image-background {
    transition: .3s;
}
.frhd__post-block-article:hover .frhd__image-background {
    transform: scale(1.3);
}
.frhd__post-block-article:hover .frhd__post-article-overlay {
    opacity: 1;
    background: linear-gradient(0deg, rgba(4, 69, 114, 0.5) 0%, #3f51b5 100%);
}
.frhd__post-grid-4 .frhd__post-block-article:hover .frhd__cat-wrap a {
    color: rgb(247, 160, 0) !important;
}