.market-opportunities-section {
    background: var(--white);
}

.market-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: 1fr;
    align-items: center;
}

.market-chart-block {
    height: 100%; /* Or another reasonable height */
    max-width: 100%;
    position: relative;
}

#marketChart {
    width: 100% !important;
    height: 100% !important;
}


.chart-title {
    font-family: var(--font-heading);
    font-size: 22px;
    margin-bottom: 30px;
    color: var(--accent-dark);
}

#marketChart {
    background: var(--bg-light);
    border-radius: 12px;
    margin: 0;
}

.market-facts-block {
    display: flex;
    flex-direction: column;
    gap: 12px;
    justify-content: center;
}

.market-stat {
    background: var(--bg-light);
    border-radius: 12px;
    padding: 18px 24px;
    box-shadow: 0 4px 14px rgba(44, 194, 149, 0.06);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.stat-label {
    color: #666;
    font-size: 15px;
    margin-bottom: 6px;
}

.stat-value {
    font-family: var(--font-heading);
    font-size: 23px;
    color: var(--accent-dark);
    font-weight: 700;
}

@media (min-width: 900px) {
    .market-grid {
        grid-template-columns: 1.1fr 1fr;
        gap: 16px;
    }

    .market-facts-block {
        margin-top: 0;
    }
}
