/* ===== Post Card (RTL / News) ===== */
.post-card {
    background: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.18s ease, box-shadow 0.18s ease,
        border-color 0.18s ease;
}

.post-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(11, 92, 255, 0.22);
}

.post-card__thumb img {
    width: 100%;
    height: auto;
    transform: scale(1.02);
    transition: transform 0.28s ease;
}
.post-card:hover .post-card__thumb img {
    transform: scale(1.08);
}

.post-card__body {
    padding: 14px 14px 16px;
}

.post-card__meta {
    font-size: 13px;
    opacity: 0.88;
    gap: 10px;
}

.post-card__cats a {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(11, 92, 255, 0.1);
    color: var(--color-primary);
    font-weight: 800;
    text-decoration: none;
}
.post-card__cats a:hover {
    background: rgba(11, 92, 255, 0.16);
    text-decoration: none;
}

.post-card__title a {
    color: var(--color-text);
    text-decoration: none;
    font-weight: 900;
    line-height: 1.35;
}
.post-card__title a:hover {
    color: var(--color-primary);
}

.post-card__excerpt {
    color: rgba(11, 18, 32, 0.86);
    font-size: 16px;
    line-height: 1.85;
}

/* Read more -> real button */
.post-card__more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: var(--radius-md);
    background: linear-gradient(
        135deg,
        var(--color-primary),
        var(--color-secondary)
    );
    color: #fff !important;
    font-weight: 900;
    text-decoration: none !important;
    box-shadow: 0 14px 34px rgba(11, 92, 255, 0.22);
    transition: transform 0.15s ease, filter 0.15s ease;
}
.post-card__more:after {
    content: '←';
    font-weight: 900;
    transform: translateY(-1px);
}
.post-card__more:hover {
    filter: brightness(1.04);
    transform: translateY(-1px);
}

/* Tags */
.post-card__tags {
    font-size: 12px;
    opacity: 0.75;
}
.post-card__tags a {
    color: inherit;
    text-decoration: none;
}
.post-card__tags a:hover {
    text-decoration: underline;
}
