:root {
    --bg: #ffffff;
    --surface: #ffffff;
    --text: #1d1d1f;
    --muted: #6e6e73;
    --line: #d2d2d7;
    --hover: #0066cc;
}

* { box-sizing: border-box; }

body.newsroom-page {
    margin: 0;
    font-family: "SF Pro Text", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--text);
    background: var(--bg);
}

.newsroom-header {
    background: #fff;
    border-bottom: 1px solid #f5f5f7;
}

.newsroom-header-inner {
    max-width: 1120px;
    margin: 0 auto;
    min-height: 84px;
    padding: 0 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.newsroom-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text);
    font-weight: 600;
}

.newsroom-brand span { font-size: 1.5rem; }

.newsroom-main-nav {
    display: inline-flex;
    gap: 8px;
}

.newsroom-main-nav a {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 9px;
}

.newsroom-main-nav a.is-active {
    background: #f5f5f7;
}

.watch-btn {
    text-decoration: none;
    color: var(--text);
    font-weight: 600;
}

.newsroom-filter-row {
    border-top: 1px solid #f5f5f7;
    border-bottom: 1px solid #f5f5f7;
    background: #fafafa;
}

.newsroom-filter-inner {
    max-width: 1120px;
    margin: 0 auto;
    min-height: 118px;
    padding: 0 22px;
    display: flex;
    align-items: center;
}

.filter-pills { display: flex; gap: 10px; flex-wrap: wrap; }

.filter-pill {
    border: 1px solid transparent;
    background: transparent;
    color: var(--text);
    font: inherit;
    font-weight: 500;
    padding: 10px 16px;
    border-radius: 999px;
    cursor: pointer;
}

.filter-pill.is-active {
    border-color: var(--line);
    background: #fff;
}

.newsroom-feature-wrap,
.newsroom-grid-section {
    max-width: 1120px;
    margin: 0 auto;
    padding: 34px 22px;
}

.newsroom-feature-card {
    display: grid;
    grid-template-columns: minmax(280px, 420px) 1fr;
    border-radius: 26px;
    overflow: hidden;
    background: #f5f5f7;
}

.feature-art {
    background: linear-gradient(160deg, #111 0%, #292929 100%);
    position: relative;
    min-height: 360px;
    overflow: hidden;
}

.bubble {
    position: absolute;
    border-radius: 50%;
}

.bubble-lg { width: 220px; height: 220px; left: 18px; top: 28px; background: radial-gradient(circle at 30% 30%, #7dd3fc, #2563eb); }
.bubble-md { width: 140px; height: 140px; right: 24px; top: 120px; background: radial-gradient(circle at 30% 30%, #a7f3d0, #10b981); }
.bubble-sm { width: 96px; height: 96px; left: 96px; bottom: 20px; background: radial-gradient(circle at 30% 30%, #f9a8d4, #ec4899); }

.feature-logo {
    position: absolute;
    right: 18px;
    bottom: 18px;
    width: 62px;
    height: 62px;
    border-radius: 16px;
    background: #fff;
    color: #111;
    display: grid;
    place-items: center;
    font-weight: 700;
}

.feature-content {
    padding: 42px 44px;
}

.feature-meta,
.news-card-meta,
.press-release-date {
    margin: 0 0 12px;
    color: var(--muted);
    font-size: 0.95rem;
}

.feature-content h1,
.press-release-title {
    margin: 0;
    font-size: clamp(2.2rem, 4.5vw, 4rem);
    line-height: 1.08;
    letter-spacing: -0.02em;
}

.feature-content p,
.press-release-lede {
    margin: 16px 0 0;
    color: #424245;
    font-size: 1.2rem;
    line-height: 1.4;
}

.read-more {
    display: inline-block;
    margin-top: 24px;
    text-decoration: none;
    color: var(--text);
    font-weight: 600;
}

.read-more:hover,
.news-card a:hover,
.newsroom-home:hover { color: var(--hover); }

.newsroom-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.news-card {
    border: 1px solid #f0f0f0;
    border-radius: 18px;
    padding: 14px 14px 18px;
    background: #fff;
}

.news-bubbles {
    position: relative;
    overflow: hidden;
    border-radius: 13px;
    height: 204px;
    background: #171717;
}

.news-bubbles::before,
.news-bubbles::after {
    content: "";
    position: absolute;
    border-radius: 50%;
}

.news-bubbles::before {
    width: 130px;
    height: 130px;
    background: radial-gradient(circle at 30% 30%, #93c5fd, #2563eb);
    left: -14px;
    top: -12px;
}

.news-bubbles::after {
    width: 130px;
    height: 130px;
    background: radial-gradient(circle at 30% 30%, #6ee7b7, #10b981);
    right: -18px;
    bottom: -18px;
}

.news-card h2 {
    margin: 0;
    font-size: 1.34rem;
    line-height: 1.25;
}

.news-card a {
    display: inline-block;
    margin-top: 12px;
    color: var(--text);
    font-weight: 600;
}

/* Apple-like press release page */
.press-release-shell {
    max-width: 980px;
    margin: 0 auto;
    padding: 38px 22px 84px;
}

.press-release-hero {
    margin: 0 auto;
    max-width: 760px;
}

.press-release-title {
    font-weight: 600;
}

.press-release-bubbles {
    margin-top: 26px;
    height: 210px;
    border-radius: 20px;
    background: #171717;
    position: relative;
    overflow: hidden;
}

.press-release-bubbles::before,
.press-release-bubbles::after,
.press-release-bubble-center {
    content: "";
    position: absolute;
    border-radius: 50%;
}

.press-release-bubbles::before {
    width: 220px;
    height: 220px;
    left: -40px;
    top: -30px;
    background: radial-gradient(circle at 32% 32%, #bae6fd, #3b82f6);
}

.press-release-bubbles::after {
    width: 170px;
    height: 170px;
    right: -30px;
    bottom: -40px;
    background: radial-gradient(circle at 32% 32%, #86efac, #10b981);
}

.press-release-bubble-center {
    width: 140px;
    height: 140px;
    left: calc(50% - 70px);
    top: 38px;
    background: radial-gradient(circle at 32% 32%, #f9a8d4, #ec4899);
}

.press-release-content {
    max-width: 760px;
    margin: 34px auto 0;
}

.press-release-content p {
    margin: 0 0 22px;
    font-size: 1.06rem;
    line-height: 1.72;
}

.newsroom-home {
    display: inline-block;
    margin-top: 16px;
    text-decoration: none;
    color: var(--muted);
    font-weight: 500;
}

@media (max-width: 980px) {
    .newsroom-main-nav { display: none; }
    .newsroom-feature-card { grid-template-columns: 1fr; }
    .newsroom-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
    .newsroom-grid { grid-template-columns: 1fr; }
    .feature-content { padding: 24px; }
    .feature-content h1,
    .press-release-title { font-size: clamp(1.8rem, 8vw, 2.6rem); }
}
