.vob_journey-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.vob_step-card {
    background: white;
    border: 3px solid #e0e0e0;
    border-radius: 12px;
    padding: 18px;
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: block;
}

.vob_step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.vob_step-card.vob_completed {
    border-color: #488ccb;
    background: linear-gradient(135deg, #e6f3ff, #ffffff);
}

.vob_step-card.vob_in-progress {
    border-color: #f58220;
    background: linear-gradient(135deg, #fff5e6, #ffffff);
}

.vob_step-status {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: bold;
}

.vob_step-card.vob_completed .vob_step-status {
    background: #488ccb;
    color: white;
}

.vob_step-card.vob_in-progress .vob_step-status {
    background: #f58220;
    color: white;
}

.vob_step-card.vob_not-started .vob_step-status {
    background: #e0e0e0;
    color: #999;
}

.vob_step-icon {
    font-size: 36px;
    margin-bottom: 10px;
}

.vob_step-title {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    margin-bottom: 8px;
}

.vob_step-description {
    color: #666;
    font-size: 13px;
    line-height: 1.4;
    margin-bottom: 12px;
}

.vob_step-duration {
    display: inline-block;
    background: #f8f9fa;
    padding: 4px 10px;
    border-radius: 10px;
    font-size: 11px;
    color: #666;
    margin-bottom: 12px;
}

.vob_step-card.vob_completed .vob_step-duration {
    background: #e6f3ff;
    color: #488ccb;
}

.vob_step-card.vob_in-progress .vob_step-duration {
    background: #fff5e6;
    color: #f58220;
}

.vob_step-button {
    display: inline-block;
    background: #488ccb;
    color: white;
    padding: 8px 16px;
    border-radius: 18px;
    text-decoration: none;
    font-size: 13px;
    font-weight: bold;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.vob_step-button:hover {
    background: #3a7ab8;
    transform: translateY(-2px);
}

.vob_step-card.vob_completed .vob_step-button {
    background: #e0e0e0;
    color: #666;
    pointer-events: none;
}

.vob_step-card.vob_in-progress .vob_step-button {
    background: #f58220;
}

.vob_step-card.vob_in-progress .vob_step-button:hover {
    background: #e06f0a;
}

.vob_completion-date {
    font-size: 11px;
    color: #488ccb;
    margin-top: 8px;
    font-weight: bold;
}

@media (max-width: 768px) {
    .vob_journey-grid {
        grid-template-columns: 1fr;
    }
}
