/* ===== Timeline Widget 1b92ac68 ===== */

/* === WRAPPER === */
.tl-1b92ac68-wrap {
    position: relative;
    width: 100%;
}

/* === HORIZONTAL LAYOUT === */
.tl-1b92ac68-wrap--horizontal {
    display: flex;
    align-items: center;
    gap: 12px;
}

.tl-1b92ac68-wrap--horizontal .tl-1b92ac68-track {
    overflow: hidden;
    position: relative;
    flex: 1;
    min-width: 0;
    padding: 20px 0;
}

.tl-1b92ac68-wrap--horizontal .tl-1b92ac68-items {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.tl-1b92ac68-wrap--horizontal .tl-1b92ac68-item {
    flex: 0 0 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    padding: 0 16px;
}

.tl-1b92ac68-wrap--horizontal .tl-1b92ac68-line {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 3px;
    background-color: #E0E0E0;
    z-index: 0;
}

.tl-1b92ac68-wrap--horizontal .tl-1b92ac68-line-progress {
    height: 100%;
    width: 0;
    transition: width 1s ease;
}

/* Horizontal content positions */
.tl-1b92ac68-wrap--horizontal .tl-1b92ac68-item {
    padding-top: 180px;
    padding-bottom: 20px;
}

.tl-1b92ac68-wrap--horizontal .tl-1b92ac68-marker {
    order: 0;
    margin-bottom: 16px;
    z-index: 2;
}

.tl-1b92ac68-wrap--horizontal .tl-1b92ac68-card {
    order: 1;
}

/* Above */
.tl-1b92ac68-hpos--above .tl-1b92ac68-item,
.tl-1b92ac68-hpos--alternate .tl-1b92ac68-item--above {
    flex-direction: column-reverse;
    padding-top: 20px;
    padding-bottom: 180px;
}

.tl-1b92ac68-hpos--above .tl-1b92ac68-marker,
.tl-1b92ac68-hpos--alternate .tl-1b92ac68-item--above .tl-1b92ac68-marker {
    margin-bottom: 0;
    margin-top: 16px;
}

/* Below */
.tl-1b92ac68-hpos--below .tl-1b92ac68-item,
.tl-1b92ac68-hpos--alternate .tl-1b92ac68-item--below {
    flex-direction: column;
    padding-top: 180px;
    padding-bottom: 20px;
}

/* === VERTICAL LAYOUT === */
.tl-1b92ac68-wrap--vertical .tl-1b92ac68-track {
    position: relative;
    padding: 20px 0;
}

.tl-1b92ac68-wrap--vertical .tl-1b92ac68-items {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.tl-1b92ac68-wrap--vertical .tl-1b92ac68-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    background-color: #E0E0E0;
    z-index: 0;
}

.tl-1b92ac68-wrap--vertical .tl-1b92ac68-line-progress {
    width: 100%;
    height: 0;
    transition: height 1s ease;
}

.tl-1b92ac68-wrap--vertical .tl-1b92ac68-item {
    display: flex;
    align-items: flex-start;
    position: relative;
    width: 100%;
}

.tl-1b92ac68-wrap--vertical .tl-1b92ac68-marker {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    flex-shrink: 0;
}

.tl-1b92ac68-wrap--vertical .tl-1b92ac68-card {
    width: calc(50% - 40px);
}

/* Vertical: Alternate */
.tl-1b92ac68-valign--alternate .tl-1b92ac68-item--left .tl-1b92ac68-card {
    margin-right: auto;
}

.tl-1b92ac68-valign--alternate .tl-1b92ac68-item--right .tl-1b92ac68-card {
    margin-left: auto;
}

/* Vertical: Left side */
.tl-1b92ac68-valign--left .tl-1b92ac68-line {
    left: 22px;
    transform: none;
}

.tl-1b92ac68-valign--left .tl-1b92ac68-marker {
    left: 22px;
}

.tl-1b92ac68-valign--left .tl-1b92ac68-card {
    width: auto;
    margin-left: 64px;
}

/* Vertical: Right side */
.tl-1b92ac68-valign--right .tl-1b92ac68-line {
    left: auto;
    right: 22px;
    transform: none;
}

.tl-1b92ac68-valign--right .tl-1b92ac68-marker {
    left: auto;
    right: 22px;
    transform: none;
}

.tl-1b92ac68-valign--right .tl-1b92ac68-card {
    width: auto;
    margin-right: 64px;
}

/* === MARKER === */
.tl-1b92ac68-marker {
    width: 44px;
    height: 44px;
    line-height: 44px;
    border-radius: 50%;
    background-color: #6C63FF;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tl-1b92ac68-marker:hover {
    transform: scale(1.1);
}

.tl-1b92ac68-marker svg {
    width: 16px;
    height: 16px;
}

/* === CARD === */
.tl-1b92ac68-card {
    background-color: #FFFFFF;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tl-1b92ac68-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.tl-1b92ac68-card-img {
    width: 100%;
    height: 160px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.tl-1b92ac68-card-body {
    padding: 16px;
}

.tl-1b92ac68-card-date {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: #6C63FF;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tl-1b92ac68-card-title {
    margin: 0 0 8px;
    font-size: 18px;
    font-weight: 700;
    color: #1A1A2E;
    line-height: 1.3;
}

.tl-1b92ac68-card-desc {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: #555555;
}

/* === NAVIGATION === */
.tl-1b92ac68-nav-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background-color: #6C63FF;
    color: #FFFFFF;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background-color 0.3s ease, transform 0.2s ease;
    z-index: 3;
}

.tl-1b92ac68-nav-btn:hover {
    filter: brightness(1.1);
    transform: scale(1.05);
}

.tl-1b92ac68-nav-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    transform: none;
}

.tl-1b92ac68-nav-btn svg {
    width: 16px;
    height: 16px;
}

/* === ANIMATIONS === */
.tl-1b92ac68-item {
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.tl-1b92ac68-wrap--vertical .tl-1b92ac68-item {
    transform: translateY(30px);
}

.tl-1b92ac68-wrap--horizontal .tl-1b92ac68-item {
    transform: translateY(20px);
}

.tl-1b92ac68-item.tl-1b92ac68-visible {
    opacity: 1;
    transform: translateY(0) translateX(0);
}

/* No animation mode */
.tl-1b92ac68-wrap[data-animate="false"] .tl-1b92ac68-item {
    opacity: 1;
    transform: none;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .tl-1b92ac68-wrap--horizontal .tl-1b92ac68-item {
        flex: 0 0 240px;
    }
}

@media (max-width: 767px) {
    /* Horizontal: stack to single scroll */
    .tl-1b92ac68-wrap--horizontal .tl-1b92ac68-item {
        flex: 0 0 220px;
        padding-top: 120px;
        padding-bottom: 20px;
    }

    .tl-1b92ac68-hpos--above .tl-1b92ac68-item,
    .tl-1b92ac68-hpos--alternate .tl-1b92ac68-item--above {
        flex-direction: column;
        padding-top: 120px;
        padding-bottom: 20px;
    }

    .tl-1b92ac68-hpos--above .tl-1b92ac68-marker,
    .tl-1b92ac68-hpos--alternate .tl-1b92ac68-item--above .tl-1b92ac68-marker {
        margin-top: 0;
        margin-bottom: 16px;
    }

    /* Vertical: force left-aligned single column */
    .tl-1b92ac68-wrap--vertical .tl-1b92ac68-line {
        left: 22px;
        transform: none;
    }

    .tl-1b92ac68-wrap--vertical .tl-1b92ac68-marker {
        left: 22px;
        transform: none;
    }

    .tl-1b92ac68-wrap--vertical .tl-1b92ac68-card {
        width: auto;
        margin-left: 64px;
        margin-right: 0;
    }

    .tl-1b92ac68-valign--alternate .tl-1b92ac68-item--right .tl-1b92ac68-card {
        margin-left: 64px;
        margin-right: 0;
    }
}
