/*
 * Career Counselling – PATH / ROADMAP layout (distinct design)
 * Vertical path with nodes, no card grid
 * KIIT Entrance Wings | Bootstrap 5
 */

.cc-page .content-section { background: #fff; padding: 2rem 0 4rem; }

.cc-lead {
    font-size: 1.1rem;
    color: #475569;
    max-width: 680px;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

/* Path = vertical line + nodes */
.cc-path {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    padding-left: 3rem;
}

.cc-path::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #7c3aed, #5b21b6);
    border-radius: 2px;
}

.cc-node {
    position: relative;
    padding-bottom: 2rem;
    padding-left: 3rem;
}

.cc-node::before {
    content: '';
    position: absolute;
    left: 4px;
    top: 0.4rem;
    width: 24px;
    height: 24px;
    background: #7c3aed;
    border: 4px solid #fff;
    border-radius: 50%;
    box-shadow: 0 0 0 2px #7c3aed;
    z-index: 1;
}

.cc-node-label {
    font-size: 0.75rem;
    font-weight: 800;
    color: #7c3aed;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 0.35rem;
}

.cc-node-title {
    font-size: 1.2rem;
    font-weight: 800;
    color: #0a1628;
    margin: 0 0 0.5rem;
}

.cc-node-desc {
    font-size: 0.95rem;
    color: #475569;
    margin: 0;
    line-height: 1.7;
}

.cc-node-content { padding-left: 0; }

/* Gallery strip – simple grid */
.cc-gallery { margin-top: 3rem; }
.cc-gallery-title { font-size: 1.25rem; font-weight: 800; color: #0a1628; margin-bottom: 1rem; }
.cc-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}
.cc-gallery-item {
    aspect-ratio: 1;
    border-radius: 12px;
    overflow: hidden;
    background: #f1f5f9;
}
.cc-gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (max-width: 767px) { .cc-gallery-grid { grid-template-columns: repeat(2, 1fr); } }
