/* Programs Vertical Timeline — pvt-17603 v1.1.0 */

.pvt-wrapper {
    position: relative;
    font-family: 'Karla', sans-serif;
}

/* ── Rail (track + fill) ── */
.pvt-line-rail {
    position: absolute;
    top: 0;
    left: 7px;
    bottom: 0;
    width: 3px;
    pointer-events: none;
    z-index: 0;
}

.pvt-track {
    position: absolute;
    inset: 0;
    width: 3px;
    background-color: #F0D5C4;
    border-radius: 99px;
}

.pvt-fill {
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 0px;
    background-color: #E05C00;
    border-radius: 99px;
    will-change: height;
}

/* ── Items ── */
.pvt-items {
    position: relative;
    z-index: 1;
}

.pvt-item {
    display: flex;
    align-items: flex-start;
    position: relative;
}

.pvt-item + .pvt-item {
    margin-top: 64px;
}

/* ── Dot ── */
.pvt-dot-wrap {
    flex-shrink: 0;
    display: flex;
    align-items: flex-start;
    padding-top: 4px;
    z-index: 2;
}

.pvt-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: #F0D5C4;
    border: 3px solid #E05C00;
    box-shadow: 0 0 0 0px transparent;
    transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
    position: relative;
    z-index: 2;
}

.pvt-dot.pvt-dot--active {
    background-color: #E05C00;
    border-color: #E05C00;
    transform: scale(1.2);
    box-shadow: 0 0 0 5px rgba(224, 92, 0, 0.22);
}

/* ── Content ── */
.pvt-content {
    flex: 1;
    padding-left: 48px;
}

/* ── Pill ── */
.pvt-pill {
    display: inline-block;
    background-color: #FFF0E6;
    color: #E05C00;
    font-size: 13px;
    font-weight: 600;
    line-height: 1;
    padding: 5px 12px;
    border-radius: 99px;
    margin-bottom: 10px;
    letter-spacing: 0.02em;
}

/* ── Heading ── */
.pvt-heading {
    font-family: 'Karla', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #333333;
    margin: 0 0 10px;
    line-height: 1.3;
}

/* ── Body ── */
.pvt-body {
    font-family: 'Karla', sans-serif;
    font-size: 16px;
    color: #7A7A7A;
    line-height: 1.7;
    margin-bottom: 18px;
}

.pvt-body p {
    margin: 0 0 0.75em;
}

/* ── CTA ── */
.pvt-cta {
    display: inline-block;
    background-color: #E05C00;
    color: #ffffff;
    font-family: 'Karla', sans-serif;
    font-size: 15px;
    font-weight: 600;
    padding: 10px 24px;
    border-radius: 6px;
    text-decoration: none;
    transition: background-color 0.2s ease, transform 0.15s ease;
}

.pvt-cta:hover {
    background-color: #c44f00;
    color: #ffffff;
    transform: translateY(-1px);
}

/* ── Template placeholder (editor only) ── */
.pvt-template-placeholder {
    padding: 16px;
    background: #f9f9f9;
    border: 1px dashed #ccc;
    border-radius: 6px;
    color: #888;
    font-size: 14px;
}
