.updates-feed-header {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
    padding: 40px 128px;
    background: var(--card-bg, #FFFFFF);
    border-bottom: 1px solid var(--border-color, #E5E7EB);
    box-sizing: border-box;
}

.updates-feed-title {
    margin: 0;
    font-family: 'Work Sans', sans-serif;
    font-size: 24px;
    font-weight: 500;
    color: var(--text-color, #111827);
}

.updates-feed-subtitle {
    margin: 0;
    font-family: 'Work Sans', sans-serif;
    font-size: 18px;
    color: var(--text-secondary, #6B7280);
}

.updates-feed-content {
    display: flex;
    flex-direction: column;
    gap: 56px;
    width: 100%;
    padding: 32px 128px;
    box-sizing: border-box;
}

.updates-feed-back-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #0EA5E9;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
}

.updates-feed-back-link:hover {
    text-decoration: underline;
}

@media (max-width: 900px) {
    .updates-feed-header {
        padding: 20px 16px;
    }

    .updates-feed-title {
        font-size: 22px;
    }

    .updates-feed-subtitle {
        font-size: 15px;
    }

    .updates-feed-content {
        gap: 24px;
        padding: 24px 16px;
    }
}
