* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-color: ;
    --sec-bg: ;
    --accent-color: ;
    --sec-accent-color: ;
    --tert-bg: ;
    --text-color: ;
    --section-dark: ;
    --section-highlight-dark: ;
    --shadow-color: color-mix(in srgb, var(--text-color) 5%, transparent);
}

body {
    /* background-color: var(--bg-color); */
    font-family: 'Montserrat', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
}

.updates-section {
    padding: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.updates-header {
    text-align: center;
    margin-bottom: 2rem;
}

.updates-header h1 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.updates-header p {
    color: gray;
}

.updates-feed {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.update-card {
    background: var(--tert-bg);
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    padding: 1rem;
}

.update-card img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 0.75rem;
}

.update-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.update-card p {
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.update-card .time {
    font-size: 0.9rem;
    color: gray;
}