.hero--updates {
    padding-bottom: 80px;
}

.updates-section {
    padding: 0 0 60px;
    margin-top: -40px;
    position: relative;
    z-index: 1;
}

.updates-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
    margin-top: 20px;
}

.updates-filter,
.updates-filter:link,
.updates-filter:visited {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    color: #1a1a1a;
    background: transparent;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}

.updates-filter:hover,
.updates-filter:active {
    text-decoration: underline;
    color: #1a1a1a;
    background: transparent;
}

.updates-filter--active,
.updates-filter--active:link,
.updates-filter--active:visited {
    background: #1a1a1a;
    color: #fff;
}

.updates-filter--active:hover,
.updates-filter--active:active {
    background: #333;
    color: #fff;
    text-decoration: none;
}

.updates-filter::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.updates-filter:first-child::before {
    display: none;
}

.updates-filter--product::before { background: #4caf50; }
.updates-filter--tools::before { background: #2196f3; }
.updates-filter--integrations::before { background: #ff9800; }
.updates-filter--blog::before { background: #9c27b0; }
.updates-filter--company::before { background: #ef5350; }

.updates-timeline {
    max-width: 680px;
    margin: 0 auto;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    padding: 36px 40px;
    position: relative;
}

.updates-month {
    margin-bottom: 48px;
}

.updates-month__title {
    font-size: 14px;
    font-weight: 600;
    color: #999;
    margin: 0 0 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid #e8e8e8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.updates-entry {
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid #f0f0f0;
}

.updates-entry:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.updates-entry__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 4px;
}

.updates-entry__tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    background: none;
    padding: 0;
}

.updates-entry__tag--product { color: #4caf50; }
.updates-entry__tag--tools { color: #2196f3; }
.updates-entry__tag--integrations { color: #ff9800; }
.updates-entry__tag--blog { color: #9c27b0; }
.updates-entry__tag--company { color: #ef5350; }

.updates-entry__date {
    font-size: 13px;
    color: #999;
}

.updates-entry__title {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 10px;
    line-height: 1.35;
}

.updates-entry__content {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
}

.updates-entry__content a,
.updates-entry__content a:link,
.updates-entry__content a:visited {
    color: #ffae00;
    text-decoration: underline;
}

.updates-entry__content a:hover,
.updates-entry__content a:active {
    color: #e69c00;
}

.updates-entry__content b {
    color: #333;
    font-weight: 600;
}

.updates-empty {
    text-align: center;
    padding: 60px 0;
    color: #999;
}

.updates-empty p {
    font-size: 16px;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .updates-filters {
        gap: 4px;
    }

    .updates-filter {
        padding: 5px 10px;
        font-size: 13px;
    }

    .updates-entry__title {
        font-size: 18px;
    }

    .updates-entry__content {
        font-size: 14px;
    }

    .updates-month__title {
        font-size: 12px;
    }

    .updates-entry__meta {
        flex-wrap: wrap;
        gap: 4px;
    }

    .updates-timeline {
        padding: 24px 20px;
    }
}
