/*
==================================================
SECTION: Investor Profiles ACF Block Styles
LOCATION: template-parts/blocks/investor-profiles/investor-profiles.css
USED ON: About Us page and any page using the investor-profiles block
DEPENDENCIES: investor-profiles.js for 3D tilt effects
LAST MODIFIED: 2025-01-03
AUTHOR: Claude Code
DO NOT REMOVE WITHOUT CHECKING DEPENDENCIES
==================================================
*/

.investor-profiles-section {
    background-color: #FFFFFF;
    padding: 100px 0;
}

.investor-profiles-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.investor-profiles-text {
    max-width: 427px;
}

.investor-profiles-text h2 {
    font-family: 'Lexend', sans-serif;
    font-weight: 700;
    font-size: 40px;
    line-height: 48px;
    color: #1A1A1A;
    margin-bottom: 16px;
}

.investor-profiles-text p {
    font-family: 'IBM Plex Mono', sans-serif;
    font-size: 18px;
    line-height: 27px;
    color: #1A1A1A;
    margin-bottom: 16px;
}

.investor-profiles-link {
    font-family: 'Lexend', sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 20px;
    color: #1A1A1A;
    text-decoration: underline;
}

.investor-profiles-graphic {
    perspective: 1000px;
    transform-style: preserve-3d;
}

.investor-profiles-graphic svg {
    max-width: 100%;
    height: auto;
    display: block;
}

.investor-profiles-graphic img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Individual Circle 3D Tilt Styles */
.investor-profiles-graphic circle {
    transition: transform 0.3s ease-out, filter 0.3s ease-out;
    will-change: transform;
}

.investor-profiles-graphic circle.tilt-active {
    filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.2));
}

/* Responsive Design */
@media (max-width: 992px) {
    .investor-profiles-container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    
    .investor-profiles-text {
        max-width: 100%;
    }
    
    .investor-profiles-text h2 {
        font-size: 32px;
        line-height: 40px;
    }
    
    .investor-profiles-text p {
        font-size: 16px;
        line-height: 24px;
    }
    
    .investor-profiles-section {
        padding: 60px 0;
    }
}

@media (max-width: 768px) {
    .investor-profiles-section {
        padding: 40px 0;
    }
    
    .investor-profiles-container {
        padding: 0 15px;
        gap: 30px;
    }
    
    .investor-profiles-text h2 {
        font-size: 28px;
        line-height: 36px;
        margin-bottom: 12px;
    }
    
    .investor-profiles-text p {
        font-size: 14px;
        line-height: 21px;
        margin-bottom: 12px;
    }
    
    .investor-profiles-link {
        font-size: 16px;
    }
}