/**
 * Horoscope Components Styles
 * 
 * Dedicated CSS file for horoscope-related components
 * Uses design system variables from velora-unified-theme.css
 */

/* Time-of-Day Horoscope Component */
.time-of-day-horoscope {
    margin: 0.75rem 0;
}

.time-segments-tabs {
    display: flex;
    gap: 0.375rem;
    margin-bottom: 0.75rem;
    background: var(--velora-bg-card, #ffffff);
    border: 1px solid var(--velora-border-light, #e5e7eb);
    border-radius: 12px;
    padding: 0.375rem;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    mask-image: linear-gradient(to right, transparent, black 20px, black calc(100% - 20px), transparent);
}

.time-segments-tabs::-webkit-scrollbar {
    display: none;
}

.time-segment-tab {
    padding: 0.625rem 1.25rem;
    background: transparent;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--velora-text-secondary, #6b7280);
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 36px;
    flex-shrink: 0;
    scroll-snap-align: start;
    white-space: nowrap;
}

.time-segment-tab:hover {
    background: rgba(0, 0, 0, 0.02);
    border: 1px solid var(--velora-border-light, #e5e7eb);
}

.time-segment-tab.active {
    background: var(--velora-bg-light, #f9fafb);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    color: var(--velora-text-primary, #1f2937);
    font-weight: 600;
    border-bottom: 2px solid var(--velora-primary, #6366f1);
}

.time-segment-tab:focus-visible {
    outline: 2px solid var(--velora-primary, #6366f1);
    outline-offset: 2px;
}

.time-segment-tab__icon {
    font-size: 0.75rem;
    opacity: 0.4;
}

.time-segment-tab .badge {
    background: var(--velora-primary, #6366f1);
    opacity: 0.9;
    color: white;
    padding: 0.125rem 0.375rem;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
}

.time-segment-panel {
    padding: 1.5rem;
    background: var(--velora-bg-card, #ffffff);
    border-radius: 8px;
    box-shadow: var(--velora-shadow-sm, 0 1px 2px 0 rgba(0, 0, 0, 0.05));
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.time-segment-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--velora-text-primary, #1f2937);
    margin: 0 0 0.5rem 0;
    padding-bottom: 0.375rem;
    border-bottom: 1px solid var(--velora-border-light, #e5e7eb);
}

.time-segment-text {
    font-size: var(--text-base);           /* 16-18px fluid */
    line-height: var(--line-height-relaxed); /* 1.8 */
    color: var(--ink-base);                /* Softer than pure black */
    max-width: var(--text-width-normal);   /* 65ch */
    margin: 0 auto;                        /* Center the reading column */
}

.time-segment-text p {
    margin-bottom: 1.5em;                  /* Gentle paragraph spacing */
}

.time-segment-text p:last-child {
    margin-bottom: 0;
}

/* Lead sentence style - first paragraph */
.time-segment-text p:first-of-type {
    font-size: var(--text-lg);             /* 18-20px - slightly larger */
    color: var(--ink-strong);              /* Slightly darker */
    font-weight: 500;                      /* Medium weight */
    margin-bottom: 2em;                    /* More space after lead */
}

/* Editorial Typography for Horoscope Text */
.horoscope-reading-text {
    font-size: var(--text-base);           /* 16-18px fluid */
    line-height: var(--line-height-relaxed); /* 1.8 */
    color: var(--ink-base);                /* Softer than pure black */
    max-width: var(--text-width-normal);   /* 65ch */
    margin: 0 auto;                        /* Center the reading column */
}

.horoscope-reading-text p {
    margin-bottom: 1.5em;                  /* Gentle paragraph spacing */
}

.horoscope-reading-text p:last-child {
    margin-bottom: 0;
}

/* Lead sentence style - first paragraph */
.horoscope-reading-text p:first-of-type {
    font-size: var(--text-lg);             /* 18-20px - slightly larger */
    color: var(--ink-strong);              /* Slightly darker */
    font-weight: 500;                      /* Medium weight */
    margin-bottom: 2em;                    /* More space after lead */
}

.astronomical-metadata {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--velora-border-light, #e5e7eb);
}

.astro-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--velora-bg-accent, #eef2ff);
    border: 1px solid var(--velora-border-light, #e5e7eb);
    border-radius: 0.5rem;
    font-size: 0.875rem;
    color: var(--velora-text-secondary, #6b7280);
    transition: all 0.2s ease;
}

.astro-meta-item:hover {
    background: var(--velora-bg-light, #f9fafb);
    border-color: var(--velora-border, #d1d5db);
}

.astro-meta-item i {
    color: var(--velora-primary, #6366f1);
    opacity: 0.8;
}

/* Dark mode variants for astro-meta-item */
[data-theme="dark"] .astro-meta-item {
    background: var(--velora-bg-accent-dark, rgba(99, 102, 241, 0.1));
    border-color: var(--velora-border-light-dark, #374151);
    color: var(--velora-text-secondary-dark, #9ca3af);
}

[data-theme="dark"] .astro-meta-item:hover {
    background: var(--velora-bg-light-dark, #1f2937);
    border-color: var(--velora-border-dark, #4b5563);
}

[data-theme="dark"] .astro-meta-item i {
    color: var(--velora-primary-dark, #818cf8);
    opacity: 0.8;
}

/* Moon Changes Timeline */
.moon-changes-timeline {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: var(--velora-bg-card, #ffffff);
    border-radius: 0.5rem;
    box-shadow: var(--velora-shadow-sm, 0 1px 2px 0 rgba(0, 0, 0, 0.05));
}

.moon-changes-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--velora-text-primary, #1f2937);
    margin: 0 0 1rem 0;
}

.moon-changes-title i {
    color: var(--velora-primary, #6366f1);
}

.moon-changes-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.moon-change-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: var(--velora-bg-light, #f9fafb);
    border-radius: 0.375rem;
}

.change-time {
    font-weight: 600;
    color: var(--velora-primary, #6366f1);
    font-size: 0.875rem;
}

.change-arrow {
    color: var(--velora-text-secondary, #6b7280);
    font-size: 1rem;
}

.change-sign {
    font-weight: 500;
    color: var(--velora-text-primary, #1f2937);
}

/* Daily horoscope sub-sections */
.horoscope-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.horoscope-category {
    padding: 0.75rem 1rem;
    background: var(--velora-bg-card, #ffffff);
    border-radius: 0.75rem;
    border-left: 3px solid var(--velora-primary, #6366f1);
    box-shadow: var(--velora-shadow-sm, 0 1px 2px rgba(15, 23, 42, 0.08));
}

.horoscope-category h4 {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    margin: 0 0 0.5rem 0;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--velora-text-primary, #1f2937);
}

.horoscope-category h4 i {
    color: var(--velora-primary, #6366f1);
}

.horoscope-category p {
    margin: 0;
    font-size: 0.925rem;
    color: var(--velora-text-secondary, #4b5563);
    line-height: 1.55;
}

.lucky-info {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.25rem;
}

.lucky-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.9rem;
    background: var(--velora-bg-light, #f9fafb);
    border-radius: 999px;
    font-size: 0.9rem;
    color: var(--velora-text-secondary, #4b5563);
    border: 1px solid var(--velora-border-light, #e5e7eb);
}

.lucky-item i {
    color: var(--velora-primary, #6366f1);
}

.lucky-item strong {
    font-weight: 600;
    color: var(--velora-text-primary, #1f2937);
}

.celestial-events {
    margin-top: 1.5rem;
    padding: 1.25rem;
    border-radius: 0.75rem;
    background: var(--velora-bg-card, #ffffff);
    border: 1px solid var(--velora-border-light, #e5e7eb);
}

.celestial-events h5 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0 0 0.75rem 0;
    font-size: 1rem;
    font-weight: 600;
    color: var(--velora-text-primary, #1f2937);
}

.celestial-events ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.celestial-event {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--velora-text-secondary, #4b5563);
}

.celestial-event i {
    color: var(--velora-primary, #6366f1);
}

/* Responsive Breakpoints */
@media (max-width: 768px) {
    .time-segments-tabs {
        gap: 0.25rem;
    }
    
    .time-segment-tab {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }
    
    .time-segment-panel {
        padding: 1rem;
    }
    
    .horoscope-reading-text {
        max-width: 100%;  /* Full width on mobile */
        padding: 0 1rem;  /* Add horizontal padding */
    }
    
    .horoscope-reading-text p:first-of-type {
        font-size: var(--text-base);  /* Reduce lead size on mobile */
    }
    
    .moon-changes-timeline {
        padding: 1rem;
    }
    
    .horoscope-categories {
        grid-template-columns: 1fr;
    }
    
    .lucky-info {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 640px) {
    .time-segments-tabs {
        padding: 0.25rem;
    }
    
    .time-segment-tab {
        flex-shrink: 0;
        white-space: nowrap;
    }
    
    .astronomical-metadata {
        flex-direction: column;
    }
    
    .moon-changes-list {
        gap: 0.5rem;
    }
}

/* Dark Mode Support */
[data-theme="dark"] .time-segment-panel,
[data-theme="dark"] .moon-changes-timeline {
    background: var(--velora-bg-card, #1f2937);
}

[data-theme="dark"] .time-segment-title,
[data-theme="dark"] .time-segment-text,
[data-theme="dark"] .moon-changes-title,
[data-theme="dark"] .change-sign {
    color: var(--velora-text-primary, #f9fafb);
}

[data-theme="dark"] .time-segment-tab {
    color: var(--velora-text-secondary, #9ca3af);
}

[data-theme="dark"] .time-segment-tab:hover {
    background: var(--velora-bg-hover, #374151);
}

[data-theme="dark"] .moon-change-item {
    background: var(--velora-bg-light, #374151);
}

[data-theme="dark"] .astro-meta-item {
    background: var(--velora-bg-accent, #374151);
    color: var(--velora-text-secondary, #d1d5db);
}

[data-theme="dark"] .horoscope-category,
[data-theme="dark"] .celestial-events {
    background: var(--velora-bg-card, #1f2937);
    border-color: var(--velora-border-light, #4b5563);
    box-shadow: none;
}

[data-theme="dark"] .horoscope-category p,
[data-theme="dark"] .celestial-event {
    color: var(--velora-text-secondary, #d1d5db);
}

[data-theme="dark"] .lucky-item {
    background: var(--velora-bg-light, #374151);
    border-color: transparent;
    color: var(--velora-text-secondary, #d1d5db);
}

/* Dark Mode Support for Editorial Typography */
[data-theme="dark"] .horoscope-reading-text {
    color: var(--ink-base);  /* Design system handles dark mode automatically */
}

[data-theme="dark"] .horoscope-reading-text p:first-of-type {
    color: var(--ink-strong);
}

/* ===== NEW HOROSCOPE COMPONENTS ===== */

/* Spiritual Guidance Section */
.spiritual-guidance-section {
    background: var(--velora-bg-card, #ffffff);
    border-left: 4px solid var(--velora-accent-color, var(--velora-primary, #6366f1));
    border-radius: 8px;
    padding: 1.5rem;
    margin: 1rem 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

.spiritual-guidance-section:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.spiritual-guidance-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.spiritual-guidance-header i {
    color: var(--velora-primary, #6366f1);
    font-size: 1.25rem;
}

.spiritual-guidance-header h3 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--velora-text-primary, #1f2937);
}

.spiritual-guidance-content {
    line-height: 1.6;
}

.spiritual-guidance-text {
    margin: 0;
    color: var(--velora-text-primary, #1f2937);
    font-size: 1rem;
}

/* Daily Affirmation Section */
.daily-affirmation-section {
    position: relative;
    background: linear-gradient(135deg, var(--velora-bg-card, #ffffff) 0%, rgba(99, 102, 241, 0.05) 100%);
    border: 2px solid var(--velora-accent-color, var(--velora-primary, #6366f1));
    border-radius: 12px;
    padding: 2rem 1.5rem;
    margin: 1.5rem 0;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.daily-affirmation-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--velora-primary, #6366f1), var(--velora-accent-color, var(--velora-secondary, #ec4899)));
}

.affirmation-ornament {
    margin-bottom: 1rem;
}

.affirmation-ornament i {
    font-size: 3rem;
    color: var(--velora-primary, #6366f1);
    opacity: 0.6;
}

.affirmation-text {
    margin: 0;
    font-size: 1.25rem;
    font-style: italic;
    font-weight: 500;
    line-height: 1.4;
    color: var(--velora-text-primary, #1f2937);
    position: relative;
    z-index: 1;
}

.affirmation-accent {
    margin-top: 1rem;
    opacity: 0.8;
}

.affirmation-accent i {
    font-size: 1.25rem;
    color: var(--velora-accent-color, var(--velora-secondary, #ec4899));
}

/* Planetary Hours Section */
.planetary-hours-section {
    background: var(--velora-bg-card, #ffffff);
    border: 1px solid var(--velora-border-light, #e5e7eb);
    border-radius: 8px;
    padding: 1.5rem;
    margin: 1rem 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.planetary-hours-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--velora-border-light, #e5e7eb);
}

.planetary-hours-header i {
    color: var(--velora-primary, #6366f1);
    font-size: 1.25rem;
}

.planetary-hours-header h3 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--velora-text-primary, #1f2937);
}

.planetary-hours-explanation {
    margin-bottom: 1.5rem;
}

.planetary-hours-explanation p {
    margin: 0;
    color: var(--velora-text-secondary, #4b5563);
    font-size: 0.95rem;
    line-height: 1.5;
}

.planetary-hours-timeline {
    position: relative;
}

.planetary-hours-timeline::before {
    content: '';
    position: absolute;
    left: 1.25rem;
    top: 2rem;
    bottom: 2rem;
    width: 2px;
    background: linear-gradient(to bottom, var(--velora-primary, #6366f1), var(--velora-accent-color, var(--velora-secondary, #ec4899)));
    border-radius: 1px;
}

.planetary-hour-item {
    position: relative;
    background: var(--velora-bg-card, #ffffff);
    border: 1px solid var(--velora-border-light, #e5e7eb);
    border-radius: 6px;
    margin-bottom: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
}

.planetary-hour-item:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    transform: translateY(-1px);
}

.planetary-hour-item.expanded {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.planetary-hour-item::before {
    content: '';
    position: absolute;
    left: 1rem;
    top: 1.25rem;
    width: 12px;
    height: 12px;
    background: var(--velora-primary, #6366f1);
    border: 2px solid var(--velora-bg-card, #ffffff);
    border-radius: 50%;
    z-index: 1;
}

.hour-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1rem 1rem 2.5rem;
    min-height: 3rem;
}

.hour-time {
    font-weight: 600;
    color: var(--velora-text-primary, #1f2937);
    font-size: 1rem;
}

.hour-planet {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.planet-icon {
    font-size: 1.125rem;
    width: 1.5rem;
    text-align: center;
}

.planet-name {
    font-weight: 500;
    color: var(--velora-text-primary, #1f2937);
    font-size: 0.9rem;
}

.hour-toggle {
    transition: transform 0.3s ease;
}

.hour-toggle i.rotated {
    transform: rotate(180deg);
}

.hour-details {
    padding: 0 1rem 1rem 2.5rem;
    border-top: 1px solid var(--velora-border-light, #e5e7eb);
    background: rgba(99, 102, 241, 0.02);
}

.hour-guidance {
    margin: 1rem 0 0.75rem 0;
    color: var(--velora-text-primary, #1f2937);
    font-size: 0.9rem;
    line-height: 1.5;
}

.hour-activities {
    font-size: 0.85rem;
    color: var(--velora-text-muted, rgba(0, 0, 0, 0.7));
    margin-top: 0.5rem;
}

.no-hours-message {
    text-align: center;
    padding: 2rem;
    color: var(--velora-text-muted, rgba(0, 0, 0, 0.6));
}

.no-hours-message p {
    margin: 0;
    font-style: italic;
}

/* General Section Wrappers */
.new-section-wrapper,
.weekly-new-section,
.monthly-new-section {
    margin: 1.5rem 0;
}

/* ===== RESPONSIVE DESIGN ===== */

/* Spiritual Guidance Responsive */
@media (max-width: 768px) {
    .spiritual-guidance-section {
        padding: 1.25rem;
        margin: 0.75rem 0;
    }

    .spiritual-guidance-header h3 {
        font-size: 1.125rem;
    }

    .spiritual-guidance-text {
        font-size: 0.95rem;
    }
}

@media (max-width: 640px) {
    .spiritual-guidance-section {
        padding: 1rem;
        margin: 0.5rem 0;
        border-left-width: 3px;
    }

    .spiritual-guidance-header {
        gap: 0.5rem;
    }

    .spiritual-guidance-header i {
        font-size: 1.125rem;
    }

    .spiritual-guidance-header h3 {
        font-size: 1rem;
    }
}

/* Daily Affirmation Responsive */
@media (max-width: 768px) {
    .daily-affirmation-section {
        padding: 1.75rem 1.25rem;
        margin: 1.25rem 0;
    }

    .affirmation-ornament i {
        font-size: 2.5rem;
    }

    .affirmation-text {
        font-size: 1.125rem;
    }
}

@media (max-width: 640px) {
    .daily-affirmation-section {
        padding: 1.5rem 1rem;
        margin: 1rem 0;
    }

    .affirmation-ornament i {
        font-size: 2rem;
    }

    .affirmation-text {
        font-size: 1rem;
    }

    .affirmation-accent i {
        font-size: 1rem;
    }
}

/* Planetary Hours Responsive */
@media (max-width: 768px) {
    .planetary-hours-section {
        padding: 1.25rem;
        margin: 0.75rem 0;
    }

    .planetary-hours-timeline::before {
        left: 1rem;
    }

    .planetary-hour-item::before {
        left: 0.75rem;
    }

    .hour-summary {
        padding: 0.875rem 0.875rem 0.875rem 2rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .hour-time {
        font-size: 0.95rem;
    }

    .hour-details {
        padding: 0 0.875rem 0.875rem 2rem;
    }
}

@media (max-width: 640px) {
    .planetary-hours-section {
        padding: 1rem;
    }

    .planetary-hours-header {
        gap: 0.5rem;
    }

    .planetary-hours-header h3 {
        font-size: 1.125rem;
    }

    .planetary-hours-explanation p {
        font-size: 0.9rem;
    }

    .hour-summary {
        padding: 0.75rem 0.75rem 0.75rem 1.75rem;
    }

    .hour-details {
        padding: 0 0.75rem 0.75rem 1.75rem;
    }

    .planetary-hours-timeline::before {
        left: 0.75rem;
    }

    .planetary-hour-item::before {
        left: 0.5rem;
        width: 10px;
        height: 10px;
    }
}

/* ===== DARK MODE SUPPORT ===== */

/* Spiritual Guidance Dark Mode */
[data-theme="dark"] .spiritual-guidance-section {
    background: var(--velora-bg-card, #1f2937);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .spiritual-guidance-section:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
}

[data-theme="dark"] .spiritual-guidance-header h3,
[data-theme="dark"] .spiritual-guidance-text {
    color: var(--velora-text-primary, #f9fafb);
}

/* Daily Affirmation Dark Mode */
[data-theme="dark"] .daily-affirmation-section {
    background: linear-gradient(135deg, var(--velora-bg-card, #1f2937) 0%, rgba(99, 102, 241, 0.08) 100%);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .affirmation-ornament i {
    opacity: 0.7;
}

[data-theme="dark"] .affirmation-text {
    color: var(--velora-text-primary, #f9fafb);
}

/* Planetary Hours Dark Mode */
[data-theme="dark"] .planetary-hours-section {
    background: var(--velora-bg-card, #1f2937);
    border-color: var(--velora-border-light, #4b5563);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .planetary-hours-header {
    border-color: var(--velora-border-light, #4b5563);
}

[data-theme="dark"] .planetary-hours-timeline::before {
    background: linear-gradient(to bottom, var(--velora-primary, #6366f1), var(--velora-accent-color, var(--velora-secondary, #ec4899)));
}

[data-theme="dark"] .planetary-hours-header h3,
[data-theme="dark"] .hour-time,
[data-theme="dark"] .planet-name,
[data-theme="dark"] .hour-guidance {
    color: var(--velora-text-primary, #f9fafb);
}

[data-theme="dark"] .planetary-hours-explanation p,
[data-theme="dark"] .hour-activities {
    color: var(--velora-text-secondary, #d1d5db);
}

[data-theme="dark"] .planetary-hour-item {
    background: var(--velora-bg-card, #1f2937);
    border-color: var(--velora-border-light, #4b5563);
}

[data-theme="dark"] .planetary-hour-item:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

[data-theme="dark"] .planetary-hour-item.expanded {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .hour-details {
    border-color: var(--velora-border-light, #4b5563);
    background: rgba(99, 102, 241, 0.05);
}

/* Mobile responsiveness for astro chips */
@media (max-width: 640px) {
    .astro-meta-item {
        padding: 0.375rem 0.875rem;
        font-size: 0.8125rem;
        min-height: 44px; /* WCAG touch target */
    }

    .astronomical-metadata {
        gap: 0.75rem;
        padding-top: 1.25rem;
    }
}
