.latest-posts-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.latest-post-col {
    flex: 1 1 calc(33.333% - 20px);
    box-sizing: border-box;
}

/* کارت اصلی */
.Industry-blogbox01 {
    display: block;
    position: relative;
    margin-bottom: 20px;
    overflow: hidden;
    cursor: pointer;
    border-radius: 15px;
    border: 1px solid #d2ac67;
    background-color: #ffffff;
    text-decoration: none;
    color: #231f20;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    box-shadow: 0 8px 24px rgba(35, 31, 32, 0.08);
}

/* حذف کامل عکس */
.Industry-blogbox01 .pic {
    display: none;
}

/* لایه رنگی هاور */
.Industry-blogbox01::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #231f20 0%, #496f6e 100%);
    opacity: 0;
    transition: opacity 0.35s ease;
    border-radius: 15px;
    z-index: 0;
}

/* محتوا */
.Industry-blogbox01 .content {
    position: relative;
    padding: 40px 30px;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    min-height: 360px;
    z-index: 1;
    border-radius: 15px;
    transition: background-color 0.35s ease;
}

/* هدر محتوا */
.Industry-blogbox01 .content-header {
    color: #ae7103;
}

/* تاریخ، دسته‌بندی و جداکننده */
.Industry-blogbox01 .content-header .date,
.Industry-blogbox01 .content-header .category,
.Industry-blogbox01 .content-header .sep,
.Industry-blogbox01 .content-header time {
    color: #ae7103;
}

/* عنوان */
.Industry-blogbox01 .content-body .title {
    color: #231f20;
}

/* لینک عنوان */
.Industry-blogbox01 .title a {
    color: inherit;
    text-decoration: none;
}

/* متن خلاصه */
.Industry-blogbox01 .content-body .excerpt {
    color: #496f6e;
}

/* فوتر و لینک */
.Industry-blogbox01 .content-footer .link,
.Industry-blogbox01 .content-footer .link i {
    color: #ae7103;
}

/* افکت هاور */
.Industry-blogbox01:hover {
    transform: translateY(-6px);
    border-color: #496f6e;
    box-shadow: 0 16px 40px rgba(35, 31, 32, 0.18);
}

.Industry-blogbox01:hover::after {
    opacity: 1;
}

.Industry-blogbox01:hover .content {
    background-color: transparent;
}

/* تغییر رنگ متن‌ها در هاور */
.Industry-blogbox01:hover .content-header,
.Industry-blogbox01:hover .content-body .title,
.Industry-blogbox01:hover .content-body .title a,
.Industry-blogbox01:hover .content-body .excerpt,
.Industry-blogbox01:hover .content-footer .link,
.Industry-blogbox01:hover .content-footer .link i,
.Industry-blogbox01:hover .content-header .date,
.Industry-blogbox01:hover .content-header .category,
.Industry-blogbox01:hover .content-header .sep,
.Industry-blogbox01:hover .content-header time {
    color: #ffffff;
}

/* نرمی تغییر رنگ */
.Industry-blogbox01 .content-header,
.Industry-blogbox01 .content-body .title,
.Industry-blogbox01 .content-body .excerpt,
.Industry-blogbox01 .content-footer .link,
.Industry-blogbox01 .content-footer .link i,
.Industry-blogbox01 .content-header .date,
.Industry-blogbox01 .content-header .category,
.Industry-blogbox01 .content-header .sep,
.Industry-blogbox01 .content-header time {
    transition: color 0.35s ease;
}

/* واکنش‌گرا */
@media (max-width: 991px) {
    .latest-post-col {
        flex: 1 1 calc(50% - 20px);
    }
}

@media (max-width: 600px) {
    .latest-post-col {
        flex: 1 1 100%;
    }

    .Industry-blogbox01 .content {
        padding: 30px 22px;
        min-height: 300px;
    }
}
