:root {
    --brand-orange: #3E4095;
    --bg: #f7f7f8;
    --card: #ffffff;
    --muted: #6b7280;
    --border: #e5e7eb;
    --chip: #ffffff;
}

html,
body {
    background: var(--bg);
    font-family: "Vazirmatn", system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial;
}

.page-wrap {
    max-width: 1180px
}

.pill {
    background: var(--brand-orange);
    color: #fff;
    font-weight: 600;
    padding: .4rem .9rem;
    border-radius: 999px;
    font-size: 75%;
}

.title {
    font-weight: 800;
    letter-spacing: -.2px;
}

.hero {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .08);
}

.hero img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 600px;
}

.overlay-chip {
    position: absolute;
    left: 50%;
    bottom: 18px;
    transform: translateX(-50%);
    background: var(--chip);
    color: #111827;
    border-radius: 999px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .12);
    padding: .65rem 1.1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border: 1px solid var(--border);
    backdrop-filter: saturate(180%) blur(12px);
}

.overlay-chip .divider {
    width: 1px;
    height: 22px;
    background: var(--border);
}

.overlay-chip .icon {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    color: #111827;
    font-weight: 600;
}

.overlay-chip .icon i {
    font-size: 1.05rem;
}

.article {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 24px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .04);
    text-align: justify;
}

.top-dots {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    border: 1px solid var(--border);
    background: var(--card)
}

.top-dots i {
    color: #9ca3af
}

.meta-inline {
    color: var(--muted)
}

.content p {
    color: #1f2937;
    line-height: 2.15;
    font-size: 1.02rem
}

@media (max-width: 576px) {
    .overlay-chip {
        left: 12px;
        right: 12px;
        transform: none;
        justify-content: space-between;
        gap: .75rem;
    }

    .overlay-chip .divider {
        display: none
    }

    .overlay-chip {
        padding: .55rem .8rem
    }
}