/* Analysis page styles — inherits design tokens from style.css */

.cards-container {
    background: var(--glass-bg);
    border: var(--glass-border);
    border-radius: 12px;
    padding: 1rem;
    overflow-y: auto;
}

@supports (backdrop-filter: blur(14px)) {
    .cards-container {
        backdrop-filter: var(--glass-blur);
        -webkit-backdrop-filter: var(--glass-blur);
    }
}

.card-title {
    color: var(--accent-light);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.5rem;
}

.info-card {
    border-bottom: 1px solid rgba(var(--accent-rgb), 0.12);
    padding-bottom: 1rem;
    margin-bottom: 1rem;
}

.info-card:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.info-card ul { list-style: none; padding-left: 0.5rem; }
.info-card li { margin-bottom: 0.3rem; padding-left: 1rem; position: relative; }
.info-card li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.45em;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--accent-light);
}
.info-card a  { color: #c7d2fe; text-decoration: none; font-size: 0.875rem; }
.info-card a:hover { color: #fff; text-decoration: underline; }

.graph-container {
    display: flex;
    width: 100%;
    background: var(--glass-bg);
    border: var(--glass-border);
    border-radius: 12px;
    overflow: hidden;
}

.small-graph-container {
    border: var(--glass-border);
    border-radius: 12px;
    overflow: hidden;
    height: 340px;
}

@media (min-width: 992px) {
    .cards-container { height: 750px; }
}

@media (max-width: 991px) {
    .cards-container { max-height: none; overflow-y: visible; height: auto; }
}
