#visualGuideItkContainer{
    height: 550px;
    background: var(--primary);
    position: relative;
    margin-bottom: 3rem;
}

#visualGuideItkFeaturedContainer{
    height: 100%;
    display: flex;
    align-items: center;
    color: white;
    position: relative;
}

.visual-guide-itk-cover-container{
    height: 100%;
    width: 55%;
    position: absolute;
    right: 0;
    top: 0;
}

.visual-guide-itk-cover-wrapper{
    height: 100%;
    width: 100%;
    position: relative;
}

.visual-guide-itk-cover-wrapper::before{
    content: "";
    top: 0;
    left: 0;
    position: absolute;
    height: 100%;
    width: 100%;
    background: linear-gradient(90deg, rgba(31,111,190,1) 0, rgba(31,111,190, 0) 35%);
    z-index: 3;
}

.visual-guide-itk-cover{
    position: absolute;
    top: 0;
    right: 0;
    height: 550px;
    object-fit: cover;
    width: 100%;
}

.visual-guide-itk-featured-title{
    width: 50%;
    padding-right: 3rem;
    z-index: 5;
}

#visualGuideItkImg{
    position: absolute;
    right: 0;
    bottom: 0;
    height: 300px;
    object-fit: cover;
}

.visual-guide-itk-timeline-col{
    width: 40%;
}

.visual-guide-itk-usage-col{
    width: 60%;
}

/* Mengapa Panduan ini digunakan - text card */
.visual-guide-itk-why-card{
    width: calc(50% + 3rem);
    margin-right: -3rem;
    padding-top: 5rem;
    padding-bottom: 5rem;
    padding-right: 6rem;
}

/* Mengapa Panduan ini digunakan - quote card */
.visual-guide-itk-quote-card{
    width: 50%;
}

.visual-guide-itk-quote-content{
    padding-top: 4rem;
    padding-bottom: 4.5rem;
}

.visual-guide-itk-quote-mark{
    font-size: 80px;
}

.visual-guide-itk-quote-text{
    width: 80%;
}

/* Dasar Perubahan Identitas Visual - timeline */
.visual-guide-itk-timeline-item{
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding-bottom: 2.5rem;
}

.visual-guide-itk-timeline-item:last-child{
    padding-bottom: 0;
}

.visual-guide-itk-timeline-marker{
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-guide-itk-timeline-marker-year{
    width: 64px;
    height: 64px;
    background: var(--primary);
    color: white;
    font-size: 1rem;
    font-weight: 700;
}

.visual-guide-itk-timeline-marker-secondary{
    background: #5B9BD5;
}

.visual-guide-itk-timeline-marker-warning{
    background: var(--secondary);
}

.visual-guide-itk-timeline-dot-col{
    position: relative;
    width: 12px;
    align-self: stretch;
    flex-shrink: 0;
}

.visual-guide-itk-timeline-dot{
    display: block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: white;
    border: 3px solid var(--primary);
    margin-top: 26px;
    position: relative;
    z-index: 1;
}

/* Draws the connector once per gap, from this item's marker center down to the next item's marker center - avoids double-drawing (and double opacity) across the shared boundary. */
.visual-guide-itk-timeline-item:not(:last-child) .visual-guide-itk-timeline-dot-col::after{
    content: "";
    position: absolute;
    top: 32px;
    bottom: -4.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    background: rgba(31, 111, 190, 0.25);
}

.visual-guide-itk-timeline-dot-warning{
    border-color: var(--secondary);
}

.visual-guide-itk-timeline-content p{
    font-size: 0.9rem;
}

/* Digunakan Untuk Apa Saja - usage grid */
.visual-guide-itk-usage-icon{
    width: 56px;
    height: 56px;
    border-radius: 50%;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.visual-guide-itk-usage-item p:not(.fw-bold){
    font-size: 0.9rem;
}