#updates {
    min-height: 100%;
    background: #f4f4f4;
    transform: none;
}

.updates-page-inner {
    min-height: 100%;
    padding: 56px 8vw 96px;
    display: grid;
    align-content: start;
}

.updates-block {
    max-width: 620px;
    margin: 0 auto;
    width: 100%;
}

.updates-label,
.updates-small-label {
    letter-spacing: 0.12em;
    font-size: 12px;
    color: #828286;
    text-transform: uppercase;
    opacity: 0.6;
    font-weight: 500;
    margin-bottom: 16px;
}

.updates-title {
    font-size: var(--page-title-size);
    font-weight: 600;
    line-height: 1.12;
    letter-spacing: -0.025em;
    color: #1D1D1F;
    margin: 0 0 28px 0;
}

.updates-intro {
    max-width: 42ch;
    font-size: 18px;
    line-height: 1.55;
    letter-spacing: -0.01em;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.68);
    margin: 0;
}

/* Email Form */
.updates-form {
    max-width: 620px;
    margin-top: 48px;
}

.updates-email-row {
    position: relative;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.14);
    transition: border-color 0.2s ease;
}

.updates-email-row:focus-within {
    border-color: rgba(0, 0, 0, 0.38);
}

.updates-email-row input {
    width: 100%;
    border: 0;
    outline: 0;
    background: transparent;
    color: #1D1D1F;
    padding: 18px 72px 18px 0;
    font: inherit;
    font-size: 18px;
    line-height: 1.3;
    letter-spacing: -0.015em;
}

.updates-email-row input::placeholder {
    color: rgba(0, 0, 0, 0.32);
}

.updates-email-row button {
    position: absolute;
    right: 0;
    border: 0;
    background: transparent;
    color: rgba(0, 0, 0, 0.56);
    padding: 14px 0 14px 16px;
    font: inherit;
    font-size: 15px;
    line-height: 1;
    font-weight: 500;
    letter-spacing: -0.01em;
    cursor: pointer;
    transition:
        color 0.2s ease,
        transform 0.2s ease;
}

.updates-email-row button:hover {
    color: #1D1D1F;
    transform: translateX(-4px);
}

/* Archive */
.updates-archive {
    margin-top: 0;
    padding-top: 28px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.updates-archive-title {
    font-size: 22px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.025em;
    color: #1D1D1F;
    margin: 0;
}

.release-list {
    display: flex;
    flex-direction: column;
    margin-top: 20px;
}

.release-item {
    position: relative;
    display: flex;
    justify-content: space-between;
    gap: 32px;
    padding: 18px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    transition:
        padding-left 0.2s ease,
        background-color 0.2s ease,
        border-color 0.2s ease;
}

.release-item:last-child {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.release-item:hover {
    padding-left: 10px;
    background-color: rgba(0, 0, 0, 0.025);
    border-top-color: rgba(0, 0, 0, 0.14);
}

.release-type {
    letter-spacing: 0.12em;
    font-size: 11px;
    color: #828286;
    text-transform: uppercase;
    opacity: 0.6;
    font-weight: 500;
    margin: 0 0 8px 0;
}

.release-item h3 {
    font-size: 17px;
    line-height: 1.3;
    font-weight: 600;
    letter-spacing: -0.015em;
    color: #1D1D1F;
    margin: 0;
}

.release-item span {
    flex: 0 0 auto;
    margin-top: 1px;
    white-space: nowrap;
    font-size: 14px;
    line-height: 1.4;
    letter-spacing: -0.01em;
    color: rgba(0, 0, 0, 0.48);
}

/* Accessibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
}

/* Responsive */
@media (max-width: 640px) {
    .updates-page-inner {
        min-height: calc(100svh - 120px);
        padding: 40px 24px 72px;
        align-content: start;
    }

    .updates-block {
        max-width: 100%;
        margin: 0;
    }

    .updates-title {
        max-width: 100%;
        font-size: clamp(32px, 8.6vw, 42px);
        line-height: 1.04;
        letter-spacing: -0.045em;
        margin-bottom: 24px;
    }

    .updates-intro {
        max-width: 34ch;
        font-size: 16px;
        line-height: 1.5;
    }

    .updates-form {
        max-width: 100%;
        margin-top: 40px;
    }

    .updates-archive {
        padding-top: 36px;
    }
}

@media (max-width: 460px) {
    .updates-page-inner {
        padding: 40px 24px 56px;
    }

    .updates-email-row input {
        padding-right: 60px;
    }

    .release-item {
        display: block;
    }

    .release-item span {
        display: block;
        margin-top: 10px;
    }
}