.cit-container-ae768f30 {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    position: relative;
    width: 100%;
    margin: 0 auto;
    padding: 20px 0;
}

/* Nav Header */
.cit-nav {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    position: sticky;
    top: 0;
    z-index: 10;
    padding: 10px 0;
}
.cit-nav-inner {
    display: flex;
    gap: 12px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    padding: 8px;
    border-radius: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    max-width: 100%;
    overflow-x: auto;
}
.cit-nav-link {
    font-size: 13px;
    font-weight: 600;
    color: #475569;
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.25s ease;
    white-space: nowrap;
}
.cit-nav-link:hover, .cit-nav-link.active {
    background-color: #1a365d;
    color: #ffffff;
}

/* Timeline Base */
.cit-timeline {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

/* Line */
.cit-line-wrapper {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    transform: translateX(-50%);
    z-index: 1;
}
.cit-line-base {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #e2e8f0;
    border-radius: 2px;
}
.cit-line-progress {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 0%;
    background-color: #1a365d;
    border-radius: 2px;
    transition: height 0.1s linear;
}

/* Item */
.cit-item {
    position: relative;
    width: 100%;
    margin-bottom: 40px;
    display: flex;
    align-items: flex-start;
}
.cit-item:last-child {
    margin-bottom: 0;
}

/* Marker Wrap */
.cit-marker-wrap {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}
.cit-marker {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #ffffff;
    border: 3px solid #cbd5e1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #475569;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
.cit-marker svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}
.cit-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: currentColor;
}

/* Highlighted States */
.cit-item-completed .cit-marker {
    border-color: #10b981;
    background-color: #10b981;
    color: #ffffff;
}
.cit-item-current .cit-marker {
    border-color: #1a365d;
    background-color: #1a365d;
    color: #ffffff;
    transform: scale(1.1);
}
.cit-item-upcoming .cit-marker {
    border-color: #cbd5e1;
    background-color: #cbd5e1;
    color: #64748b;
}

/* Active Highlight */
.cit-item.cit-active .cit-marker {
    box-shadow: 0 0 0 6px rgba(26, 54, 93, 0.2);
}

/* Card Wrap & Cards */
.cit-card-wrap {
    width: 50%;
    padding: 0 30px;
    box-sizing: border-box;
}
.cit-item-left {
    justify-content: flex-start;
}
.cit-item-left .cit-card-wrap {
    text-align: right;
}
.cit-item-right {
    justify-content: flex-end;
}
.cit-item-right .cit-card-wrap {
    text-align: left;
}

.cit-card {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 24px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    display: inline-block;
    width: 100%;
    box-sizing: border-box;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.cit-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.08);
}

/* Status Badge */
.cit-status-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 4px 8px;
    border-radius: 4px;
    margin-bottom: 12px;
}
.cit-status-completed {
    background-color: #d1fae5;
    color: #065f46;
}
.cit-status-current {
    background-color: #dbeafe;
    color: #1e40af;
}
.cit-status-upcoming {
    background-color: #f1f5f9;
    color: #475569;
}

/* DateTime */
.cit-datetime-wrap {
    font-size: 13px;
    font-weight: 600;
    color: #475569;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.cit-item-left .cit-datetime-wrap {
    justify-content: flex-start;
}
.cit-sep {
    color: #cbd5e1;
}

/* Title */
.cit-title {
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 12px 0;
    line-height: 1.3;
}

/* Image */
.cit-img-wrap {
    width: 100%;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 12px;
}
.cit-img-wrap img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Description */
.cit-desc {
    font-size: 14px;
    color: #475569;
    line-height: 1.5;
    margin: 0 0 16px 0;
}

/* Location */
.cit-loc {
    font-size: 13px;
    color: #1e293b;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 16px;
}
.cit-loc i {
    color: #1a365d;
}

/* Button */
.cit-btn-wrap {
    margin-top: 16px;
}
.cit-btn {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: #ffffff;
    background-color: #1a365d;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    transition: background-color 0.2s ease;
}
.cit-btn:hover {
    background-color: #0f172a;
}

/* Expandable Details */
.cit-expand-trigger {
    background: none;
    border: none;
    font-size: 13px;
    font-weight: 600;
    color: #1a365d;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0;
    margin-bottom: 12px;
}
.cit-expand-trigger i {
    transition: transform 0.2s ease;
}
.cit-expand-trigger[aria-expanded="true"] i {
    transform: rotate(180deg);
}
.cit-details {
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}
.cit-details-inner {
    padding: 12px 0;
    border-top: 1px solid #f1f5f9;
    font-size: 13.5px;
    color: #64748b;
    line-height: 1.6;
}

/* Animations */
.cit-has-animations .cit-item {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.cit-has-animations .cit-item.cit-visible {
    opacity: 1;
    transform: translateY(0);
}

/* RESPONSIVE LAYOUT */
@media (max-width: 768px) {
    .cit-line-wrapper {
        left: 20px;
        transform: none;
    }
    .cit-marker-wrap {
        left: 20px;
        transform: translateX(-50%);
    }
    .cit-card-wrap {
        width: 100%;
        padding-left: 50px;
        padding-right: 10px;
    }
    .cit-item-left .cit-card-wrap,
    .cit-item-right .cit-card-wrap {
        text-align: left;
    }
    .cit-item-left .cit-datetime-wrap,
    .cit-item-right .cit-datetime-wrap {
        justify-content: flex-start;
    }
}

/* Reduce Motion */
@media (prefers-reduced-motion: reduce) {
    .cit-has-animations .cit-item,
    .cit-card,
    .cit-marker,
    .cit-expand-trigger i,
    .cit-line-progress {
        transition: none !important;
        transform: none !important;
        opacity: 1 !important;
    }
}
