

    .honors-wrapper {
        margin-top: 24px;
        width: 100%;
        font-feature-settings: "ss01";
    }

    .honors-header-card {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
        padding: 22px 24px;
        background: var(--white);
        border: 1px solid var(--border);
        border-radius: 20px;
        box-shadow: var(--shadow);
        margin-bottom: 28px;
    }

    .honors-header-title {
        display: flex;
        align-items: center;
        gap: 14px;
    }

    .honors-header-title i {
        font-size: 1.6rem;
        color: #d97706;
        background: #fef3c7;
        width: 48px;
        height: 48px;
        flex-shrink: 0;
        display: grid;
        place-items: center;
        border-radius: 14px;
    }

    .honors-header-title h2 {
        font-size: 1.25rem;
        color: var(--primary);
        font-weight: 800;
        margin: 0;
    }

    .honors-header-title p {
        color: var(--muted);
        font-size: 0.85rem;
        margin: 4px 0 0 0;
    }

    .section-title {
        font-size: 1.05rem;
        font-weight: 800;
        color: var(--primary);
        display: flex;
        align-items: center;
        gap: 10px;
        margin: 0 0 16px 0;
    }

    .section-title i {
        font-size: 1.2rem;
        color: #0284c7;
    }

    /* گرید کارت‌ها */
    .honors-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 20px;
        margin-bottom: 32px;
    }

    .honor-card {
        background: var(--white);
        border: 1px solid var(--border);
        border-radius: 20px;
        padding: 22px 24px;
        box-shadow: var(--shadow);
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
        position: relative;
        overflow: hidden;
    }

    .honor-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
        border-color: #cbd5e1;
    }

    .honor-card::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        left: 0;
        height: 4px;
    }

    .honor-card.gold::before { background: linear-gradient(90deg, #f59e0b, #d97706); }
    .honor-card.blue::before { background: linear-gradient(90deg, #38bdf8, #0284c7); }
    .honor-card.purple::before { background: linear-gradient(90deg, #a855f7, #7c3aed); }
    .honor-card.emerald::before { background: linear-gradient(90deg, #34d399, #059669); }
    .honor-card.cert-blue::before { background: linear-gradient(90deg, #0056D2, #0284c7); }

    .honor-top {
        display: flex;
        align-items: flex-start;
        gap: 16px;
        margin-bottom: 14px;
    }

    .honor-icon {
        width: 44px;
        height: 44px;
        border-radius: 12px;
        display: grid;
        place-items: center;
        font-size: 1.3rem;
        flex-shrink: 0;
    }

    .gold .honor-icon { background: #fef3c7; color: #d97706; }
    .blue .honor-icon { background: #e0f2fe; color: #0284c7; }
    .purple .honor-icon { background: #f5f3ff; color: #7c3aed; }
    .emerald .honor-icon { background: #ecfdf5; color: #059669; }
    .cert-blue .honor-icon { background: #eff6ff; color: #0056D2; }

    .honor-body {
        flex: 1;
    }

    .honor-category {
        font-size: 0.76rem;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 0.3px;
        margin-bottom: 4px;
        display: inline-block;
    }

    .gold .honor-category { color: #d97706; }
    .blue .honor-category { color: #0284c7; }
    .purple .honor-category { color: #7c3aed; }
    .emerald .honor-category { color: #059669; }
    .cert-blue .honor-category { color: #0056D2; }

    .honor-title {
        font-size: 1.02rem;
        font-weight: 800;
        color: var(--primary);
        line-height: 1.65;
        margin: 0 0 6px 0;
    }

    .honor-title.ltr-title {
        direction: ltr;
        text-align: right;
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    }

    .honor-desc {
        font-size: 0.86rem;
        color: var(--muted);
        line-height: 1.7;
        margin: 0;
    }

    .honor-badge-footer {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-top: 16px;
        padding-top: 12px;
        border-top: 1px dashed var(--border);
        font-size: 0.8rem;
        font-weight: 700;
        color: #64748b;
    }

    .honor-badge-footer .badge-tag {
        display: inline-flex;
        align-items: center;
        gap: 5px;
        padding: 3px 9px;
        border-radius: 6px;
        background: #f1f5f9;
    }

    @media (max-width: 768px) {
        .honors-header-card {
            flex-direction: column;
            text-align: center;
        }

        .honors-header-title {
            flex-direction: column;
        }

        .honors-grid {
            grid-template-columns: 1fr;
        }
    }

