.pakish-category-block {
    margin-top: 40px;
}

.pakish-category-block .gh-main {
    grid-column: 1 / -1;
}

.pakish-category-block .pakish-category-more {
    display: block;
    margin-top: 24px;
}

.pakish-modern-audio-card {
    border: 1px solid var(--color-border);
    border-radius: 14px;
    padding: 18px;
    background: #fff;
    margin-top: 28px;
}

.pakish-modern-audio-card__meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.pakish-modern-audio-card__logo {
    width: 40px;
    min-width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--color-lighter-gray);
    display: flex;
    align-items: center;
    justify-content: center;
}

.pakish-modern-audio-card__logo img {
    width: 26px;
    height: 26px;
    object-fit: contain;
}

.pakish-modern-audio-card__title {
    font-size: 1.7rem;
    margin: 0;
}

.pakish-modern-audio-card__hint {
    margin: 4px 0 0;
    color: var(--color-secondary-text);
    font-size: 1.35rem;
}

.pakish-modern-audio-card__player {
    width: 100%;
    margin-top: 8px;
}

.pakish-modern-audio-card__actions {
    margin-top: 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.pakish-modern-audio-card__play,
.pakish-modern-audio-card__download {
    min-height: 38px;
    border-radius: 999px;
    border: 1px solid var(--color-border);
    padding: 6px 14px;
    background: #fff;
    cursor: pointer;
    font-weight: 600;
}

.pakish-modern-audio-card__play {
    background: var(--ghost-accent-color);
    color: #fff;
    border-color: transparent;
}

.pakish-chat__toggle {
    position: fixed;
    bottom: 18px;
    inset-inline-end: 18px;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    border: none;
    background: var(--ghost-accent-color);
    color: #fff;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 18px rgb(0 0 0 / 0.25);
    gap: 2px;
    z-index: 9998;
}

body.pakish-chat-open .pakish-chat__toggle {
    opacity: 0;
    pointer-events: none;
}

.pakish-chat__overlay {
    position: fixed;
    inset: 0;
    background: rgb(0 0 0 / 0.34);
    z-index: 9997;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

body.pakish-chat-open .pakish-chat__overlay {
    opacity: 1;
    pointer-events: auto;
}

.pakish-chat-sidebar__panel {
    position: fixed;
    top: 0;
    inset-inline-end: 0;
    width: min(400px, 100vw);
    height: 100vh;
    background: #fff;
    box-shadow: -4px 0 30px rgb(0 0 0 / 0.14);
    display: flex;
    flex-direction: column;
    transform: translateX(110%);
    transition: transform 0.2s ease;
    z-index: 9999;
}

[dir="rtl"] .pakish-chat-sidebar__panel {
    box-shadow: 4px 0 30px rgb(0 0 0 / 0.14);
    transform: translateX(-110%);
}

body.pakish-chat-open .pakish-chat-sidebar__panel {
    transform: translateX(0);
}

.pakish-chat-sidebar__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: var(--ghost-accent-color);
    color: #fff;
}

.pakish-chat-sidebar__title {
    font-size: 1.45rem;
    font-weight: 700;
}

.pakish-chat-sidebar__close {
    border: none;
    background: transparent;
    color: inherit;
    font-size: 2.2rem;
    line-height: 1;
    cursor: pointer;
}

.pakish-chat-sidebar__faqs,
.pakish-chat-sidebar__suggested {
    padding: 10px 12px 0;
}

.pakish-chat-sidebar__messages {
    flex: 1;
    overflow-y: auto;
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.pakish-chat__msg {
    max-width: 88%;
    padding: 8px 10px;
    border-radius: 12px;
    font-size: 1.35rem;
    line-height: 1.45;
    word-break: break-word;
}

.pakish-chat__msg--bot {
    align-self: flex-start;
    background: var(--color-lighter-gray);
}

.pakish-chat__msg--user {
    align-self: flex-end;
    background: var(--ghost-accent-color);
    color: #fff;
}

.pakish-chat-sidebar__input-row {
    display: flex;
    border-top: 1px solid var(--color-border);
}

.pakish-chat-sidebar__input {
    flex: 1;
    border: none;
    padding: 12px;
    outline: none;
    font-size: 1.4rem;
}

.pakish-chat-sidebar__send {
    border: none;
    background: var(--ghost-accent-color);
    color: #fff;
    padding: 0 12px;
    cursor: pointer;
}

.pakish-chat-sidebar__footer {
    border-top: 1px solid var(--color-border);
    padding: 10px 12px;
    color: var(--color-secondary-text);
    font-size: 1.2rem;
}

.pakish-chat__faq-header {
    margin-bottom: 6px;
    font-size: 1.2rem;
    color: var(--color-secondary-text);
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.pakish-chat__faq-btn,
.pakish-chat__suggested-chip {
    display: inline-flex;
    border: 1px solid var(--color-border);
    border-radius: 999px;
    background: #fff;
    padding: 5px 10px;
    margin: 0 6px 6px 0;
    cursor: pointer;
    font-size: 1.25rem;
}

.pakish-chat__msg--error {
    border: 1px solid #e2a6a6;
}

@media (max-width: 720px) {
    .pakish-modern-audio-card__play,
    .pakish-modern-audio-card__download {
        width: 100%;
        justify-content: center;
    }
}

/* Live page styles */
.live-page { padding-block: 0 3rem; min-height: 80vh; }
.live-header {
    background: #bb1919;
    color: #fff;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0,0,0,.25);
}
.live-header__inner { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.live-header__text { flex: 1; }
.live-header__title { font-size: clamp(1rem, 2.5vw, 1.4rem); font-weight: 700; margin: 0; color: #fff; }
.live-header__desc { font-size: 0.85rem; opacity: 0.85; margin: 0.2rem 0 0; }
.live-header__meta { font-size: 0.8rem; opacity: 0.8; }
.live-header__updated { white-space: nowrap; }
.live-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: #fff;
    color: #bb1919;
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    padding: 0.3rem 0.75rem;
    border-radius: 4px;
    white-space: nowrap;
    flex-shrink: 0;
}
.live-badge__dot {
    width: 8px;
    height: 8px;
    background: #bb1919;
    border-radius: 50%;
    animation: live-pulse 1.4s ease-in-out infinite;
}
@keyframes live-pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.4;transform:scale(.7)} }
.live-new-banner {
    display: flex;
    justify-content: center;
    padding: 0.6rem 1rem;
    background: #fff3cd;
    border-block-end: 2px solid #ffc107;
    position: sticky;
    top: 56px;
    z-index: 90;
}
.live-new-banner__btn {
    background: #bb1919;
    color: #fff;
    border: none;
    border-radius: 20px;
    padding: 0.45rem 1.4rem;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
}
.live-new-banner__btn:hover { background: #880000; }
.live-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 2rem;
    padding-block-start: 1.5rem;
    align-items: start;
}
@media (max-width: 900px) { .live-layout { grid-template-columns: 1fr; } .live-sidebar { order: -1; } }
.live-feed { display: flex; flex-direction: column; }
.live-item {
    display: grid;
    grid-template-columns: 70px 1fr auto;
    gap: 0 1rem;
    padding: 1.1rem 0;
    border-block-end: 1px solid #ebebeb;
    align-items: start;
}
.live-item--new { animation: live-flash 3s ease-out; }
@keyframes live-flash { 0%{background:#fff8e1} 100%{background:transparent} }
.live-item__time-col { display: flex; flex-direction: column; align-items: center; padding-block-start: 0.15rem; }
.live-item__time { font-size: 0.8rem; font-weight: 700; color: #bb1919; font-variant-numeric: tabular-nums; white-space: nowrap; }
.live-item__timeline-dot { width: 10px; height: 10px; border-radius: 50%; background: #ccc; margin-block: 0.4rem; flex-shrink: 0; }
.live-item__timeline-dot--latest { background: #bb1919; box-shadow: 0 0 0 3px #ffd0d0; animation: live-pulse 1.4s ease-in-out infinite; }
.live-item__timeline-line { width: 2px; flex: 1; min-height: 20px; background: #ebebeb; }
.live-item__content { min-width: 0; }
.live-item__cat { display: inline-block; font-size: 0.7rem; font-weight: 700; color: #bb1919; margin-block-end: 0.3rem; text-decoration: none; }
.live-item__cat:hover { text-decoration: underline; }
.live-item__title { font-size: clamp(0.95rem, 2vw, 1.1rem); font-weight: 700; line-height: 1.35; margin: 0 0 0.4rem; }
.live-item__title a { color: inherit; text-decoration: none; }
.live-item__title a:hover { color: #bb1919; }
.live-item__excerpt {
    font-size: 0.875rem;
    color: #555;
    line-height: 1.5;
    margin: 0 0 0.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.live-item__footer { display: flex; align-items: center; gap: 1rem; font-size: 0.78rem; color: #888; }
.live-item__read-more { color: #bb1919; text-decoration: none; font-weight: 600; }
.live-item__read-more:hover { text-decoration: underline; }
.live-item__thumb { width: 130px; flex-shrink: 0; border-radius: 6px; overflow: hidden; }
.live-item__thumb img { width: 100%; height: 82px; object-fit: cover; display: block; border-radius: 6px; }
@media (max-width: 600px) { .live-item { grid-template-columns: 55px 1fr; } .live-item__thumb { display: none; } }
.live-sidebar { display: flex; flex-direction: column; gap: 1.25rem; }
.live-sidebar__card { background: #f9f9f9; border-radius: 10px; padding: 1rem; border: 1px solid #ebebeb; }
.live-sidebar__heading { font-size: 0.8rem; font-weight: 800; letter-spacing: 0.08em; color: #bb1919; margin: 0 0 0.75rem; padding-block-end: 0.5rem; border-block-end: 2px solid #bb1919; }
.live-sidebar__item + .live-sidebar__item { margin-block-start: 0.6rem; }
.live-sidebar__link { display: flex; flex-direction: column; gap: 0.15rem; text-decoration: none; color: inherit; }
.live-sidebar__link:hover .live-sidebar__title { color: #bb1919; }
.live-sidebar__cat { font-size: 0.65rem; font-weight: 700; color: #bb1919; letter-spacing: 0.05em; }
.live-sidebar__title { font-size: 0.82rem; font-weight: 600; line-height: 1.35; color: #222; transition: color 0.2s; }
.live-sidebar__cats { display: flex; flex-direction: column; gap: 0.4rem; }
.live-sidebar__cat-link { display: block; padding: 0.4rem 0.6rem; border-radius: 6px; font-size: 0.82rem; font-weight: 600; color: #333; text-decoration: none; transition: background 0.2s, color 0.2s; }
.live-sidebar__cat-link:hover { background: #bb1919; color: #fff; }
