section.featured-posts {
    .panelheadercontent {
        margin: 0 auto;
        text-align: center;
    }
}




.featured-posts {
    /* max-width: 1200px; */
    /* margin: 0 auto; */
    /* padding: 20px; */
}

.featured-posts h2 {
    color: rgb(0, 49, 49);
    margin-bottom: 30px;
    font-weight: 400;
    font-size: 40px;
    line-height: 56px;
    letter-spacing: 0%;
    text-align: center;
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.post-card {
    background: rgb(255, 245, 242);
    overflow: hidden;
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    gap: 10px;

    &:hover {
        .arrow {
            svg {
                margin-right: -10px;
            }
        }
    }
}

.post-card:hover {
    transform: translateY(-5px);
}

.post-image img {
    width: 180px;
    height: 120px;
    object-fit: cover;
    margin-right: 20px;
}

.post-content {
    flex: 1;
    padding-top: 20px;
    padding-bottom: 20px;
}

.post-title {
    color: #781446;
    font-size: 20px;
    margin: 0 0 10px 0;
    font-weight: 400;
}

.post-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 14px;
    color: #143C3C;

    .avatar {
        width: 24px;
        height: 24px;
        border-radius: 50%;
    }

}

.author {
    display: flex;
    align-items: center;
    gap: 5px;
}



.arrow {
    margin-left: auto;
    color: rgb(128, 0, 32);
    width: 50px;
    display: flex;
    justify-content: center;
}

@media (max-width: 768px) {
    .posts-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .featured-posts h2{
        text-align: left;
    }
    .post-card {
        flex-direction: column;
        text-align: center;
        display: grid;
        grid-template-columns: 1fr 2fr;
    }

    .post-content{
        padding: 10px;
    }
    .post-title{
        font-size: 1rem;;
        line-height: 1.3;
        text-align: left;
    }
    .post-image img{
        width: 100%;
        /* height: 250px; */
    }

    .post-meta {
        /* justify-content: center; */
        flex-wrap: wrap;
        font-size: 12px;
    }
    span.arrow{
        display: none;
    }
}