/* AI生成中动态效果 */
.ai-generating-wrapper {
    margin-top: 16px;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
    border: 2px solid #e0e7ff;
    overflow: hidden;
    animation: ai-generating-border 3s ease-in-out infinite;
}

@keyframes ai-generating-border {
    0%, 100% {
        border-color: #e0e7ff;
        box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
    }
    50% {
        border-color: #3b82f6;
        box-shadow: 0 10px 30px rgba(59, 130, 246, 0.2);
    }
}

.ai-generating-header {
    padding: 24px 20px;
    background: linear-gradient(135deg, #2563eb, #0ea5e9);
    color: #f9fafb;
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
    overflow: hidden;
}

.ai-generating-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: ai-generating-shine 3s infinite;
}

@keyframes ai-generating-shine {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.ai-generating-icon {
    position: relative;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #ffffff;
    animation: ai-generating-rotate 2s linear infinite;
}

@keyframes ai-generating-rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.ai-generating-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.5);
    animation: ai-generating-pulse 2s ease-out infinite;
}

@keyframes ai-generating-pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

.ai-generating-title {
    margin: 0;
    font-size: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
}

.ai-generating-text {
    font-weight: 700;
}

.ai-generating-dot {
    animation: ai-generating-blink 1.5s ease-in-out infinite;
}

@keyframes ai-generating-blink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.3;
    }
}

.ai-generating-status {
    font-weight: 600;
    position: relative;
    padding-right: 20px;
}

.ai-generating-status::after {
    content: '...';
    position: absolute;
    animation: ai-generating-dots 1.5s steps(4, end) infinite;
}

@keyframes ai-generating-dots {
    0%, 20% {
        content: '.';
    }
    40% {
        content: '..';
    }
    60%, 100% {
        content: '...';
    }
}

.ai-generating-body {
    padding: 24px 20px;
    background: #ffffff;
}

.ai-generating-progress {
    width: 100%;
    height: 6px;
    background: #e5e7eb;
    border-radius: 999px;
    overflow: hidden;
    margin-bottom: 16px;
}

.ai-generating-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #2563eb, #0ea5e9, #22c55e);
    border-radius: 999px;
    animation: ai-generating-progress 2s ease-in-out infinite;
    background-size: 200% 100%;
}

@keyframes ai-generating-progress {
    0% {
        width: 0%;
        background-position: 0% 0%;
    }
    50% {
        width: 70%;
        background-position: 100% 0%;
    }
    100% {
        width: 100%;
        background-position: 0% 0%;
    }
}

.ai-generating-message {
    font-size: 14px;
    line-height: 1.7;
    color: #374151;
    margin-bottom: 12px;
}

.ai-generating-message strong {
    color: #2563eb;
    font-weight: 600;
}

.ai-hint {
    font-size: 13px;
    color: #6b7280;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px;
    background: #f9fafb;
    border-radius: 6px;
    border-left: 3px solid #fbbf24;
}

.ai-hint i {
    color: #fbbf24;
}

.ai-report-wrapper {
    margin-top: 16px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
    border: 1px solid #e5e7eb;
    overflow: hidden;
}

.ai-report-header {
    padding: 16px 20px;
    background: linear-gradient(135deg, #2563eb, #0ea5e9);
    color: #f9fafb;
}

.ai-report-header h3 {
    margin: 0 0 4px;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.ai-report-header h3 i {
    font-size: 18px;
}

.ai-report-subtitle {
    margin: 0;
    font-size: 12px;
    opacity: 0.9;
}

.ai-report-header > div {
    margin-top: 4px;
}

.ai-report-body {
    padding: 16px 20px 18px;
    background: #f9fafb;
}

.ai-report-body .ai-section {
    margin-bottom: 16px;
}

.ai-report-body .ai-section h4 {
    margin: 0 0 8px;
    font-size: 15px;
    font-weight: 600;
    color: #111827;
    border-left: 3px solid #2563eb;
    padding-left: 8px;
}

.ai-report-body .card {
    background: #ffffff;
    border-radius: 10px;
    padding: 12px 14px;
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
}

.ai-report-body ul,
.ai-report-body ol {
    margin: 6px 0 0;
    padding-left: 20px;
}

.ai-report-body .value-data-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 6px;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    font-size: 13px;
}

.ai-report-body .value-data-table th,
.ai-report-body .value-data-table td {
    padding: 6px 8px;
    border: 1px solid #e5e7eb;
    text-align: center;
}

.ai-report-body .value-data-table th {
    background: #eff6ff;
    font-weight: 500;
    color: #1f2937;
}

.ai-report-body .ai-bars {
    margin-top: 10px;
}

.ai-report-body .ai-bar-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
    font-size: 12px;
}

.ai-report-body .ai-bar-label {
    width: 80px;
    color: #4b5563;
}

.ai-report-body .ai-bar-track {
    flex: 1;
    height: 10px;
    border-radius: 999px;
    background: #e5e7eb;
    overflow: hidden;
}

.ai-report-body .ai-bar-fill {
    height: 100%;
    border-radius: 999px;
    background: linear-gradient(90deg, #2563eb, #22c55e);
}

.ai-report-body .ai-bar-value {
    width: 52px;
    text-align: right;
    color: #111827;
}

/* SWOT 四宫格卡片布局 */
.swot-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 10px;
}

.swot-card {
    background: #ffffff;
    border-radius: 10px;
    padding: 14px 16px;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.08);
    border-left: 4px solid;
    transition: transform 0.2s, box-shadow 0.2s;
}

.swot-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.12);
}

.swot-card h5 {
    margin: 0 0 10px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.swot-card h5 i {
    font-size: 16px;
}

.swot-card ul {
    margin: 0;
    padding-left: 20px;
    list-style: none;
}

.swot-card ul li {
    margin-bottom: 6px;
    font-size: 13px;
    line-height: 1.6;
    color: #374151;
    position: relative;
}

.swot-card ul li:before {
    content: "·";
    position: absolute;
    left: -16px;
    color: #6b7280;
    font-weight: bold;
}

.swot-card ul li:last-child {
    margin-bottom: 0;
}

/* 优势 - 浅绿色 */
.swot-strength {
    border-left-color: #10b981;
    background: linear-gradient(to right, #ecfdf5 0%, #ffffff 20%);
}

.swot-strength h5 {
    color: #059669;
}

.swot-strength h5 i {
    color: #10b981;
}

/* 劣势 - 浅粉色 */
.swot-weakness {
    border-left-color: #f472b6;
    background: linear-gradient(to right, #fdf2f8 0%, #ffffff 20%);
}

.swot-weakness h5 {
    color: #db2777;
}

.swot-weakness h5 i {
    color: #f472b6;
}

/* 机会 - 浅蓝色 */
.swot-opportunity {
    border-left-color: #3b82f6;
    background: linear-gradient(to right, #eff6ff 0%, #ffffff 20%);
}

.swot-opportunity h5 {
    color: #2563eb;
}

.swot-opportunity h5 i {
    color: #3b82f6;
}

/* 威胁 - 浅黄色 */
.swot-threat {
    border-left-color: #fbbf24;
    background: linear-gradient(to right, #fffbeb 0%, #ffffff 20%);
}

.swot-threat h5 {
    color: #d97706;
}

.swot-threat h5 i {
    color: #fbbf24;
}

/* 股权结构美化 */
.ownership-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ownership-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ownership-label {
    min-width: 100px;
    font-weight: 500;
    color: #4b5563;
    font-size: 13px;
}

.ownership-value {
    flex: 1;
    color: #111827;
    font-size: 13px;
}

.ownership-progress {
    flex: 1;
    position: relative;
    height: 24px;
    background: #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.ownership-progress-bar {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    background: linear-gradient(90deg, #2563eb, #0ea5e9);
    border-radius: 12px;
    transition: width 0.3s ease;
}

.ownership-progress-text {
    position: relative;
    z-index: 1;
    padding: 0 10px;
    font-weight: 600;
    color: #111827;
    font-size: 13px;
}

/* 十大股东明细美化 */
.holders-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.holders-bars {
    margin-top: 12px;
}

.holder-bar-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    padding: 6px 0;
}

.holder-bar-row.top-holder {
    background: linear-gradient(to right, #eff6ff 0%, transparent 100%);
    padding: 8px 10px;
    border-radius: 6px;
}

.holder-bar-label {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 200px;
    font-size: 12px;
}

.holder-rank {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: #2563eb;
    color: #ffffff;
    border-radius: 50%;
    font-size: 11px;
    font-weight: 600;
}

.holder-bar-row.top-holder .holder-rank {
    background: #fbbf24;
}

.holder-name {
    color: #111827;
    font-weight: 500;
}

.holder-bar-track {
    flex: 1;
    height: 16px;
    background: #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.holder-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #2563eb, #22c55e);
    border-radius: 8px;
    transition: width 0.3s ease;
}

.holder-bar-row.top-holder .holder-bar-fill {
    background: linear-gradient(90deg, #fbbf24, #f59e0b);
}

.holder-bar-value {
    min-width: 50px;
    text-align: right;
    font-weight: 600;
    color: #111827;
    font-size: 12px;
}

/* 竞争格局样式 */
.competitors-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.competitors-actions {
    margin-bottom: 12px;
    text-align: right;
}

.btn-add-all-compare {
    padding: 6px 14px;
    background: #667eea;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.btn-add-all-compare:hover {
    background: #5568d3;
}

.btn-add-all-compare i {
    font-size: 12px;
}

.competitors-section {
    background: #ffffff;
    border-radius: 8px;
    padding: 12px 14px;
    border: 1px solid #e5e7eb;
}

.competitors-section h5 {
    margin: 0 0 10px;
    font-size: 14px;
    font-weight: 600;
    color: #111827;
    border-bottom: 2px solid #2563eb;
    padding-bottom: 6px;
}

.competitors-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.competitor-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.competitor-name-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.competitor-name {
    font-size: 13px;
    font-weight: 500;
    color: #111827;
    flex: 1;
}

.competitor-add-btn {
    background: #667eea;
    color: white;
    border: none;
    border-radius: 4px;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 11px;
    padding: 0;
    transition: background 0.2s;
    margin-left: 8px;
}

.competitor-add-btn:hover {
    background: #5568d3;
}

.competitor-ticker {
    font-size: 11px;
    color: #6b7280;
    margin-left: 6px;
}

.competitor-share {
    position: relative;
    height: 20px;
    background: #e5e7eb;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.competitor-share-bar {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
    border-radius: 10px;
}

.competitor-share-text {
    position: relative;
    z-index: 1;
    padding: 0 8px;
    font-size: 11px;
    font-weight: 600;
    color: #111827;
}

.competitors-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.competitor-tag {
    display: inline-block;
    padding: 4px 10px;
    background: #f3f4f6;
    border: 1px solid #d1d5db;
    border-radius: 12px;
    font-size: 12px;
    color: #4b5563;
}

.competitor-tag-with-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding-right: 4px;
}

.competitor-tag-add-btn {
    background: #667eea;
    color: white;
    border: none;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 10px;
    padding: 0;
    transition: background 0.2s;
    flex-shrink: 0;
}

.competitor-tag-add-btn:hover {
    background: #5568d3;
}

.competitors-pros,
.competitors-cons {
    margin: 0;
    padding-left: 20px;
    list-style: none;
}

.competitors-pros li,
.competitors-cons li {
    margin-bottom: 6px;
    font-size: 13px;
    line-height: 1.6;
    color: #374151;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.competitors-pros li i {
    color: #10b981;
    margin-top: 2px;
}

.competitors-cons li i {
    color: #ef4444;
    margin-top: 2px;
}

/* 财务指标样式 - 两列布局 */
.financial-indicators {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.financial-indicator-item {
    background: #ffffff;
    border-radius: 8px;
    padding: 12px 14px;
    border-left: 4px solid #2563eb;
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
    transition: transform 0.2s, box-shadow 0.2s;
}

.financial-indicator-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(15, 23, 42, 0.1);
}

.financial-indicator-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
}

.financial-indicator-name {
    font-size: 14px;
    font-weight: 600;
    color: #111827;
}

.financial-indicator-period {
    font-size: 12px;
    color: #6b7280;
    background: #f3f4f6;
    padding: 2px 8px;
    border-radius: 4px;
}

.financial-indicator-value {
    font-size: 18px;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 6px;
}

.financial-indicator-interpretation {
    font-size: 13px;
    line-height: 1.6;
    color: #4b5563;
}

/* CAGR 美化样式 */
.cagr-container {
    background: #ffffff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.08);
}

.cagr-timeline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding: 20px;
    background: linear-gradient(135deg, #eff6ff 0%, #f0f9ff 100%);
    border-radius: 10px;
}

.cagr-start,
.cagr-end {
    flex: 1;
    text-align: center;
    padding: 12px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(15, 23, 42, 0.06);
}

.cagr-year {
    font-size: 24px;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 6px;
}

.cagr-label {
    font-size: 12px;
    color: #6b7280;
    margin-bottom: 8px;
}

.cagr-value {
    font-size: 18px;
    font-weight: 600;
    color: #111827;
}

.cagr-arrow {
    margin: 0 20px;
    font-size: 24px;
    color: #2563eb;
}

.cagr-result {
    text-align: center;
    padding: 16px;
    background: linear-gradient(135deg, #2563eb 0%, #0ea5e9 100%);
    border-radius: 10px;
    color: #ffffff;
}

.cagr-result-label {
    font-size: 13px;
    opacity: 0.9;
    margin-bottom: 8px;
}

.cagr-result-value {
    font-size: 32px;
    font-weight: 700;
}

/* 问答美化样式 */
.qa-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.qa-item {
    background: #ffffff;
    border-radius: 10px;
    padding: 16px;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.08);
    border-left: 4px solid #2563eb;
    transition: transform 0.2s, box-shadow 0.2s;
}

.qa-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.12);
}

.qa-question {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid #e5e7eb;
}

.qa-answer {
    display: flex;
    gap: 12px;
}

.qa-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.qa-icon-question {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: #ffffff;
}

.qa-icon-answer {
    background: linear-gradient(135deg, #10b981, #059669);
    color: #ffffff;
}

.qa-content {
    flex: 1;
}

.qa-label {
    font-size: 11px;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
    font-weight: 600;
}

.qa-text {
    font-size: 14px;
    line-height: 1.7;
    color: #111827;
}

.qa-question .qa-text {
    font-weight: 500;
}

.qa-answer .qa-text {
    color: #374151;
}

@media (max-width: 768px) {
    .ai-report-body {
        padding: 12px 12px 14px;
    }
    
    .swot-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .ownership-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }
    
    .ownership-label {
        min-width: auto;
    }
    
    .holder-bar-label {
        min-width: 150px;
    }
    
    .holder-name {
        font-size: 11px;
    }
    
    .cagr-timeline {
        flex-direction: column;
        gap: 16px;
    }
    
    .cagr-arrow {
        transform: rotate(90deg);
        margin: 8px 0;
    }
    
    .cagr-start,
    .cagr-end {
        width: 100%;
    }
    
    .financial-indicators {
        grid-template-columns: 1fr;
    }
}

/* 重要事件美化样式 */
.events-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.event-item {
    display: flex;
    gap: 12px;
    background: #ffffff;
    border-radius: 10px;
    padding: 14px 16px;
    box-shadow: 0 2px 6px rgba(15, 23, 42, 0.08);
    border-left: 4px solid #3b82f6;
    transition: transform 0.2s, box-shadow 0.2s;
}

.event-item:hover {
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.12);
}

.event-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.event-content {
    flex: 1;
}

.event-number {
    font-size: 11px;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
    font-weight: 600;
}

.event-text {
    font-size: 14px;
    line-height: 1.7;
    color: #111827;
}

/* 调研问题美化样式 */
.ddq-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ddq-item {
    display: flex;
    gap: 12px;
    background: #ffffff;
    border-radius: 10px;
    padding: 14px 16px;
    box-shadow: 0 2px 6px rgba(15, 23, 42, 0.08);
    border-left: 4px solid #8b5cf6;
    transition: transform 0.2s, box-shadow 0.2s;
}

.ddq-item:hover {
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.12);
}

.ddq-number {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
}

.ddq-content {
    flex: 1;
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.ddq-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #f3f4f6;
    color: #8b5cf6;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    margin-top: 2px;
}

.ddq-text {
    flex: 1;
    font-size: 14px;
    line-height: 1.7;
    color: #111827;
}

/* 投资关注要点美化样式 */
.focus-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.focus-item {
    display: flex;
    gap: 12px;
    background: #ffffff;
    border-radius: 10px;
    padding: 14px 16px;
    box-shadow: 0 2px 6px rgba(15, 23, 42, 0.08);
    border-left: 4px solid #10b981;
    transition: transform 0.2s, box-shadow 0.2s;
}

.focus-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.12);
}

.focus-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #10b981, #059669);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.focus-content {
    flex: 1;
}

.focus-label {
    font-size: 11px;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
    font-weight: 600;
}

.focus-text {
    font-size: 14px;
    line-height: 1.7;
    color: #111827;
}

@media (max-width: 768px) {
    .focus-container {
        grid-template-columns: 1fr;
    }
}


