main .pf-changelog-hero {
    padding: 170px 0 80px;
    background: #f8f5ef;
}

main .pf-changelog-hero-card,
main .pf-changelog-update {
    border: 1px solid rgba(5, 3, 18, .1);
    border-radius: 24px;
    background: #fff;
}

main .pf-changelog-hero-card {
    padding: 34px;
    text-align: center;
}

main .pf-changelog-hero-count {
    display: block;
    color: #fd4621;
    font-family: var(--tp-ff-heading);
    font-size: 72px;
    font-weight: 700;
    line-height: 1;
}

main .pf-changelog-hero-label {
    color: #5c5a64;
    font-size: 17px;
}

main .pf-changelog-list {
    padding-top: 70px;
    background: #f8f5ef;
}

main .pf-changelog-timeline {
    position: relative;
    display: grid;
    gap: 34px;
}

main .pf-changelog-week {
    position: relative;
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 26px;
}

main .pf-changelog-week::before {
    position: absolute;
    top: 18px;
    bottom: -52px;
    left: 17px;
    width: 2px;
    background: rgba(5, 3, 18, .12);
    content: '';
}

main .pf-changelog-week:last-child::before {
    display: none;
}

main .pf-changelog-week-marker {
    position: relative;
    z-index: 1;
    width: 36px;
    height: 36px;
    border: 8px solid #fff;
    border-radius: 999px;
    background: #fd4621;
    box-shadow: 0 12px 30px rgba(253, 70, 33, .18);
}

main .pf-changelog-week-content {
    min-width: 0;
}

main .pf-changelog-week-header {
    margin-bottom: 22px;
}

main .pf-changelog-week-label {
    display: inline-flex;
    margin-bottom: 12px;
    color: #fd4621;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: .02em;
    text-transform: uppercase;
}

main .pf-changelog-week-header h2 {
    max-width: 920px;
    margin: 0;
    color: #050312;
    font-family: var(--tp-ff-heading);
    font-size: 34px;
    line-height: 1.18;
}

main .pf-changelog-update {
    padding: 28px;
    transition: transform .2s ease, box-shadow .2s ease;
}

main .pf-changelog-update:hover {
    transform: translateY(-3px);
    box-shadow: 0 24px 70px rgba(5, 3, 18, .08);
}

main .pf-changelog-update span {
    display: inline-flex;
    margin-bottom: 18px;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(253, 70, 33, .1);
    color: #9d2b14;
    font-size: 13px;
    font-weight: 800;
}

main .pf-changelog-update h3 {
    margin-bottom: 12px;
    color: #050312;
    font-size: 24px;
    line-height: 1.2;
}

main .pf-changelog-update p {
    margin: 0;
    color: #5c5a64;
    line-height: 1.6;
}

@media (max-width: 767px) {
    main .pf-changelog-hero {
        padding: 140px 0 60px;
    }

    main .pf-changelog-week {
        grid-template-columns: 28px minmax(0, 1fr);
        gap: 16px;
    }

    main .pf-changelog-week::before {
        left: 13px;
    }

    main .pf-changelog-week-marker {
        width: 28px;
        height: 28px;
        border-width: 6px;
    }

    main .pf-changelog-week-header h2 {
        font-size: 26px;
    }
}
