/* Image Text Split Block - Specific Styles */
.section-image-text-split {
    position: relative;
    width: 100%;
    padding: 80px 0;
    overflow: hidden;
}

/* Background Graphic */
.image-text-split-bg-graphic {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.3;
    pointer-events: none;
}

.image-text-split-bg-graphic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Container */
.image-text-split-container {
    position: relative;
    z-index: 1;
    max-width: 1440px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 45% 35% 20%;
    gap: 10px;
    align-items: flex-start;
}

/* Text Side */
.image-text-split-text-side {
    color: rgba(0, 0, 0, 0.9);
    position: relative;
    z-index: 1;
}

/* Small Title */
.image-text-split-small-title {
    display: inline-block;
    padding: 8px 16px;
    margin-bottom: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 0;
}

/* Main Title */
.image-text-split-title {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 25px 0;
    color: rgba(0, 0, 0, 0.9);
}

/* Content */
.image-text-split-content {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 30px;
    color: rgba(0, 0, 0, 0.9);
}

.image-text-split-content p {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
    color: rgba(0, 0, 0, 0.9);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease-out forwards;
}

.image-text-split-content p:nth-child(1) { animation-delay: 0.1s; }
.image-text-split-content p:nth-child(2) { animation-delay: 0.2s; }
.image-text-split-content p:nth-child(3) { animation-delay: 0.3s; }
.image-text-split-content p:nth-child(4) { animation-delay: 0.4s; }
.image-text-split-content p:nth-child(5) { animation-delay: 0.5s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Icons removed from image text split block */

.image-text-split-content p:last-child {
    margin-bottom: 0;
}

.image-text-split-content ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.image-text-split-content li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    font-size: 16px;
    color: rgba(0, 0, 0, 0.9);
}

.image-text-split-content li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 12px;
    height: 12px;
    background: #fbcc6c;
    border-radius: 0;
}

/* Button */
.image-text-split-button {
    display: inline-block;
    padding: 15px 30px;
    background: #fbcc6c;
    color: #002f5d;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.image-text-split-button:hover {
    background: #ffffff;
    color: #002f5d;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.image-text-split-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.image-text-split-button:hover::before {
    left: 100%;
}

/* Image Side */
.image-text-split-image-side {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-text-split-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 300px;
    max-width: 100%;
}

.image-text-split-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    max-height: 500px;
}

/* Banner Column */
.image-text-split-banner {
    background: #002f5d;
    color: #ffffff;
    padding: 30px 20px;
    font-weight: 600;
    font-size: 18px;
    letter-spacing: 1px;
    text-transform: uppercase;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border-radius: 0;
    text-align: center;
    height: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.image-text-split-banner:hover {
    background: #fbcc6c;
    color: #002f5d;
}

.image-text-split-banner span {
    display: block;
    white-space: nowrap;
    line-height: 1.4;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .image-text-split-container {
        gap: 30px;
        padding: 0 20px;
    }
    
    .image-text-split-title {
        font-size: 32px;
    }
    
    .image-text-split-banner {
        padding: 25px 15px;
        font-size: 16px;
        min-height: 180px;
    }
}

@media (max-width: 991px) {
    .section-image-text-split {
        padding: 60px 0;
    }
    
    .image-text-split-container {
        gap: 25px;
    }
    
    .image-text-split-title {
        font-size: 28px;
    }
    
    .image-text-split-banner {
        padding: 20px 12px;
        font-size: 14px;
        min-height: 160px;
    }
}

@media (max-width: 768px) {
    .section-image-text-split {
        padding: 40px 0;
    }
    
    .image-text-split-container {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 15px;
    }
    
    .image-text-split-image-wrapper {
        min-height: 250px;
    }
    
    .image-text-split-text-side {
        text-align: center;
    }

    .image-text-split-title {
        font-size: 24px;
    }
    
    .image-text-split-content {
        font-size: 15px;
    }
    
    .image-text-split-content p {
        text-align: left;
    }
    
    .image-text-split-banner {
        padding: 20px 15px;
        font-size: 11px;
        min-height: 120px;
        order: 3;
    }
    
    .image-text-split-button {
        padding: 12px 25px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .image-text-split-container {
        padding: 0 10px;
    }
    
    .image-text-split-title {
        font-size: 22px;
    }
    
    .image-text-split-content {
        font-size: 14px;
    }
    
    .image-text-split-banner {
        padding: 15px 10px;
        font-size: 10px;
        min-height: 100px;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    .image-text-split-button {
        transition: none;
    }
    
    .image-text-split-button::before {
        display: none;
    }
    
    .image-text-split-content p::before {
        transition: none;
        animation: none;
        transform: rotate(45deg);
    }
    
    .image-text-split-content p {
        animation: none;
        opacity: 1;
        transform: none;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .image-text-split-banner {
        border: 2px solid #ffffff;
    }
    
    .image-text-split-button {
        border: 2px solid #002f5d;
    }
}

/* Focus States */
.image-text-split-button:focus {
    outline: 2px solid #fbcc6c;
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .image-text-split-bg-graphic {
        display: none;
    }
    
    .image-text-split-banner {
        background: #000000 !important;
        color: #ffffff !important;
    }
}
