/* ------------------------------------------------------------------------------------------ */
/* ----------------------------------- Market Approach HTML---------------------------------- */
/* ------------------------------------------------------------------------------------------ */
/* Market Approach Hero Section */
.market-approach-hero {
    padding: 160px 0 80px;
    color: white;
    text-align: center;
    position: relative;
}

.market-approach-hero .hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.market-approach-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    font-weight: 600;
    line-height: 1.2;
}

.market-approach-hero .subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

.market-approach-hero .breadcrumbs {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    font-size: 0.9rem;
}

.market-approach-hero .breadcrumbs a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.market-approach-hero .breadcrumbs a:hover {
    opacity: 0.8;
}

.market-approach-hero .breadcrumbs span {
    margin: 0 10px;
    opacity: 0.7;
}

/* Strategy Overview Section */
.strategy-overview {
    padding: 80px 0;
    background-color: white;
}

.overview-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.overview-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 30px;
}

.key-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    gap: 20px;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: rgba(0, 122, 141, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.feature-content h4 {
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 8px;
}

.feature-content p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

.performance-highlight {
    background: rgba(0, 122, 141, 0.05);
    border-left: 4px solid var(--accent);
    padding: 15px 20px;
    border-radius: 0 6px 6px 0;
}

.highlight-value {
    font-size: 2rem;
    font-weight: 600;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 5px;
}

.highlight-label {
    font-size: 0.9rem;
    color: var(--text-medium);
}

.overview-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.overview-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Investment Process Section */
.investment-process {
    padding: 80px 0;
    background-color: #f8fafc;
}

.process-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.process-step {
    display: grid;
    grid-template-columns: 60px 1fr 300px;
    gap: 30px;
    align-items: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--accent);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 600;
}

.step-content h3 {
    font-size: 1.4rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.step-content p {
    color: var(--text-medium);
    line-height: 1.7;
}

.step-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.step-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .overview-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .process-step {
        grid-template-columns: 60px 1fr;
    }
    
    .step-image {
        grid-column: span 2;
        margin-top: 20px;
    }
}

@media (max-width: 768px) {
    .market-approach-hero {
        padding: 120px 0 60px;
    }
    
    .market-approach-hero h1 {
        font-size: 2.2rem;
    }
    
    .strategy-overview,
    .investment-process {
        padding: 60px 0;
    }
    
    .process-step {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .step-image {
        grid-column: auto;
    }
}

@media (max-width: 480px) {
    .market-approach-hero h1 {
        font-size: 1.8rem;
    }
    
    .feature-item {
        flex-direction: column;
        gap: 15px;
    }
    
    .feature-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* Portfolio Construction Section */
.portfolio-construction {
    padding: 80px 0;
    background-color: white;
}

.construction-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 50px;
}

.construction-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 100%;
    min-height: 400px;
}

.construction-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 30px;
    color: white;
}

.image-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.image-overlay p {
    opacity: 0.9;
}

.construction-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.feature-card {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: rgba(0, 122, 141, 0.03);
    border-radius: 8px;
    border: 1px solid rgba(0, 122, 141, 0.1);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 122, 141, 0.05);
    border-color: rgba(0, 122, 141, 0.2);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: rgba(0, 122, 141, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.feature-text h3 {
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 8px;
}

.feature-text p {
    font-size: 0.95rem;
    color: var(--text-medium);
    line-height: 1.6;
}

/* Risk Management Section */
.risk-management {
    padding: 80px 0;
    background-color: #f8fafc;
}

.risk-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 50px;
    align-items: center;
}

.risk-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 30px;
}

.risk-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.stat-item {
    background: white;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.stat-value {
    font-size: 2rem;
    font-weight: 600;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-medium);
}

.risk-visualization {
    position: relative;
    height: 400px;
}

.risk-wheel {
    position: relative;
    width: 400px;
    height: 400px;
    margin: 0 auto;
}

.wheel-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(0, 122, 141, 0.3);
}

.wheel-item {
    position: absolute;
    width: 90px;
    height: 90px;
    padding: 3px;
    background: white;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    z-index: 1;
}

.wheel-item:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.wheel-item i {
    color: var(--accent);
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.wheel-item span {
    font-size: 0.7rem;
    text-align: center;
    color: var(--text-dark);
    font-weight: 500;
}

.position-sizing {
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
}

.stop-loss {
    top: 110px;
    right: 50px;
}

.scenario {
    right: 50px;
    bottom: 110px;
}

.liquidity {
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
}

.stress {
    bottom: 110px;
    left: 50px;
}

.correlation {
    top: 110px;
    left: 50px;
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .risk-wheel {
        width: 350px;
        height: 350px;
    }
    
    .wheel-core {
        width: 100px;
        height: 100px;
        font-size: 0.9rem;
    }
    
    .wheel-item {
        width: 70px;
        height: 70px;
    }
    
    .wheel-item i {
        font-size: 1rem;
    }
    
    .wheel-item span {
        font-size: 0.65rem;
    }
}

@media (max-width: 1024px) {
    .construction-content,
    .risk-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .construction-image {
        min-height: 300px;
    }
    
    .risk-visualization {
        height: 350px;
        margin-top: 40px;
    }
}

@media (max-width: 768px) {
    .portfolio-construction,
    .risk-management {
        padding: 60px 0;
    }
    
    .risk-stats {
        grid-template-columns: 1fr;
    }
    
    .risk-wheel {
        width: 300px;
        height: 300px;
    }
    
    .wheel-item {
        width: 60px;
        height: 60px;
    }
    
    .position-sizing {
        top: 40px;
    }
    
    .stop-loss {
        top: 90px;
        right: 40px;
    }
    
    .scenario {
        bottom: 90px;
        right: 40px;
    }
    
    .liquidity {
        bottom: 40px;
    }
    
    .stress {
        bottom: 90px;
        left: 40px;
    }
    
    .correlation {
        top: 90px;
        left: 40px;
    }
}

@media (max-width: 480px) {
    .feature-card {
        flex-direction: column;
        text-align: center;
    }
    
    .feature-icon {
        margin: 0 auto;
    }
    
    .risk-wheel {
        width: 250px;
        height: 250px;
    }
    
    .wheel-item {
        width: 50px;
        height: 50px;
    }
    
    .wheel-item i {
        font-size: 0.9rem;
        margin-bottom: 2px;
    }
    
    .wheel-item span {
        font-size: 0.6rem;
    }
    
    .position-sizing {
        top: 30px;
    }
    
    .stop-loss {
        top: 75px;
        right: 30px;
    }
    
    .scenario {
        bottom: 75px;
        right: 30px;
    }
    
    .stress {
        bottom: 75px;
        left: 30px;
    }
    
    .correlation {
        top: 75px;
        left: 30px;
    }
}