/* Certificate learning path line fix */

.credential-path__track {
    position: relative;
    isolation: isolate;
}

/* Eski uzun çizgiyi kapat */
.credential-path__track::before {
    display: none !important;
}

/* Kartları çizginin üstünde tut */
.credential-path__node {
    position: relative;
    z-index: 2;
}

/* Sadece kartların arasına bağlantı çizgisi */
.credential-path__node::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 100%;
    width: 14px;
    height: 1px;
    background: rgba(148, 163, 184, 0.22);
    transform: translateY(-50%);
    pointer-events: none;
}

/* Son karttan sonra çizgi olmasın */
.credential-path__node:last-child::after {
    display: none;
}

/* Aktif karttan sonraki çizgiyi hafif vurgula */
.credential-path__node.active::after {
    background: rgba(147, 211, 229, 0.45);
}