/* KOD95 Content Section Styles */

/* KOD95 Content Container */
.kod95-content {
    margin-top: 3rem;
}

/* KOD95 Row Layout - Connected Design */
.kod95-row {
    display: flex;
    align-items: stretch;
    gap: 0;
    margin-bottom: 3rem;
    background: transparent;
    border-radius: 0;
    overflow: visible;
    box-shadow: none;
}

.kod95-row.reverse {
    flex-direction: row-reverse;
}

/* KOD95 Image Styling - Connected to Text */
.kod95-image {
    flex: 0 0 40%;
    height: auto;
    overflow: hidden;
    border-radius: 0;
}

.kod95-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 350px;
    transition: none;
    display: block;
}

/* KOD95 Text Content - Connected Design */
.kod95-text {
    flex: 1;
    padding: 3rem;
    background: #ffffff;
    border-radius: 0;
}

.kod95-text h3 {
    color: #1a1f36;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.kod95-text p {
    color: #4a5568;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.kod95-text p:last-child {
    margin-bottom: 0;
}

/* Ensure seamless connection without decorative elements */
.kod95-row {
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    overflow: hidden;
    background: #ffffff;
}

/* Remove individual shadows since container has shadow */
.kod95-image {
    box-shadow: none;
    position: relative;
}


.kod95-text {
    box-shadow: none;
    background: #ffffff;
}

/* Responsive Design */
@media (max-width: 992px) {
    .kod95-row,
    .kod95-row.reverse {
        flex-direction: column;
        gap: 0;
    }
    
    .kod95-image {
        flex: none;
        width: 100%;
        height: 250px;
    }
    
    .kod95-text {
        padding: 2rem;
    }
    
    .kod95-text h3 {
        font-size: 1.5rem;
    }
    
    .kod95-text p {
        font-size: 1rem;
    }
    
    
    .kod95-image img {
        min-height: 250px;
    }
}

@media (max-width: 576px) {
    .kod95-row {
        margin-bottom: 2rem;
    }
    
    .kod95-image {
        height: 200px;
    }
    
    .kod95-image img {
        min-height: 200px;
    }
    
    .kod95-text {
        padding: 1.5rem;
    }
    
    .kod95-text h3 {
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }
}

/* Override previous KOD95 grid styles */
.kod95-grid {
    display: none !important;
}

/* Ensure section header is properly styled */
.kod95-section .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.kod95-section .section-header h2 {
    color: #1a1f36;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.kod95-section .section-header p {
    color: #718096;
    font-size: 1.25rem;
}
