/* ═══════════════════════════════════════════════════════════════════
   JoyA Design System — Time
   ═══════════════════════════════════════════════════════════════════ */

/* ── Dasha ──────────────────────────────────────────────────────── */

.dasha-current {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.dasha-box {
    padding: 0.75rem 1rem;
    background: var(--bg-input);
    border-radius: var(--radius-sm);
    border-left: 3px solid var(--accent);
}

.dasha-box__label {
    font-size: 0.65rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.dasha-box__value {
    font-size: 1rem;
    font-weight: 600;
    margin-top: 0.2rem;
}

.dasha-box__dates {
    font-size: 0.72rem;
    color: var(--text-secondary);
    font-family: var(--font-mono);
    margin-top: 0.15rem;
}

/* ── Dasha Timeline ────────────────────────────────────────────── */

.dasha-timeline {
    display: flex;
    position: relative;
    height: 48px;
    border-radius: 8px;
    overflow: visible;
    margin-bottom: 1rem;
    margin-top: 1rem;
    background: var(--bg-input);
}

.dasha-seg {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: var(--seg-color);
    opacity: 0.85;
    cursor: pointer;
    transition: opacity 0.2s, filter 0.2s;
    overflow: hidden;
    border-right: 1px solid rgba(0, 0, 0, 0.2);
    min-width: 0;
}

.dasha-seg:last-child {
    border-right: none;
}

.dasha-seg:hover {
    opacity: 1;
    filter: brightness(1.2);
}

.dasha-seg--past {
    opacity: 0.35;
}

.dasha-seg--active {
    opacity: 1;
    box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.4);
    animation: dasha-pulse 2s ease-in-out infinite;
}

.dasha-seg--selected {
    opacity: 1;
    box-shadow: inset 0 0 0 2px var(--accent);
}

@keyframes dasha-pulse {

    0%,
    100% {
        filter: brightness(1);
    }

    50% {
        filter: brightness(1.25);
    }
}

.dasha-seg__label {
    font-size: 0.7rem;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
    line-height: 1;
    white-space: nowrap;
}

.dasha-seg__years {
    font-size: 0.55rem;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
    font-family: var(--font-mono);
    white-space: nowrap;
    margin-top: 2px;
}

/* Now marker */
.dasha-now-marker {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #fff;
    z-index: 10;
    box-shadow: 0 0 6px rgba(255, 255, 255, 0.6);
    pointer-events: none;
}

.dasha-now-marker::before {
    content: "▼";
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 10px;
    color: #fff;
}

/* CRM Life Event Markers on Timeline */
.dasha-crm-marker {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 0;
    z-index: 8;
    pointer-events: auto;
    cursor: help;
}

.dasha-crm-marker__line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 1px;
    background: var(--accent);
    opacity: 0.7;
    border-left: 1px dashed var(--accent);
}

.dasha-crm-marker__label {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-2px);
    font-size: 0.5rem;
    color: var(--accent);
    white-space: nowrap;
    background: rgba(0, 0, 0, 0.7);
    padding: 1px 4px;
    border-radius: 3px;
    pointer-events: none;
    font-weight: 600;
    letter-spacing: 0.02em;
    max-width: 80px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dasha-crm-marker:hover .dasha-crm-marker__line {
    opacity: 1;
    width: 2px;
}

.dasha-crm-marker:hover .dasha-crm-marker__label {
    max-width: none;
    z-index: 20;
}

/* Antardasha panel */
.dasha-detail {
    margin-top: 0.5rem;
}

.antd-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.antd-header__dates {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--text-muted);
}

.antd-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 0.4rem;
}

.antd-item {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    padding: clamp(0.25rem, 1vw, 0.4rem) clamp(0.35rem, 1.5vw, 0.6rem);
    background: var(--bg-input);
    border-radius: 6px;
    font-size: clamp(0.6rem, 2.2vw, 0.72rem);
    transition: background 0.2s;
    min-width: 0;
    overflow: hidden;
}

.antd-item--past {
    opacity: 0.8;
}

.antd-item--active {
    background: rgba(245, 189, 65, 0.1);
    border: 1px solid rgba(245, 189, 65, 0.3);
    font-weight: 600;
}

.antd-item__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.antd-item__lord {
    font-weight: 600;
    white-space: nowrap;
    flex-shrink: 0;
}

.antd-item__dates {
    font-family: var(--font-mono);
    font-size: 0.62rem;
    color: var(--text-secondary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 0;
}

.antd-item__expand {
    margin-left: auto;
    font-size: 0.6rem;
    color: var(--text-muted);
    transition: transform 0.2s;
}

.antd-item--selected .antd-item__expand {
    transform: rotate(180deg);
    color: var(--accent);
}

.antd-item--selected {
    background: rgba(245, 189, 65, 0.12);
    border: 1px solid rgba(245, 189, 65, 0.4);
}

/* Dasha progress bar */
.dasha-progress {
    height: 4px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 2px;
    margin-top: 0.4rem;
    overflow: hidden;
}

.dasha-progress__bar {
    height: 100%;
    border-radius: 2px;
    transition: width 1s ease;
}

.dasha-progress__info {
    font-size: 0.7rem;
    color: var(--text-secondary);
    margin-top: 0.25rem;
    font-family: var(--font-mono);
    opacity: 0.9;
}

/* Dasha period description */
.dasha-desc {
    font-size: 0.75rem;
    color: var(--text-secondary);
    padding: 0.5rem 0.75rem;
    background: rgba(245, 189, 65, 0.04);
    border-left: 2px solid rgba(245, 189, 65, 0.3);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin-bottom: 1rem;
    line-height: 1.5;
}

/* Pratyantardasha panel (3rd level) */
.pad-panel {
    margin-top: 0.5rem;
}

.pantd-header {
    font-size: 0.72rem;
    color: var(--text-secondary);
    margin-bottom: 0.4rem;
    padding: 0.3rem 0;
    border-bottom: 1px solid var(--border);
}

.pantd-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 0.3rem;
}

.pantd-item {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    padding: clamp(0.2rem, 1vw, 0.3rem) clamp(0.3rem, 1vw, 0.5rem);
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    font-size: clamp(0.5rem, 2vw, 0.65rem);
    transition: background 0.2s;
    min-width: 0;
    overflow: hidden;
}

.pantd-item--past {
    opacity: 0.8;
}

.pantd-item--active {
    background: rgba(245, 189, 65, 0.08);
    border: 1px solid rgba(245, 189, 65, 0.25);
    font-weight: 600;
}

.pantd-item__dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    flex-shrink: 0;
}

.pantd-item__lord {
    font-weight: 600;
    white-space: nowrap;
    flex-shrink: 0;
}

.pantd-item__dates {
    font-family: var(--font-mono);
    font-size: 0.58rem;
    color: var(--text-secondary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 0;
}

.pantd-item__days {
    margin-left: auto;
    font-family: var(--font-mono);
    font-size: 0.62rem;
    color: var(--text-secondary);
}

/* ── Highlights ──────────────────────────────────────────────────── */
.transit-highlights {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 1.5rem;
}

.transit-highlight {
    padding: 10px 14px;
    background: linear-gradient(135deg, var(--surface-2), var(--surface));
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 0.85rem;
    line-height: 1.5;
    color: var(--text-primary);
}

/* ── Sade-Sati Banner ────────────────────────────────────────────── */
.transit-sade-sati {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 18px;
    background: linear-gradient(135deg, rgba(255, 59, 48, 0.12), rgba(255, 149, 0, 0.08));
    border: 1px solid rgba(255, 59, 48, 0.35);
    border-left: 4px solid #ff3b30;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    font-size: 0.88rem;
}

.transit-sade-sati__icon {
    font-size: 1.8rem;
    flex-shrink: 0;
}

/* ── Transit Table ───────────────────────────────────────────────── */
.transit-table th {
    background: var(--surface-2);
    color: var(--accent);
    font-weight: 600;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.transit-table td {
    font-size: 0.85rem;
}

/* ── Houses Grid ─────────────────────────────────────────────────── */
.transit-houses-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-bottom: 1.5rem;
}

.transit-house {
    padding: 12px 10px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid var(--border);
    background: var(--surface);
    transition: transform 0.2s, box-shadow 0.2s;
}

.transit-house:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.transit-house__num {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-muted);
    line-height: 1;
}

.transit-house__sign {
    font-size: 0.72rem;
    color: var(--text-muted);
    margin: 2px 0;
}

.transit-house__planets {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-primary);
    min-height: 1.2em;
    margin: 4px 0;
}

.transit-house__sig {
    font-size: 0.65rem;
    color: var(--text-muted);
    opacity: 0.7;
    line-height: 1.3;
}

/* House nature colors */
.house--favorable {
    border-color: rgba(52, 199, 89, 0.5);
    background: linear-gradient(135deg, rgba(52, 199, 89, 0.08), var(--surface));
}

.house--favorable .transit-house__num {
    color: #34c759;
}

.house--challenging {
    border-color: rgba(255, 59, 48, 0.4);
    background: linear-gradient(135deg, rgba(255, 59, 48, 0.08), var(--surface));
}

.house--challenging .transit-house__num {
    color: #ff3b30;
}

.house--neutral {
    border-color: rgba(255, 204, 0, 0.4);
    background: linear-gradient(135deg, rgba(255, 204, 0, 0.06), var(--surface));
}

.house--neutral .transit-house__num {
    color: #ffcc00;
}

.house--empty {
    opacity: 0.5;
}

/* ── Aspects ─────────────────────────────────────────────────────── */
.transit-aspects {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 8px;
    margin-bottom: 1.5rem;
}

.transit-aspect {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 8px;
    border: 1px solid var(--border);
    background: var(--surface);
    font-size: 0.85rem;
}

.transit-aspect__symbol {
    font-size: 1.3rem;
    flex-shrink: 0;
    width: 28px;
    text-align: center;
}

.transit-aspect__body {
    flex: 1;
    color: var(--text-primary);
    line-height: 1.4;
}

.transit-aspect__orb {
    color: var(--text-muted);
    font-size: 0.75rem;
    margin-left: 4px;
}

/* Aspect nature */
.aspect--favorable {
    border-left: 3px solid #34c759;
}

.aspect--challenging {
    border-left: 3px solid #ff3b30;
}

.aspect--neutral {
    border-left: 3px solid #ffcc00;
}

/* ── Transit Summary ─────────────────────────────────────────────── */
.transit-summary {
    margin-top: 1.5rem;
}

.transit-summary__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 12px;
}

.transit-summary__card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 14px 12px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 10px;
    text-align: center;
}

.transit-summary__dot {
    font-size: 1.4rem;
    line-height: 1;
}

.transit-summary__label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    font-weight: 600;
}

.transit-summary__value {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-primary);
}

.transit-summary__note {
    padding: 8px 14px;
    background: rgba(255, 149, 0, 0.1);
    border: 1px solid rgba(255, 149, 0, 0.3);
    border-radius: 8px;
    font-size: 0.82rem;
    color: #ff9500;
    text-align: center;
    margin-bottom: 12px;
}

.transit-summary__verdict {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 20px;
    background: linear-gradient(135deg, var(--surface-2), var(--surface));
    border: 1px solid var(--accent-dim, var(--border));
    border-radius: 12px;
}

.transit-summary__emoji {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.transit-summary__text {
    font-size: 0.92rem;
    color: var(--text-primary);
    font-weight: 600;
    line-height: 1.4;
}


/* ══════════════════════════════════════════════════════════════════
   Varshaphala (Solar Return) — Overview Cards
   ══════════════════════════════════════════════════════════════════ */

.vp-overview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.vp-overview__card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1rem;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
}

.vp-overview__card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.vp-overview__icon {
    font-size: 1.5rem;
    margin-bottom: 0.3rem;
}

.vp-overview__label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    margin-bottom: 0.2rem;
}

.vp-overview__value {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    font-family: var(--font-display, 'Cormorant Garamond', serif);
}

.vp-overview__sub {
    font-size: 0.72rem;
    color: var(--text-muted);
    margin-top: 0.2rem;
}


/* Muntha note */
.vp-muntha-note {
    margin: 0.75rem 0;
    padding: 0.75rem 1rem;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}


/* Natal planets overlay in house cards */
.transit-house__natal {
    font-size: 0.65rem;
    color: var(--accent);
    opacity: 0.8;
    margin-top: 0.2rem;
    font-style: italic;
}

/* ═══════════════════════════════════════════════════════════════════
   SYNASTRY — Chart Comparison Styles
   ═══════════════════════════════════════════════════════════════════ */

.syn-import-btns {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 1.25rem;
}

.syn-import-btns .btn {
    font-size: 0.78rem;
    padding: 0.35rem 0.75rem;
}

.syn-score-section {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
}

.syn-score-gauge {
    flex-shrink: 0;
}

.syn-score-breakdown h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 0.75rem;
}

.syn-breakdown-items {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.5rem;
}

.syn-breakdown-items span {
    font-size: 0.82rem;
    color: var(--text-secondary);
}

.syn-breakdown-items b {
    color: var(--text-primary);
}

.syn-dual-charts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.syn-chart-card {
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    padding: 1rem 1.25rem;
}

.syn-chart-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--accent);
    margin: 0 0 0.25rem;
}

.syn-chart-subtitle {
    font-size: 0.78rem;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
}

.syn-planet-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.8rem;
}

.syn-planet-table th {
    text-align: left;
    padding: 0.4rem 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.syn-planet-table td {
    padding: 0.35rem 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    color: var(--text-primary);
}

.syn-dig-good {
    color: var(--color-favorable) !important;
}

.syn-dig-bad {
    color: var(--color-challenging) !important;
}

.syn-section {
    margin-bottom: 1.5rem;
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
}

.syn-section h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 1rem;
}

.syn-pairs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 0.75rem;
}

.syn-pair-card {
    padding: 0.85rem 1rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.02);
    transition: transform 0.15s, box-shadow 0.15s;
}

.syn-pair-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.syn-pair-title {
    font-weight: 700;
    font-size: 0.88rem;
    color: var(--text-primary);
    margin-bottom: 0.2rem;
}

.syn-pair-stars {
    font-size: 0.75rem;
    color: var(--warning);
    margin-bottom: 0.3rem;
}

.syn-pair-aspect {
    font-size: 0.78rem;
    font-weight: 600;
    margin-bottom: 0.35rem;
}

.syn-pair-desc {
    font-size: 0.72rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

.syn-pair--good {
    border-color: color-mix(in srgb, var(--color-favorable) 20%, transparent);
}

.syn-pair--good .syn-pair-aspect {
    color: var(--color-favorable);
}

.syn-pair--bad {
    border-color: color-mix(in srgb, var(--color-challenging) 20%, transparent);
}

.syn-pair--bad .syn-pair-aspect {
    color: var(--color-challenging);
}

.syn-pair--neutral .syn-pair-aspect {
    color: var(--warning);
}

.syn-pair--none .syn-pair-aspect {
    color: var(--text-secondary);
}

.syn-aspects-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.82rem;
}

.syn-aspects-table th {
    text-align: left;
    padding: 0.45rem 0.6rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.72rem;
    text-transform: uppercase;
}

.syn-aspects-table td {
    padding: 0.4rem 0.6rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.syn-asp-symbol {
    font-size: 1.1rem;
    text-align: center;
}

.syn-asp-good td {
    color: var(--color-favorable);
}

.syn-asp-bad td {
    color: var(--color-challenging);
}

.syn-asp-neutral td {
    color: var(--warning);
}

.syn-elem-grid {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.syn-elem-bar {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.syn-elem-label {
    width: 100px;
    font-size: 0.82rem;
    color: var(--text-secondary);
    flex-shrink: 0;
}

.syn-elem-bars {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.syn-elem-fill {
    height: 20px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    padding-left: 8px;
    min-width: 24px;
    transition: width 0.6s ease;
}

.syn-elem-fill--a {
    background: linear-gradient(90deg, rgba(251, 191, 36, 0.3), rgba(251, 191, 36, 0.15));
    color: var(--warning);
}

.syn-elem-fill--b {
    background: linear-gradient(90deg, rgba(99, 102, 241, 0.3), rgba(99, 102, 241, 0.15));
    color: var(--color-purple);
}

.syn-elem-legend {
    display: flex;
    gap: 1.5rem;
    margin-top: 0.5rem;
    font-size: 0.78rem;
    color: var(--text-secondary);
}

.syn-legend-a {
    color: var(--warning);
}

.syn-legend-b {
    color: var(--color-purple);
}

.syn-conclusion {
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
}

.syn-conclusion-header {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.75rem;
}

.syn-conclusion-emoji {
    font-size: 1.6rem;
}

.syn-conclusion-header h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.syn-conclusion-text {
    font-size: 0.9rem;
    color: var(--text-primary);
    line-height: 1.6;
    margin: 0 0 0.5rem;
}

.syn-conclusion-aspects {
    font-size: 0.82rem;
    color: var(--text-secondary);
    margin: 0 0 0.35rem;
}

.syn-conclusion-elements {
    font-size: 0.82rem;
    color: var(--text-secondary);
    margin: 0 0 1rem;
}

.syn-conclusion-list {
    margin-bottom: 0.75rem;
    padding: 0.85rem 1rem;
    border-radius: 10px;
    background: color-mix(in srgb, var(--color-favorable) 6%, transparent);
    border-left: 3px solid var(--color-favorable);
}

.syn-conclusion-list--warn {
    background: color-mix(in srgb, var(--color-challenging) 6%, transparent);
    border-left-color: var(--color-challenging);
}

.syn-conclusion-list--info {
    background: color-mix(in srgb, var(--accent) 6%, transparent);
    border-left-color: var(--accent);
}

.syn-conclusion-list h4 {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 0.4rem;
}

.syn-conclusion-list ul {
    margin: 0;
    padding: 0 0 0 1.2rem;
}

.syn-conclusion-list li {
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.55;
    margin-bottom: 0.15rem;
}
/* ── Karmic Nodes (Rahu/Ketu Vector) ─────────────────────────────── */
.syn-karmic {
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.06), rgba(20, 20, 30, 0.4));
    border: 1px solid rgba(139, 92, 246, 0.15);
    border-radius: 16px;
}

.syn-karmic h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-purple-soft);
    margin: 0 0 0.35rem;
}

.syn-karmic__subtitle {
    font-size: 0.78rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.syn-karmic-grid {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.syn-karmic-card {
    display: flex;
    gap: 0.85rem;
    padding: 0.85rem 1rem;
    border-radius: 12px;
    border: 1px solid rgba(139, 92, 246, 0.12);
    background: rgba(139, 92, 246, 0.04);
    transition: transform 0.15s, box-shadow 0.15s, background 0.2s;
    align-items: flex-start;
}

.syn-karmic-card:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.15);
    background: rgba(139, 92, 246, 0.08);
}

.syn-karmic-card--sev5 { border-left: 3px solid var(--danger); }
.syn-karmic-card--sev4 { border-left: 3px solid var(--warning-alt); }
.syn-karmic-card--sev3 { border-left: 3px solid var(--color-purple-soft); }
.syn-karmic-card--sev2 { border-left: 3px solid #6366f1; }
.syn-karmic-card--sev1 { border-left: 3px solid #64748b; }

.syn-karmic-sev {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.15rem;
    min-width: 38px;
}

.syn-karmic-sev__dots {
    display: flex;
    gap: 2px;
}

.syn-karmic-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
}

.syn-karmic-dot--active {
    background: var(--color-purple-soft);
}

.syn-karmic-card--sev5 .syn-karmic-dot--active { background: var(--danger); }
.syn-karmic-card--sev4 .syn-karmic-dot--active { background: var(--warning-alt); }

.syn-karmic-sev__label {
    font-size: 0.58rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.syn-karmic-body {
    flex: 1;
    min-width: 0;
}

.syn-karmic-body__title {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.15rem;
}

.syn-karmic-body__aspect {
    font-size: 0.72rem;
    color: var(--text-secondary);
    margin-bottom: 0.35rem;
}

.syn-karmic-body__aspect strong {
    color: var(--color-purple-soft);
}

.syn-karmic-body__text {
    font-size: 0.8rem;
    color: var(--text-primary);
    opacity: 0.9;
    line-height: 1.55;
}

.syn-karmic-badge {
    flex-shrink: 0;
    padding: 0.2rem 0.5rem;
    border-radius: 6px;
    font-size: 0.62rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    align-self: flex-start;
    margin-top: 0.1rem;
}

.syn-karmic-badge--past_life     { background: rgba(139,92,246,0.15); color: #c4b5fd; }
.syn-karmic-badge--obsession     { background: rgba(239,68,68,0.12); color: var(--color-mrityu); }
.syn-karmic-badge--destiny       { background: rgba(245,158,11,0.12); color: #fcd34d; }
.syn-karmic-badge--spiritual     { background: rgba(52,211,153,0.12); color: #6ee7b7; }
.syn-karmic-badge--karmic_bond   { background: rgba(99,102,241,0.12); color: #a5b4fc; }

.syn-karmic-empty {
    text-align: center;
    padding: 1rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    font-style: italic;
}

/* ═══════════════════════════════════════════════════════════════════
   Muhurta
   ═══════════════════════════════════════════════════════════════════ */

.muh-top { display: flex; gap: 1.5rem; align-items: flex-start; margin: 1.25rem 0; }
.muh-gauge { flex-shrink: 0; }
.muh-panchanga { flex: 1; min-width: 0; }
.muh-panch-table { width: 100%; border-collapse: collapse; }
.muh-panch-table td { padding: 0.4rem 0.5rem; border-bottom: 1px solid var(--border); font-size: 0.82rem; }
.muh-panch-icon { font-size: 1rem; width: 28px; text-align: center; }
.muh-panch-label { font-weight: 600; color: var(--accent); white-space: nowrap; width: 80px; }
.muh-panch-q { text-align: right; font-size: 0.72rem; color: var(--text-secondary); text-transform: capitalize; }
.muh-good { color: var(--success) !important; font-weight: 700; }
.muh-bad { color: var(--danger) !important; font-weight: 700; }

.muh-periods {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: 0.6rem; margin: 1rem 0;
}
.muh-period {
    display: flex; align-items: center; gap: 0.6rem;
    padding: 0.65rem 0.85rem; border-radius: 10px;
    font-size: 0.78rem; line-height: 1.4;
}
.muh-period--bad { background: rgba(239,68,68,0.07); border: 1px solid rgba(239,68,68,0.2); }
.muh-period--good { background: rgba(34,197,94,0.07); border: 1px solid rgba(34,197,94,0.2); }
.muh-period-icon { font-size: 1.3rem; }

.muh-breakdown { margin: 1.25rem 0; }
.muh-breakdown h4 { font-size: 0.9rem; margin-bottom: 0.75rem; color: var(--text-primary); }
.muh-bar-row { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.4rem; }
.muh-bar-label { width: 90px; font-size: 0.75rem; color: var(--text-secondary); flex-shrink: 0; }
.muh-bar { flex: 1; height: 14px; background: rgba(255,255,255,0.04); border-radius: 7px; overflow: hidden; }
.muh-bar-fill { height: 100%; border-radius: 7px; transition: width 0.8s ease; }
.muh-bar-val { width: 32px; text-align: right; font-size: 0.72rem; font-weight: 600; color: var(--text-primary); }

.muh-hora { margin: 1.25rem 0; }
.muh-hora h4 { font-size: 0.9rem; margin-bottom: 0.75rem; }
.muh-hora-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.muh-hora-table { width: 100%; border-collapse: collapse; font-size: 0.78rem; }
.muh-hora-table th { padding: 0.4rem 0.6rem; text-align: left; border-bottom: 2px solid var(--border); font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--text-secondary); }
.muh-hora-table td { padding: 0.35rem 0.6rem; border-bottom: 1px solid var(--border); }
.muh-hora-night { opacity: 0.55; }

.muh-top5 { margin: 1.25rem 0; }
.muh-top5 h4 { font-size: 0.9rem; margin-bottom: 0.75rem; }
.muh-top5-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 0.6rem; }
.muh-top5-card {
    background: rgba(255,255,255,0.03); border-radius: 10px; padding: 0.75rem 1rem;
    display: grid; grid-template-columns: auto 1fr auto; grid-template-rows: auto auto;
    gap: 0.15rem 0.6rem; align-items: center;
}
.muh-top5-rank { grid-row: 1/3; font-size: 1.3rem; font-weight: 800; color: var(--accent); opacity: 0.5; }
.muh-top5-date { font-size: 0.85rem; font-weight: 600; }
.muh-top5-weekday { font-size: 0.72rem; color: var(--text-secondary); }
.muh-top5-score { grid-row: 1/3; font-size: 1.4rem; font-weight: 800; }
.muh-top5-details { grid-column: 2/4; font-size: 0.68rem; color: var(--text-secondary); margin-top: 0.15rem; }

.muh-calendar { margin: 1.25rem 0; }
.muh-calendar h4 { font-size: 0.9rem; margin-bottom: 0.75rem; }
.muh-cal-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(48px, 1fr));
    gap: 4px;
}
.muh-cal-day {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    padding: 0.35rem 0.2rem; border-radius: 6px; border: 1px solid;
    cursor: default; transition: transform 0.15s;
}
.muh-cal-day:hover { transform: scale(1.1); z-index: 2; }
.muh-cal-dd { font-size: 0.8rem; font-weight: 600; color: var(--text-primary); }
.muh-cal-score { font-size: 0.6rem; font-weight: 700; }

/* ── Maha Doshas ──────────────────────────────────────────────────── */
.muh-doshas { margin: 1.25rem 0; }
.muh-doshas h4 { font-size: 0.9rem; margin-bottom: 0.75rem; color: var(--text-primary); }
.muh-dosha-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 0.5rem;
}
.muh-dosha-item {
    display: flex; align-items: flex-start; gap: 0.5rem;
    padding: 0.6rem 0.8rem; border-radius: 8px;
    background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.05);
    font-size: 0.8rem; line-height: 1.4; transition: background 0.2s;
}
.muh-dosha-item:hover { background: rgba(255,255,255,0.05); }
.muh-dosha-icon { font-size: 1rem; flex-shrink: 0; margin-top: 0.1rem; }

.muh-dosha-summary {
    display: flex; flex-wrap: wrap; gap: 1.5rem; margin: 0.75rem 0;
    padding: 0.6rem 1rem; background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06); border-radius: 10px;
    font-size: 0.82rem; color: var(--text-secondary);
}

.muh-neutralization { margin: 1.25rem 0; }
.muh-neutralization h4 { font-size: 0.9rem; margin-bottom: 0.75rem; color: var(--text-primary); }
.muh-neutral-item {
    display: flex; align-items: flex-start; gap: 0.5rem;
    padding: 0.55rem 0.8rem; margin-bottom: 0.4rem; border-radius: 8px;
    background: rgba(34,197,94,0.05); border: 1px solid rgba(34,197,94,0.15);
    font-size: 0.8rem; line-height: 1.4;
}
.muh-neutral-icon { font-size: 0.9rem; flex-shrink: 0; margin-top: 0.1rem; }

/* ── Monthly Panchanga Calendar ───────────────────────────────────── */
.muh-month-cal { overflow-x: auto; margin: 1rem 0; -webkit-overflow-scrolling: touch; }
.muh-month-table {
    width: 100%; border-collapse: separate; border-spacing: 3px;
    table-layout: fixed; min-width: 700px;
}
.muh-month-table th {
    padding: 0.5rem 0.25rem; font-size: 0.72rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.05em;
    color: var(--text-secondary); text-align: center;
    background: rgba(255,255,255,0.03);
}
.muh-month-empty { background: transparent; }
.muh-month-cell {
    padding: 0.4rem 0.3rem; border-radius: 8px; vertical-align: top;
    border: 1px solid; cursor: default; transition: transform 0.15s, box-shadow 0.15s;
    text-align: center; min-height: 90px;
}
.muh-month-cell:hover { transform: scale(1.04); z-index: 2; box-shadow: 0 4px 16px rgba(0,0,0,0.3); }
.muh-month-day { font-size: 1.1rem; font-weight: 800; color: var(--text-primary); line-height: 1; }
.muh-month-score { font-size: 0.9rem; font-weight: 800; line-height: 1.2; margin: 2px 0; }
.muh-month-tithi { font-size: 0.62rem; color: var(--text-secondary); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.muh-month-nak { font-size: 0.58rem; color: var(--text-muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.muh-month-yoga { font-size: 0.55rem; color: var(--text-muted); opacity: 0.7; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.muh-month-meta { font-size: 0.55rem; color: var(--text-muted); margin-top: 2px; }
.muh-month-dosha { color: var(--danger); font-weight: 700; }

.muh-month-legend {
    display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center;
    margin: 0.75rem 0; padding: 0.5rem 1rem;
    background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.05);
    border-radius: 8px; font-size: 0.75rem; color: var(--text-secondary);
}

/* ═══════════════════════════════════════════════════════════════════
   RESPONSIVE — Mobile Adaptation
   ═══════════════════════════════════════════════════════════════════ */



/* ── Refactored from transits.js ── */
.transit-sade-sati { background:rgba(153,77,77,0.08); border:1px solid rgba(153,77,77,0.2); border-left:4px solid transparent; }
.transit-sade-sati__desc { margin:4px 0 0; font-size:0.82rem; opacity:0.9; line-height:1.4; }
.transit-summary { margin-top:2rem; padding:1.5rem; background:linear-gradient(135deg, rgba(181,137,47,0.08) 0%, rgba(20,20,20,0.4) 100%); border:1px solid rgba(181,137,47,0.2); border-radius:16px; }
.transit-section-title--summary { margin-top:0; color:var(--accent); border-bottom:1px solid rgba(181,137,47,0.1); padding-bottom:0.75rem; }
.transit-summary__grid { display:grid; grid-template-columns:1fr 1fr; gap:1rem; margin:1rem 0; }
.transit-summary__card { padding:0.75rem; background:rgba(255,255,255,0.02); border-radius:8px; border:1px solid transparent; }
.transit-summary__card--good { border-color: rgba(91,140,133,0.2); }
.transit-summary__card--bad { border-color: rgba(153,77,77,0.2); }
.transit-summary__card-title { font-size:0.7rem; text-transform:uppercase; letter-spacing:1px; margin-bottom:0.3rem; }
.transit-summary__card-title--good { color: var(--color-favorable); }
.transit-summary__card-title--bad { color: var(--color-challenging); }
.transit-summary__card-val { font-size:0.85rem; color:var(--text-primary); }
.transit-summary__verdict { display:flex; align-items:center; gap:1rem; padding:1rem; background:rgba(255,255,255,0.03); border-radius:12px; border:1px solid rgba(255,255,255,0.05); }
.transit-summary__emoji { font-size:1.5rem; filter:sepia(1) saturate(1.5); }
.transit-summary__text { font-size:0.9rem; color:var(--text-secondary); line-height:1.5; }
.transit-aspect { padding:0.6rem 0.8rem; background:rgba(255,255,255,0.02); border:1px solid rgba(255,255,255,0.05); border-left:2px solid transparent; border-radius:4px; display:flex; align-items:center; gap:0.75rem; }
.transit-aspect--detailed { padding:0.75rem 1rem; align-items:flex-start; }
.transit-aspect__icon { font-size:1.2rem; opacity:0.8; }
.transit-aspect__icon--small { font-size:1.1rem; }
.transit-aspect__desc { font-size:0.8rem; color:var(--text-secondary); line-height:1.4; }
.transit-aspect__desc--detailed { font-size:0.82rem; line-height:1.5; }
.vp-header-card { margin-bottom:1.5rem; padding:1.25rem; background:linear-gradient(135deg, rgba(181,137,47,0.12) 0%, rgba(20,20,20,0.4) 100%); border:1px solid rgba(181,137,47,0.2); border-radius:16px; box-shadow:0 8px 32px rgba(0,0,0,0.2); }
.vp-title { font-size:1.3rem; font-weight:700; color:var(--accent); margin-bottom:0.75rem; letter-spacing:0.5px; }
.vp-title__age { font-weight:400; opacity:0.7; }
.vp-meta { display:flex; flex-wrap:wrap; gap:1.5rem; font-size:0.82rem; color:var(--text-secondary); }
.vp-section-card { padding:1rem; background:rgba(255,255,255,0.02); border:1px solid rgba(255,255,255,0.05); border-top:3px solid var(--accent); border-radius:0 0 12px 12px; box-shadow:0 4px 12px rgba(0,0,0,0.1); }
.mb-4 { margin-bottom: 1.25rem; }

/* ═══════════════════════════════════════════════════════════════════
   Dispositor Exchange (Cross-chart Receptions)
   ═══════════════════════════════════════════════════════════════════ */

.syn-dispositors {
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(245, 189, 65, 0.06), rgba(20, 20, 30, 0.4));
    border: 1px solid rgba(245, 189, 65, 0.15);
    border-radius: 16px;
}

.syn-dispositors h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--accent-light);
    margin: 0 0 0.35rem;
}

.syn-dispositors__subtitle {
    font-size: 0.78rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.syn-dispositors-grid {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.syn-disp-card {
    padding: 0.85rem 1rem;
    border-radius: 12px;
    border: 1px solid rgba(245, 189, 65, 0.12);
    background: rgba(245, 189, 65, 0.04);
    transition: transform 0.15s, box-shadow 0.15s, background 0.2s;
}

.syn-disp-card:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(245, 189, 65, 0.15);
    background: rgba(245, 189, 65, 0.08);
}

.syn-disp-card--mutual {
    border-color: rgba(245, 189, 65, 0.4);
    border-width: 2px;
    background: rgba(245, 189, 65, 0.08);
    box-shadow: 0 0 12px rgba(245, 189, 65, 0.08);
}

.syn-disp-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.25rem;
}

.syn-disp-icon {
    font-size: 1.1rem;
    color: var(--accent-light);
}

.syn-disp-title {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--text-primary);
    flex: 1;
}

.syn-disp-dots {
    display: flex;
    gap: 3px;
}

.syn-disp-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
}

.syn-disp-dot--active {
    background: var(--accent-light);
}

.syn-disp-dir {
    font-size: 0.72rem;
    color: var(--accent-light);
    font-weight: 600;
    margin-bottom: 0.3rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.syn-disp-body {
    font-size: 0.82rem;
    color: var(--text-primary);
    opacity: 0.95;
    margin-bottom: 0.25rem;
}

.syn-disp-interp {
    font-size: 0.78rem;
    color: var(--text-primary);
    opacity: 0.9;
    line-height: 1.5;
}

/* ═══════════════════════════════════════════════════════════════════
   BAV Donor Coefficient
   ═══════════════════════════════════════════════════════════════════ */

.bav-donor-section .ext-subtitle {
    font-size: 0.78rem;
    color: var(--text-secondary);
    margin: 0 0 0.75rem;
    line-height: 1.4;
}

.bav-dual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.bav-direction {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 1rem;
}

.bav-direction h4 {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 0.75rem;
}

.bav-coeff-bar {
    position: relative;
    height: 22px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 11px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.bav-coeff-fill {
    height: 100%;
    border-radius: 11px;
    transition: width 0.8s ease;
    min-width: 2px;
}

.bav-coeff-label {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--text-primary);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.bav-stats {
    display: flex;
    gap: 1rem;
    margin-bottom: 0.75rem;
    font-size: 0.78rem;
}

.bav-stat--donor  { color: var(--success); }
.bav-stat--neutral { color: var(--text-secondary); }
.bav-stat--vampire { color: var(--color-challenging); }

.bav-table {
    font-size: 0.78rem !important;
}

.bav-table tr.bav-donor  { border-left: 3px solid var(--success); }
.bav-table tr.bav-vampire { border-left: 3px solid var(--color-challenging); }
.bav-table tr.bav-neutral { border-left: 3px solid transparent; }

.bav-table tr.bav-donor td:last-child  { color: var(--success); }
.bav-table tr.bav-vampire td:last-child { color: var(--color-challenging); }
.bav-table tr.bav-neutral td:last-child { color: var(--text-secondary); }

/* ═══════════════════════════════════════════════════════════════════
   Bhava Chalit (Sripati)
   ═══════════════════════════════════════════════════════════════════ */

.syn-chalit {
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.06), rgba(20, 20, 30, 0.4));
    border: 1px solid rgba(99, 102, 241, 0.15);
    border-radius: 16px;
}

.syn-chalit h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-purple);
    margin: 0 0 0.35rem;
}

.syn-chalit__subtitle {
    font-size: 0.78rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.syn-chalit-verdict {
    padding: 0.65rem 1rem;
    background: rgba(99, 102, 241, 0.08);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 10px;
    font-size: 0.82rem;
    color: var(--color-purple);
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
}

.syn-chalit-verdict--ok {
    background: rgba(74, 222, 128, 0.06);
    border-color: rgba(74, 222, 128, 0.2);
    color: var(--success);
}

.syn-chalit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 0.65rem;
}

.syn-chalit-card {
    padding: 0.85rem 1rem;
    border-radius: 12px;
    border: 1px solid rgba(99, 102, 241, 0.12);
    background: rgba(99, 102, 241, 0.04);
    transition: transform 0.15s, box-shadow 0.15s;
}

.syn-chalit-card:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(99, 102, 241, 0.12);
}

.syn-chalit-card--shift {
    border-color: rgba(99, 102, 241, 0.3);
    background: rgba(99, 102, 241, 0.08);
}

.syn-chalit-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.3rem;
}

.syn-chalit-badge {
    font-size: 0.9rem;
}

.syn-chalit-owner {
    font-size: 0.72rem;
    color: var(--text-secondary);
    margin-left: auto;
}

.syn-chalit-shift {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--color-purple);
    margin-bottom: 0.25rem;
}

.syn-chalit-meaning {
    font-size: 0.78rem;
    color: var(--text-primary);
    opacity: 0.9;
    margin-bottom: 0.15rem;
}

.syn-chalit-note {
    font-size: 0.72rem;
    color: var(--text-primary);
    opacity: 0.8;
    line-height: 1.4;
}

/* ── Responsive: BAV dual columns stack on mobile ──────────────── */
@media (max-width: 768px) {
    .bav-dual {
        grid-template-columns: 1fr;
    }
    .syn-chalit-grid {
        grid-template-columns: 1fr;
    }
}

