a {
    text-decoration: none;
}
.blog-home {
    width: 100%;
    min-height: 440px;
    background-color: #be7032;
    display: grid;
    justify-content: center;
    align-items: center;
}
.blog-home-text {
    color: #fff;
    text-align: center;
}
.blog-home-title {
    font-family: Sahel-Bold;
    font-size: 42px;
}
.blog-home-subtitle {
    font-family: Sahel-Light;
    font-size: 15px;
}
.blog-post-filter {
    direction: rtl;
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 1.5rem;
    margin-top: 2rem !important;
}
.filter-item {
    direction: rtl;
    font-family: Sahel-SemiBold;
    font-size: 14px;
    cursor: pointer;
}
.active-filter {
    background: #be7032;
    color: #fff;
    padding: 4px 10px;
    border-radius: 4px;
}
.blog-post {
    margin: auto;
    max-width: 900px;
    padding: 3rem 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, auto));
    justify-content: center;
    gap: 1.5rem;
}
.blog-post-box {
    direction: rtl;
    background: #fff;
    box-shadow: 0 4px 14px hsl(355deg 25% 15% / 10%);
    padding: 15px;
    border-radius: 0.5rem;
}
.blog-post-box-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: center;
    border-radius: 0.5rem;
}
.blog-post-box a {
    font-family: Sahel-SemiBold;
    font-size: 18px;
    padding: 10px 5px 0 5px;
    color: #be7032;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.blog-post-box-span {
    font-family: Sahel;
    display: flex;
    font-size: 13px;
    margin-top: 4px;
}
.blog-post-box p {
    font-size: 14px;
    text-align: justify;
    line-height: 1.5rem;
    margin: 5px 0px 10px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-family: Sahel;
    padding: 0 5px;
}
.blog-profile {
    direction: ltr;
    display: flex;
    align-items: center;
    gap: 10px;
}
.blog-profile img {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
}
.blog-profile span {
    color: #90532a;
    font-family: Sahel;
    font-size: 13px;
}
@media screen and (max-width: 570px) {
    .blog-home {
        min-height: 380px;
    }
    .blog-post {
        margin: 0 12px;
    }
}
@media screen and (max-width: 396px) {
    .blog-home {
        min-height: 300px;
    }
    .blog-post-box {
        padding: 10px;
    }
    .blog-home-title {
        font-size: 35px;
    }
}
