:root{
    --card-radius: 14px;
    --pill-bg: #f0fbf6;
    --pill-text: #147c59;
    --title-blue: #0b4a8a;
    --muted: #6b7280;
}
span.title-span{
    color: #77DD77;
    font-size: 16px;
    font-weight: 700;
}
span.title-span::after {
    content: "";
    display: inline-block;
    background: url("../images/title-span.png") no-repeat center center;
    background-size: contain; /* میشه cover هم بذاری */
    width: 33px;
    height: 17px;
    margin-left: 5px;
    position: relative;
    top: 5px;
}
section.archive-blog{
    margin-top: 40px;
}
section.archive-blog .breadcrumb a{
    color: #919191;
    text-decoration: none;
}
section.archive-blog h1{
    color: #104E92;
    font-size: 28px;
    font-weight: 700;
    margin-top: 20px;
    margin-bottom: 64px;
}
.project-card {
    background: #fff;
    border-radius: var(--card-radius);
    overflow: hidden;
    position: relative;
    box-shadow: 0 6px 18px rgba(18, 38, 63, 0.08);
    padding: 16px;
    border: 1px solid #DFDFDF;
}

.project-card .card-image {
    width: 100%;
    display: block;
    margin-bottom: 24px;
}
.project-card a{
    color: #104E92;
    font-size: 16px;
    font-width: 700;
    text-decoration: none;
}
/* دسته‌بندی‌ها (pill buttons) */
.project-card .category {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 6px;
    justify-content: right;
    direction: rtl;
}

.project-card .category li a{
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border-radius: 999px;
    background: var(--pill-bg);
    color: var(--pill-text);
    font-size: 13px;
    text-decoration: none;
    white-space: nowrap;
}

.project-card .category li a::before{
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #3ac26b;
    display: inline-block;
}

/* محتوای داخلی */
.project-card .content{
    padding: 30px 16px 16px 16px;
    direction: rtl;
}

.project-title{
    font-weight: 700;
    color: var(--title-blue);
    font-size: 16px;
    line-height: 1.4;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    min-height: 24px;
}

.project-desc{
    color: var(--muted);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 24px;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* فقط دو خط نشون میده */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    min-height: 42px;
    font-weight: 400;
}

.project-meta{
    display:flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
    color: var(--muted);
    font-size: 13px;
}

.meta-item:first-child{
    display:inline-flex;
    align-items:center;
    gap:6px;
    margin-left: 50px;
    color: #104E92;
}
.meta-item:first-child .bi{
    color: #104E92;
}
.meta-item{
    display:inline-flex;
    align-items:center;
    gap:6px;
}

.meta-item .bi {
    font-size: 14px;
    color: #919191;
}