.blog-top-section {
    padding: 40px 0;
}

.section-title {
    font-family: 'Modam';
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 15px;
}

/* آخرین مطالب */
.latest-box {
    border-left: 1px solid #eee;
    padding-left: 15px;
}

.latest-box h4 {
    font-family: 'Modam';
}

.latest-item {
    display: flex;
    gap: 10px;
    margin-bottom: 14px;
}

.latest-thumb img {
    width: 70px;
    height: 55px;
    object-fit: cover;

}

.latest-content h6 {
    font-size: 13px;
    font-family: 'Dana';
    font-weight: 400;
    color: #333;
    line-height: 1.7;
    margin-bottom: 4px;
}

.latest-content span {
    font-size: 11px;
    color: #888;
}

/* مطالب ویژه */
.featured-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 8px 25px rgba(0, 0, 0, .06);
    transition: all .35s ease;
}

/* Hover Card */
.featured-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .12);
}

/* Image */
.featured-thumb {
    overflow: hidden;
}

.featured-thumb img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: transform .6s ease;
}

/* Zoom Image on Hover */
.featured-card:hover .featured-thumb img {
    transform: scale(1.08);
}

/* Content */
.featured-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 14px;
}

.featured-content h5 a {
    font-family: 'Dana';
    font-weight: 600;
    color: #333;
    font-size: 14px;
}

/* Summary */
.featured-content p {
    flex-grow: 1;
    font-size: 12px;
    color: #666;
    line-height: 1.9;
    margin: 8px 0 12px;
}

/* Read More */
.read-more {
    font-family: 'Dana';
    font-size: 12px;
    font-weight: 600;
    color: #c4161c;
    position: relative;
    width: fit-content;
    transition: color .3s ease;
}

.read-more::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: -3px;
    width: 0;
    height: 2px;
    background: #c4161c;
    transition: width .3s ease;
}

.featured-card:hover .read-more::after {
    width: 100%;
}


/* FILTER */
/* BLOG FILTER */
.blog-filter {
    background: #fff;
    padding: 16px 0;
    border-bottom: 1px solid #eee;
}

/* اسکرول افقی */
.filter-scroll {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 6px;
    scrollbar-width: none;
    /* Firefox */
}

.filter-scroll::-webkit-scrollbar {
    display: none;
    /* Chrome */
}

/* Chip Style */
.filter-chip {
    flex: 0 0 auto;
    padding: 6px 18px;

    background: #f5f5f5;
    font-size: 14px;
    color: #444;
    white-space: nowrap;
    border: 1px solid #e0e0e0;
    transition: all .25s ease;
}

/* Active */
.filter-chip.active,
.filter-chip:hover {
    background: #c4161c;
    color: #fff;
    border-color: #c4161c;
}



/* BLOG CARD */
.blog-row {
    margin-bottom: 30px;
}

.blog-category {
    display: inline-block;
    background: #ED1C24;
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 13px;
    margin-bottom: 15px;
    color: #fff;
    font-size: 12px;
    font-family: 'Dana'
}

.blog-card {
    background: #fff;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, .06);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-thumb img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.blog-content {
    padding: 16px;
    flex: 1;
}

.blog-title {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.6;
    margin-bottom: 10px;
}

.blog-title a {
    font-family: 'Dana';
    color: #111;
}

.blog-excerpt {
    font-size: 13px;
    color: #666;
    line-height: 1.9;
}

/* FOOTER */
.blog-footer {
    padding: 12px 16px;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.blog-date {
    font-size: 12px;
    color: #999;
}

.read-more {
    font-size: 12px;
    color: #c4161c;
    font-weight: 600;
}

/* PAGINATION */
.custom-pagination ul {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.custom-pagination a,
.custom-pagination span {
    padding: 8px 14px;
    background: #f1f1f1;
    font-size: 14px;
    color: #333;
}

.custom-pagination .active span,
.custom-pagination a:hover {
    background: #c4161c;
    color: #fff;
}