/* 기업 성장주 분석 페이지 — results.css 를 기반으로 추가 스타일 */

.pick-count {
    margin-left: auto;
    color: #666;
    font-size: 0.9rem;
    font-weight: 600;
}

.growth-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.growth-card {
    background: white;
    border-radius: 12px;
    padding: 20px 24px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.growth-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
}

.company-title {
    display: flex;
    align-items: baseline;
    gap: 10px;
    flex-wrap: wrap;
}

.company-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a2e;
}

.company-ticker {
    font-size: 0.9rem;
    color: #888;
    font-family: 'SF Mono', Menlo, monospace;
}

.growth-badges {
    display: flex;
    gap: 6px;
    flex-shrink: 0;
}

.growth-badge {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
}

.growth-trend {
    background-color: #fff3e0;
    color: #e65100;
}

.growth-structural {
    background-color: #e8f5e9;
    color: #2e7d32;
}

.growth-summary {
    color: #333;
    font-size: 0.98rem;
    line-height: 1.7;
    margin-bottom: 16px;
}

.report-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
    border-top: 1px solid #eee;
    padding-top: 12px;
}

.report-link-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.report-link-meta {
    display: flex;
    gap: 10px;
    align-items: baseline;
    color: #555;
    font-size: 0.9rem;
    min-width: 0;
}

.report-broker {
    font-weight: 600;
    color: #444;
}

.report-analyst {
    color: #999;
    font-size: 0.85rem;
}

.report-link-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.report-open-link {
    color: #4a90d9;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    white-space: nowrap;
    flex-shrink: 0;
}

.report-open-link:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .growth-card-header {
        flex-direction: column;
    }

    .report-link-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
}
