﻿

.honor-wrap {
    padding: 80px 20px;
    max-width: 1200px;
    margin: auto;
    direction:rtl
}

.honor-title2 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 40px;
}

/* گرید */
.honor-grid2 {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 18px;
}

/* باکس */
.honor-box {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    cursor: pointer;
}

    /* تصویر */
    .honor-box img {
        width: 100%;
        height: 260px;
        object-fit: fill;
        transition: 0.4s;
    }

/* لایه تار */
.overlay {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    opacity: 0.9;
    transition: 0.3s;
}

    /* متن */
    .overlay h3 {
        margin: 0 0 8px;
        font-size: 16px;
        color:white
    }

    .overlay p {
        margin: 0;
        font-size: 13px;
        color: #cbd5e1;
    }

/* hover افکت */
.honor-box:hover img {
    transform: scale(1.08);
}

.honor-box:hover .overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.95), transparent);
}

/* ریسپانسیو */
@media(max-width:1000px) {
    .honor-grid2 {
        grid-template-columns: repeat(2,1fr);
    }
}

@media(max-width:600px) {
    .honor-grid2 {
        grid-template-columns: 1fr;
    }
}
