.training-pathway-dd497332 {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 100%;
}

.training-pathway-dd497332 .tp-step {
    display: flex;
    background: #fdfdfd;
    border: 1px solid #eaeaea;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.training-pathway-dd497332 .tp-step-number-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: #fafafa;
    border-right: 1px solid #eaeaea;
    min-width: 80px;
}

.training-pathway-dd497332 .tp-step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #000;
    color: #fff;
    border-radius: 50%;
    font-size: 1.25rem;
    font-weight: bold;
}

.training-pathway-dd497332 .tp-step-content-wrapper {
    flex: 1;
    padding: 20px;
}

.training-pathway-dd497332 .tp-step-banner {
    width: 100%;
    margin-bottom: 20px;
}

.training-pathway-dd497332 .tp-step-banner img {
    width: 100%;
    height: auto;
    max-height: 250px;
    display: block;
    object-fit: cover;
    border-radius: 4px;
}

.training-pathway-dd497332 .tp-step-title {
    margin: 0 0 15px;
    font-size: 1.25rem;
    font-weight: bold;
}

.training-pathway-dd497332 .tp-step-desc {
    font-size: 1rem;
    line-height: 1.5;
}

@media (max-width: 767px) {
    .training-pathway-dd497332 .tp-step {
        flex-direction: column;
    }
    
    .training-pathway-dd497332 .tp-step-number-wrapper {
        border-right: none;
        border-bottom: 1px solid #eaeaea;
    }
}