/* ===================================
   CORPORATE HERO BLOCK STYLES
   =================================== */

/* Main block container */
.corporate-hero-section {
    width: 100%;
    max-width: 100vw;
    margin: 0 auto;
    padding: 80px 20px 80px 20px;
    overflow-x: hidden;
    box-sizing: border-box;
}

/* Content container */
.corporate-hero-content { 
    background: white; 
    width: 100%; 
}

.corporate-hero-content-container {
    max-width: var(--container-width, 1200px);
    width: 100%;
    margin: 0 auto;
    position: relative;
    display: flex;
    align-items: center;
    gap: 80px;
    padding: 0;
    box-sizing: border-box;
}

/* Image Column */
.corporate-hero-image {
    flex: 1;
    max-width: 500px;
    min-width: 0;
    overflow: hidden;
}

.corporate-hero-image-img {
    width: 100%;
    height: auto;
    display: block;
    max-width: 100%;
    object-fit: cover;
}

.corporate-hero-text {
    flex: 1;
    max-width: 600px;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.corporate-hero-title-note {
    margin: 0;
}

.corporate-hero-subtitle {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
    color: var(--primary-color, #354477);
    margin: 0 0 8px 0;
    font-family: 'Montserrat', sans-serif;
    word-wrap: break-word;
}

.corporate-hero-section-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--primary-color, #354477);
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    word-wrap: break-word;
    hyphens: auto;
}

.corporate-hero-section-description {
    margin: 0;
}

.corporate-hero-section-description p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--primary-color, #354477);
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    word-wrap: break-word;
}

.corporate-hero-section-description strong {
    font-weight: 700;
}


/* Overflow protection */
.corporate-hero-section-title,
.corporate-hero-section-description p {
    overflow-wrap: break-word;
    word-break: break-word;
    hyphens: auto;
    max-width: 100%;
}

.corporate-hero-content {
    max-width: 100%;
    overflow: hidden;
}

.corporate-hero-content-container {
    min-width: 0;
    flex-shrink: 1;
}

/* Responsive */
@media (max-width: 1600px) {
    .corporate-hero-content-container {
        gap: 60px;
    }
}

@media (max-width: 1150px) {
    .corporate-hero-content-container {
        max-width: var(--wide-width, 1280px);
        gap: 50px;
        padding: 0;
        flex-direction: column;
        text-align: center;
    }
    
    .corporate-hero-text {
        order: 1;
        max-width: 800px;
    }
    
    .corporate-hero-image {
        max-width: 450px;
        order: 2;
    }
}

@media (max-width: 767px) {
    .corporate-hero-section {
        padding: 60px 16px 30px 16px;
    }
    
    .corporate-hero-content-container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
        padding: 0;
    }
    
    .corporate-hero-section-title {
        font-size: 32px;
        padding: 0;
    }
    
    .corporate-hero-text {
        order: 1;
        max-width: 100%;
    }
    
    .corporate-hero-image {
        max-width: 100%;
        order: 2;
    }
}

/* Alignment support */
.corporate-hero-section.alignwide {
    max-width: var(--wide-width, 1280px);
}

.corporate-hero-section.alignfull {
    max-width: 100%;
}