:root {
    --jews-blue: #0038b8;
    --jews-blue-dark: #0a2b63;
    --jews-blue-deep: #061a3f;
    --jews-pale: #f5f8fe;
    --jews-white: #ffffff;
    --jews-ink: #111827;
    --jews-muted: #5b6575;
    --jews-line: #d8e0ec;
    --jews-shell: 1216px;
    --jews-masthead-rule: 6px;
    --jews-serif: Georgia, "Times New Roman", serif;
    --jews-sans: Arial, Helvetica, sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.jews-site {
    margin: 0;
    overflow-x: hidden;
    background: var(--jews-white);
    color: var(--jews-ink);
    font-family: var(--jews-sans);
    line-height: 1.55;
}

a {
    color: inherit;
}

img {
    max-width: 100%;
}

.jews-shell,
.jews-topbar__inner,
.jews-masthead__inner,
.jews-nav-wrap,
.jews-footer__inner,
.jews-footer__bottom,
.jews-government__inner,
.jews-embassy__inner {
    width: min(var(--jews-shell), calc(100% - 64px));
    margin-inline: auto;
}

.jews-visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.jews-skip-link {
    position: fixed;
    z-index: 1000;
    top: 12px;
    left: 12px;
    padding: 10px 14px;
    transform: translateY(-160%);
    background: #fff;
    color: var(--jews-blue-dark);
    font-weight: 800;
    text-decoration: none;
}

.jews-skip-link:focus {
    transform: translateY(0);
}

.jews-topbar {
    background: var(--jews-blue-deep);
    color: #fff;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .02em;
}

.jews-topbar__inner {
    min-height: 34px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.jews-topbar nav {
    display: flex;
    gap: 18px;
}

.jews-topbar a {
    color: #dce7ff;
    text-decoration: none;
}

.jews-topbar a:hover {
    color: #fff;
}

.jews-masthead {
    background: #fff;
    border-top: var(--jews-masthead-rule) solid var(--jews-blue);
    border-bottom: var(--jews-masthead-rule) solid var(--jews-blue);
}

.jews-masthead__inner {
    min-height: 142px;
    display: flex;
    align-items: center;
}

.jews-brand {
    display: inline-block;
    color: var(--jews-blue);
    text-decoration: none;
}

.jews-brand__wordmark {
    display: grid;
}

.jews-brand__name {
    color: var(--jews-blue-dark);
    font: 700 clamp(3.45rem, 5.2vw, 4.85rem)/.78 var(--jews-serif);
    letter-spacing: -.045em;
}

.jews-brand__name small {
    margin-left: 5px;
    color: var(--jews-blue);
    font: 700 .34em/1 var(--jews-sans);
    letter-spacing: -.02em;
}

.jews-brand__tagline {
    margin-top: 13px;
    padding-left: 3px;
    color: var(--jews-muted);
    font-size: .71rem;
    font-weight: 800;
    letter-spacing: .19em;
    text-transform: uppercase;
}

.jews-nav-wrap {
    min-height: 58px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 24px;
}

.jews-header {
    border-bottom: 1px solid var(--jews-line);
}

.jews-nav {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: clamp(17px, 2.1vw, 28px);
}

.jews-nav__link {
    position: relative;
    min-height: 58px;
    display: flex;
    align-items: center;
    color: var(--jews-ink);
    font-size: .75rem;
    font-weight: 850;
    letter-spacing: .045em;
    text-decoration: none;
    text-transform: uppercase;
    white-space: nowrap;
}

.jews-nav__link::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -1px;
    left: 0;
    height: 3px;
    transform: scaleX(0);
    transform-origin: left;
    background: var(--jews-blue);
    transition: transform .18s ease;
}

.jews-nav__link:hover,
.jews-nav__link--active {
    color: var(--jews-blue);
}

.jews-nav__link:hover::after,
.jews-nav__link--active::after {
    transform: scaleX(1);
}

.jews-search {
    display: grid;
    grid-template-columns: 148px 44px;
    align-items: center;
}

.jews-search input {
    height: 44px;
    min-width: 0;
    padding: 0 12px;
    border: 1px solid var(--jews-line);
    border-right: 0;
    border-radius: 0;
    background: #fff;
    font: inherit;
}

.jews-search button {
    position: relative;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 0;
    background: var(--jews-blue);
    cursor: pointer;
}

.jews-search button::before {
    content: "";
    position: absolute;
    top: 11px;
    left: 12px;
    width: 12px;
    height: 12px;
    border: 2px solid #fff;
    border-radius: 50%;
}

.jews-search button::after {
    content: "";
    position: absolute;
    top: 26px;
    left: 26px;
    width: 8px;
    height: 2px;
    transform: rotate(45deg);
    transform-origin: left;
    background: #fff;
}

.jews-search button span {
    position: absolute;
    left: -9999px;
}

.jews-menu {
    display: none;
}

.jews-menu__summary {
    min-height: 44px;
    padding: 0 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid var(--jews-blue);
    border-radius: 0;
    color: var(--jews-blue);
    cursor: pointer;
    font-size: .76rem;
    font-weight: 850;
    list-style: none;
    text-transform: uppercase;
}

.jews-menu__summary::-webkit-details-marker {
    display: none;
}

.jews-menu__bars,
.jews-menu__bars::before,
.jews-menu__bars::after {
    width: 18px;
    height: 2px;
    display: block;
    background: currentColor;
}

.jews-menu__bars {
    position: relative;
}

.jews-menu__bars::before,
.jews-menu__bars::after {
    content: "";
    position: absolute;
    left: 0;
}

.jews-menu__bars::before {
    top: -6px;
}

.jews-menu__bars::after {
    top: 6px;
}

.jews-menu[open] .jews-menu__summary {
    background: var(--jews-blue);
    color: #fff;
}

.jews-menu__panel {
    position: absolute;
    z-index: 20;
    width: min(420px, calc(100vw - 48px));
    margin-top: 8px;
    padding: 10px 16px;
    display: grid;
    border: 1px solid var(--jews-line);
    background: #fff;
    box-shadow: 0 18px 42px rgba(6, 26, 63, .12);
}

.jews-intro {
    margin: 54px 0 82px;
    display: grid;
    grid-template-columns: minmax(0, 1.55fr) minmax(310px, .75fr);
    border-top: 2px solid var(--jews-blue-dark);
    border-bottom: 1px solid var(--jews-line);
}

.jews-intro__content {
    padding: clamp(54px, 6vw, 82px) clamp(40px, 6vw, 82px) clamp(58px, 6vw, 84px) 0;
}

.jews-eyebrow {
    display: block;
    color: var(--jews-blue);
    font-size: .74rem;
    font-weight: 850;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.jews-intro h1 {
    max-width: 760px;
    margin: 18px 0 24px;
    color: var(--jews-blue-dark);
    font: 700 clamp(3.05rem, 5.2vw, 4.9rem)/1.01 var(--jews-serif);
    hyphens: auto;
    letter-spacing: -.03em;
    text-wrap: balance;
}

.jews-intro__content > p {
    max-width: 680px;
    margin: 0;
    color: var(--jews-muted);
    font: 400 clamp(1.08rem, 1.5vw, 1.25rem)/1.68 var(--jews-serif);
}

.jews-intro__actions {
    margin-top: 34px;
    display: flex;
    align-items: center;
    gap: 24px;
}

.jews-button {
    min-height: 46px;
    padding: 0 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--jews-blue);
    color: #fff;
    font-weight: 800;
    text-decoration: none;
}

.jews-button:hover {
    background: var(--jews-blue-dark);
}

.jews-text-link {
    color: var(--jews-blue);
    font-weight: 800;
    text-decoration: none;
}

.jews-intro__preparing {
    min-width: 0;
    padding: clamp(48px, 5vw, 72px) clamp(28px, 4vw, 50px);
    align-self: stretch;
    display: grid;
    place-items: center;
    border-left: 1px solid var(--jews-line);
    background: linear-gradient(90deg, var(--jews-pale), #fff 82%);
}

.jews-intro__preparing span {
    color: var(--jews-blue-dark);
    font: 700 clamp(2.15rem, 3.8vw, 3.7rem)/1 var(--jews-serif);
    letter-spacing: -.025em;
    text-align: center;
    text-wrap: balance;
}

.jews-lead-grid {
    margin: 48px 0 84px;
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(300px, 1fr);
    gap: 34px;
}

.jews-lead-grid aside {
    display: grid;
    align-content: start;
    gap: 24px;
}

.jews-lead-grid aside .jews-card + .jews-card {
    padding-top: 24px;
    border-top: 1px solid var(--jews-line);
}

.jews-card {
    min-width: 0;
    overflow: visible;
    background: transparent;
}

.jews-card__visual,
.jews-article__visual {
    position: relative;
    display: grid;
    place-items: center;
    overflow: hidden;
    background: var(--jews-blue-dark);
    color: #fff;
    text-decoration: none;
}

.jews-card__visual {
    aspect-ratio: 16 / 9;
}

.jews-card__visual img,
.jews-article__visual img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.jews-card__visual--fallback::before,
.jews-article__visual--fallback::before {
    content: "";
    position: absolute;
    inset: 22px;
    border-top: 1px solid rgba(255, 255, 255, .34);
    border-bottom: 1px solid rgba(255, 255, 255, .16);
}

.jews-card__visual--israel,
.jews-article__visual--israel {
    background: #0038b8;
}

.jews-card__visual--business,
.jews-article__visual--business {
    background: #0a4b8f;
}

.jews-card__visual--history,
.jews-article__visual--history {
    background: #163865;
}

.jews-card__visual--community,
.jews-article__visual--community {
    background: #1f587d;
}

.jews-card__visual--culture,
.jews-article__visual--culture {
    background: #33477c;
}

.jews-card__visual--faith,
.jews-article__visual--faith {
    background: #263c61;
}

.jews-card__visual--tradition,
.jews-article__visual--tradition {
    background: #28569b;
}

.jews-visual__brand,
.jews-visual__topic {
    position: absolute;
    z-index: 1;
}

.jews-visual__brand {
    top: 38px;
    left: 38px;
    color: rgba(255, 255, 255, .84);
    font: 700 1.15rem/1 var(--jews-serif);
    letter-spacing: -.02em;
}

.jews-visual__topic {
    right: 38px;
    bottom: 38px;
    left: 38px;
    color: #fff;
    font-size: clamp(.82rem, 1.5vw, 1.05rem);
    font-weight: 850;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.jews-card__body {
    padding: 15px 0 0;
}

.jews-card__meta {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    color: var(--jews-blue);
    font-size: .7rem;
    font-weight: 850;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.jews-card__meta time {
    color: var(--jews-muted);
    font-weight: 600;
    letter-spacing: 0;
}

.jews-card h1,
.jews-card h2 {
    margin: 9px 0 9px;
    color: var(--jews-blue-dark);
    font: 700 1.42rem/1.18 var(--jews-serif);
    hyphens: none;
    letter-spacing: -.02em;
    overflow-wrap: break-word;
    text-wrap: pretty;
}

.jews-card h1 a,
.jews-card h2 a {
    text-decoration: none;
}

.jews-card h1 a:hover,
.jews-card h2 a:hover {
    color: var(--jews-blue);
}

.jews-card p {
    margin: 0;
    color: var(--jews-muted);
    font-size: .93rem;
}

.jews-card--lead h1 {
    max-width: 860px;
    font-size: clamp(2.5rem, 4.2vw, 4.4rem);
    line-height: 1.03;
}

.jews-card--lead p {
    max-width: 760px;
    font: 400 1.08rem/1.6 var(--jews-serif);
}

.jews-card--side {
    display: grid;
    grid-template-columns: 138px minmax(0, 1fr);
    gap: 17px;
}

.jews-card--side .jews-card__visual {
    min-height: 148px;
    aspect-ratio: auto;
}

.jews-card--side .jews-card__body {
    padding: 0;
}

.jews-card--side h2 {
    font-size: 1.17rem;
}

.jews-card--side p {
    display: none;
}

.jews-editorial-section {
    margin: 74px 0;
    padding-top: 20px;
    border-top: 2px solid var(--jews-blue-dark);
}

.jews-editorial-section--israel {
    background: transparent;
}

.jews-section-head {
    margin-bottom: 25px;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 28px;
}

.jews-section-head span,
.jews-newsletter__copy > span,
.jews-page-head > span,
.jews-article__header > span {
    display: block;
    color: var(--jews-blue);
    font-size: .71rem;
    font-weight: 850;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.jews-section-head h2 {
    margin: 4px 0 0;
    color: var(--jews-blue-dark);
    font: 700 clamp(1.85rem, 3vw, 2.65rem)/1.05 var(--jews-serif);
    letter-spacing: -.025em;
}

.jews-section-head > a {
    color: var(--jews-blue);
    font-size: .84rem;
    font-weight: 800;
    text-decoration: none;
}

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

.jews-card-grid--wide {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 30px 24px;
}

.jews-topics {
    padding: 66px 0 70px;
    background: var(--jews-pale);
    border-top: 1px solid var(--jews-line);
    border-bottom: 1px solid var(--jews-line);
}

.jews-topic-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 40px 34px;
}

.jews-topic {
    min-height: 208px;
    padding: 22px 0 0;
    display: flex;
    flex-direction: column;
    border-top: 2px solid var(--jews-blue-dark);
    text-decoration: none;
}

.jews-topic:hover {
    border-top-color: var(--jews-blue);
}

.jews-topic h3 {
    margin: 0 0 12px;
    color: var(--jews-blue-dark);
    font: 700 1.8rem/1.08 var(--jews-serif);
    letter-spacing: -.02em;
}

.jews-topic p {
    margin: 0;
    color: var(--jews-muted);
    font-size: .91rem;
}

.jews-topic__link {
    margin-top: auto;
    padding-top: 24px;
    color: var(--jews-blue);
    font-size: .78rem;
    font-weight: 850;
}

.jews-newsletter {
    margin: 70px 0;
    padding: 34px 0 36px;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(330px, .8fr);
    gap: 56px;
    align-items: end;
    border-top: 2px solid var(--jews-blue-dark);
    border-bottom: 1px solid var(--jews-line);
}

.jews-newsletter h2 {
    margin: 5px 0 8px;
    color: var(--jews-blue-dark);
    font: 700 1.85rem/1.08 var(--jews-serif);
    letter-spacing: -.02em;
}

.jews-newsletter p {
    margin: 0;
    color: var(--jews-muted);
}

.jews-newsletter form > label {
    display: block;
    margin-bottom: 7px;
    color: var(--jews-blue-dark);
    font-size: .75rem;
    font-weight: 850;
}

.jews-newsletter__fields {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 122px;
}

.jews-newsletter input[type="email"] {
    min-width: 0;
    height: 46px;
    padding: 0 12px;
    border: 1px solid #b7c5dc;
    border-right: 0;
    border-radius: 0;
    background: #fff;
    font: inherit;
}

.jews-newsletter button {
    height: 46px;
    border: 0;
    border-radius: 0;
    background: var(--jews-blue);
    color: #fff;
    cursor: pointer;
    font-weight: 850;
}

.jews-trap {
    position: absolute;
    left: -9999px;
}

.jews-page-head {
    max-width: 880px;
    margin-bottom: 38px;
    padding: 62px 0 34px;
    border-bottom: 1px solid var(--jews-line);
}

.jews-page-head h1 {
    margin: 8px 0 14px;
    color: var(--jews-blue-dark);
    font: 700 clamp(3rem, 6vw, 5.5rem)/.98 var(--jews-serif);
    hyphens: auto;
    letter-spacing: -.035em;
    text-wrap: balance;
}

.jews-page-head p {
    max-width: 760px;
    margin: 0;
    color: var(--jews-muted);
    font: 400 1.14rem/1.64 var(--jews-serif);
}

.jews-card-grid--archive {
    margin-bottom: 64px;
}

.jews-card--wide {
    grid-column: span 2;
    display: grid;
    grid-template-columns: minmax(250px, .88fr) minmax(330px, 1.12fr);
    gap: 32px;
}

.jews-card--wide .jews-card__visual {
    min-height: 280px;
    aspect-ratio: auto;
}

.jews-card--wide .jews-card__body {
    padding: 4px 0 0;
}

.jews-card--wide h2 {
    font-size: clamp(1.75rem, 2.5vw, 2.35rem);
    line-height: 1.08;
}

.jews-empty,
.jews-notice {
    width: min(760px, 100%);
    margin: 46px 0 74px;
    padding: 32px 0;
    border-top: 2px solid var(--jews-blue-dark);
    border-bottom: 1px solid var(--jews-line);
}

.jews-empty h2,
.jews-notice h1 {
    margin: 0 0 10px;
    color: var(--jews-blue-dark);
    font: 700 2.25rem/1.1 var(--jews-serif);
}

.jews-empty p,
.jews-notice p {
    color: var(--jews-muted);
}

.jews-empty a,
.jews-notice a {
    display: inline-block;
    margin-top: 10px;
    color: var(--jews-blue);
    font-weight: 850;
}

.jews-article {
    width: min(920px, 100%);
    margin: 64px auto 76px;
}

.jews-article__header {
    max-width: 820px;
    margin-bottom: 36px;
    text-align: left;
}

.jews-article__header h1 {
    margin: 12px 0 20px;
    color: var(--jews-blue-dark);
    font: 700 clamp(2.8rem, 5.8vw, 5.2rem)/1 var(--jews-serif);
    hyphens: none;
    letter-spacing: -.035em;
    overflow-wrap: break-word;
    text-wrap: pretty;
}

.jews-article__header > p {
    max-width: 750px;
    margin: 0;
    color: var(--jews-muted);
    font: 400 1.18rem/1.62 var(--jews-serif);
}

.jews-article__header > div {
    margin-top: 22px;
    display: flex;
    gap: 18px;
    color: var(--jews-muted);
    font-size: .78rem;
    text-transform: uppercase;
}

.jews-article__lead {
    margin: 0 0 38px;
}

.jews-article__visual {
    width: 100%;
    aspect-ratio: 16 / 9;
}

.jews-article__caption {
    margin-top: 8px;
    color: var(--jews-muted);
    font-size: .8rem;
}

.jews-article__caption a,
.jews-article__body a {
    color: var(--jews-blue);
}

.jews-article__body {
    width: min(720px, 100%);
    margin: auto;
    color: #242b37;
    font: 400 1.18rem/1.75 var(--jews-serif);
}

.jews-article__body p {
    margin: 0 0 1.3em;
}

.jews-article__body h2,
.jews-article__body h3 {
    margin-top: 1.8em;
    color: var(--jews-blue-dark);
    line-height: 1.15;
}

.jews-article__body img {
    max-width: 100%;
    height: auto;
}

.jews-related {
    margin: 76px 0;
    padding-top: 20px;
    border-top: 2px solid var(--jews-blue-dark);
}

.jews-card--related h2 {
    font-size: 1.2rem;
}

.jews-government {
    border-top: 1px solid var(--jews-line);
    background: #fff;
    color: var(--jews-blue-dark);
}

.jews-government__inner {
    padding: 64px 0 58px;
}

.jews-government__header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 40px;
    align-items: end;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--jews-line);
}

.jews-government__header > div:first-child {
    max-width: 780px;
    display: grid;
    gap: 9px;
}

.jews-government__header > div:first-child > span,
.jews-government__updated span {
    color: var(--jews-blue);
    font-size: .69rem;
    font-weight: 850;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.jews-government h2 {
    margin: 0;
    color: var(--jews-blue-dark);
    font: 700 clamp(2rem, 3.4vw, 3.25rem)/1.02 var(--jews-serif);
    letter-spacing: -.035em;
}

.jews-government__header p {
    max-width: 700px;
    margin: 0;
    color: #45536b;
    font-size: .94rem;
}

.jews-government__updated {
    min-width: 158px;
    display: grid;
    gap: 5px;
    padding-left: 18px;
    border-left: 2px solid var(--jews-blue);
}

.jews-government__updated time {
    color: var(--jews-blue-dark);
    font-size: .8rem;
    font-weight: 800;
}

.jews-government__people {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 22px;
    padding: 32px 0 28px;
}

.jews-government__person {
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 13px;
    border-top: 3px solid var(--jews-blue-dark);
    text-align: center;
}

.jews-government__portrait {
    width: min(164px, 100%);
    display: block;
    margin: 0 auto 20px;
    border-radius: 50%;
    text-decoration: none;
}

.jews-government__portrait img {
    display: block;
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    object-position: center 20%;
    background: #dce6f7;
    border: 6px solid #eef3fc;
    border-radius: 50%;
}

.jews-government__portrait:hover img,
.jews-government__portrait:focus-visible img {
    border-color: #c9daf8;
}

.jews-government__role {
    color: var(--jews-blue);
    font-size: .64rem;
    font-weight: 850;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.jews-government__person h3 {
    margin: 8px 0 10px;
    color: var(--jews-blue-dark);
    font: 700 1.3rem/1.08 var(--jews-serif);
    letter-spacing: -.02em;
}

.jews-government__person h3 a {
    text-decoration: none;
}

.jews-government__person h3 a:hover,
.jews-government__person h3 a:focus-visible {
    color: var(--jews-blue);
}

.jews-government__person p {
    margin: 0 0 17px;
    color: #536078;
    font-size: .76rem;
    line-height: 1.55;
}

.jews-government__profile {
    margin-top: auto;
    color: var(--jews-blue);
    font-size: .69rem;
    font-weight: 850;
    text-decoration: none;
}

.jews-government__profile:hover,
.jews-government__profile:focus-visible {
    color: var(--jews-blue-dark);
}

.jews-government__note {
    margin: 0;
    padding-top: 16px;
    border-top: 1px solid var(--jews-line);
    color: #758096;
    font-size: .69rem;
}

.jews-footer {
    background: var(--jews-blue-deep);
    color: #fff;
}

.jews-embassy {
    border-top: 6px solid var(--jews-blue);
    border-bottom: 1px solid #b8c8e4;
    background: var(--jews-pale);
    color: var(--jews-blue-dark);
}

.jews-embassy__inner {
    padding: 54px 0 42px;
}

.jews-embassy__header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 40px;
    align-items: end;
    padding-bottom: 28px;
    border-bottom: 1px solid #b8c8e4;
}

.jews-embassy__header > div {
    max-width: 760px;
    display: grid;
    gap: 9px;
}

.jews-embassy__header > div > span {
    color: var(--jews-blue);
    font-size: .69rem;
    font-weight: 850;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.jews-embassy h2 {
    margin: 0;
    color: var(--jews-blue-dark);
    font: 700 clamp(2rem, 3.4vw, 3.25rem)/1.02 var(--jews-serif);
    letter-spacing: -.035em;
}

.jews-embassy__header p {
    max-width: 690px;
    margin: 0;
    color: #45536b;
    font-size: .94rem;
}

.jews-embassy__official-link {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 11px 17px;
    background: var(--jews-blue);
    color: #fff;
    font-size: .76rem;
    font-weight: 850;
    letter-spacing: .04em;
    text-decoration: none;
    white-space: nowrap;
}

.jews-embassy__official-link:hover,
.jews-embassy__official-link:focus-visible {
    background: var(--jews-blue-dark);
}

.jews-embassy__articles {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    padding: 30px 0 28px;
}

.jews-embassy__article {
    min-width: 0;
    display: flex;
    flex-direction: column;
    padding: 0 24px;
    border-left: 1px solid #b8c8e4;
}

.jews-embassy__article:first-child {
    padding-left: 0;
    border-left: 0;
}

.jews-embassy__article:last-child {
    padding-right: 0;
}

.jews-embassy__article-media {
    display: block;
    aspect-ratio: 16 / 9;
    margin-bottom: 18px;
    overflow: hidden;
    background: #dce6f7;
    border: 1px solid #b8c8e4;
}

.jews-embassy__article-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.jews-embassy__article-meta {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    color: var(--jews-muted);
    font-size: .66rem;
    font-weight: 850;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.jews-embassy__article-meta span {
    color: var(--jews-blue);
}

.jews-embassy__article h3 {
    margin: 15px 0 10px;
    color: var(--jews-blue-dark);
    font: 700 1.22rem/1.14 var(--jews-serif);
    letter-spacing: -.015em;
}

.jews-embassy__article h3 a,
.jews-embassy__article-link {
    text-decoration: none;
}

.jews-embassy__article h3 a:hover,
.jews-embassy__article h3 a:focus-visible,
.jews-embassy__article-link:hover,
.jews-embassy__article-link:focus-visible {
    color: var(--jews-blue);
}

.jews-embassy__article p {
    margin: 0 0 18px;
    color: #536078;
    font-size: .8rem;
}

.jews-embassy__article-link {
    margin-top: auto;
    color: var(--jews-blue);
    font-size: .72rem;
    font-weight: 850;
}

.jews-embassy__contact {
    display: flex;
    flex-wrap: wrap;
    gap: 7px 22px;
    padding-top: 18px;
    border-top: 1px solid #b8c8e4;
    color: #657188;
    font-size: .72rem;
}

.jews-embassy__contact > span {
    margin-right: auto;
}

.jews-embassy__contact address {
    font-style: normal;
}

.jews-embassy__contact a {
    color: var(--jews-blue-dark);
    font-weight: 750;
    text-decoration: none;
}

.jews-footer__inner {
    padding: 54px 0 48px;
    display: grid;
    grid-template-columns: 1.5fr 1fr .8fr;
    gap: 44px;
}

.jews-brand--footer {
    color: #a9c3ff;
}

.jews-brand--footer .jews-brand__name {
    color: #fff;
    font-size: 2rem;
}

.jews-brand--footer .jews-brand__tagline {
    display: none;
}

.jews-footer p {
    color: #bdccec;
}

.jews-footer h2 {
    margin: 0 0 12px;
    color: #a9c3ff;
    font-size: .7rem;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.jews-footer nav {
    display: grid;
    align-content: start;
    gap: 8px;
}

.jews-footer nav a {
    font-size: .89rem;
    text-decoration: none;
}

.jews-footer__editorial {
    width: min(var(--jews-shell), calc(100% - 64px));
    margin-inline: auto;
    padding: 34px 0 38px;
    display: grid;
    grid-template-columns: minmax(220px, .8fr) minmax(260px, 1.1fr) minmax(300px, 1.2fr);
    gap: 44px;
    align-items: start;
    border-top: 1px solid rgba(255, 255, 255, .15);
}

.jews-footer__editorial > div {
    display: grid;
    gap: 9px;
}

.jews-footer__editorial > div > span {
    color: #a9c3ff;
    font-size: .7rem;
    font-weight: 850;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.jews-footer__editorial strong {
    color: #fff;
    font: 700 1.65rem/1.08 var(--jews-serif);
}

.jews-footer__editorial p {
    margin: 0;
}

.jews-footer__editorial ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.jews-footer__editorial li {
    padding: 9px 0;
    border-top: 1px solid rgba(255, 255, 255, .15);
    color: #dce7ff;
    font-size: .82rem;
    font-weight: 750;
}

.jews-footer__bottom {
    padding: 18px 0 22px;
    border-top: 1px solid rgba(255, 255, 255, .15);
    color: #9fb2d8;
    font-size: .76rem;
}

.jews-footer__rights {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 28px;
    align-items: start;
}

.jews-footer__rights span {
    color: #dce7ff;
    font-weight: 800;
    white-space: nowrap;
}

.jews-footer .jews-footer__rights p {
    max-width: 860px;
    margin: 0;
    color: #9fb2d8;
    font-size: .7rem;
}

.public-form-confirmation,
.webform-public__confirmation {
    width: min(720px, calc(100% - 32px));
    margin: 42px auto;
    padding: 30px;
    border: 1px solid var(--jews-line);
    background: #fff;
}

.public-form-confirmation button,
.webform-public__confirmation button {
    padding: 11px 17px;
    border: 0;
    border-radius: 0;
    background: var(--jews-blue);
    color: #fff;
    cursor: pointer;
    font-weight: 800;
}

:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 2px;
    box-shadow: 0 0 0 5px var(--jews-blue);
}

@media (max-width: 1040px) {
    .jews-nav--desktop {
        display: none;
    }

    .jews-menu {
        display: block;
    }

    .jews-nav-wrap {
        grid-template-columns: auto minmax(240px, 360px);
    }

    .jews-lead-grid {
        grid-template-columns: 1fr;
    }

    .jews-lead-grid aside {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .jews-lead-grid aside .jews-card + .jews-card {
        padding-top: 0;
        border-top: 0;
    }

    .jews-card--side {
        grid-template-columns: 150px minmax(0, 1fr);
    }

    .jews-card-grid--wide {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .jews-footer__inner {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .jews-government__people {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .jews-embassy__articles {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .jews-embassy__article:nth-child(odd) {
        padding-left: 0;
        border-left: 0;
    }

    .jews-embassy__article:nth-child(even) {
        padding-right: 0;
    }

    .jews-embassy__article:nth-child(n + 3) {
        margin-top: 24px;
        padding-top: 24px;
        border-top: 1px solid #b8c8e4;
    }
}

@media (max-width: 860px) {
    .jews-shell,
    .jews-topbar__inner,
    .jews-masthead__inner,
    .jews-nav-wrap,
    .jews-footer__inner,
    .jews-footer__bottom,
    .jews-government__inner,
    .jews-embassy__inner {
        width: min(var(--jews-shell), calc(100% - 40px));
    }

    .jews-intro {
        grid-template-columns: 1fr;
    }

    .jews-intro__content {
        padding-right: 0;
    }

    .jews-intro__preparing {
        padding: 34px 0 40px;
        border-top: 1px solid var(--jews-line);
        border-left: 0;
        background: transparent;
    }

    .jews-footer__editorial {
        width: min(var(--jews-shell), calc(100% - 40px));
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .jews-government__header {
        grid-template-columns: 1fr;
        gap: 22px;
        align-items: start;
    }

    .jews-government__people {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .jews-government__updated {
        justify-self: start;
    }

    .jews-embassy__header {
        grid-template-columns: 1fr;
        gap: 22px;
        align-items: start;
    }

    .jews-embassy__official-link {
        justify-self: start;
    }

    .jews-card-grid,
    .jews-card-grid--wide,
    .jews-card-grid--archive,
    .jews-topic-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .jews-card--wide {
        grid-column: span 2;
    }

    .jews-newsletter {
        grid-template-columns: 1fr;
        gap: 26px;
    }
}

@media (max-width: 640px) {
    .jews-shell,
    .jews-topbar__inner,
    .jews-masthead__inner,
    .jews-nav-wrap,
    .jews-footer__inner,
    .jews-footer__bottom,
    .jews-footer__editorial,
    .jews-government__inner,
    .jews-embassy__inner {
        width: min(var(--jews-shell), calc(100% - 32px));
    }

    .jews-topbar__inner {
        min-height: 31px;
    }

    .jews-topbar nav {
        display: none;
    }

    .jews-masthead__inner {
        min-height: 112px;
    }

    .jews-brand__name {
        font-size: 3.15rem;
    }

    .jews-brand__tagline {
        display: none;
    }

    .jews-nav-wrap {
        grid-template-columns: 1fr;
        gap: 9px;
        padding: 10px 0;
    }

    .jews-menu__panel {
        position: static;
        width: 100%;
        box-shadow: none;
    }

    .jews-menu__panel .jews-nav__link {
        min-height: 44px;
    }

    .jews-search {
        grid-template-columns: minmax(0, 1fr) 44px;
    }

    .jews-intro {
        margin: 34px 0 54px;
    }

    .jews-intro__content {
        padding: 42px 0 46px;
    }

    .jews-intro h1 {
        font-size: clamp(2.55rem, 13vw, 3.45rem);
    }

    .jews-intro__actions {
        align-items: flex-start;
        flex-direction: column;
        gap: 17px;
    }

    .jews-lead-grid {
        margin: 32px 0 58px;
        gap: 32px;
    }

    .jews-lead-grid aside,
    .jews-card-grid,
    .jews-card-grid--wide,
    .jews-card-grid--archive,
    .jews-topic-grid,
    .jews-footer__inner {
        grid-template-columns: 1fr;
    }

    .jews-lead-grid aside .jews-card + .jews-card {
        padding-top: 24px;
        border-top: 1px solid var(--jews-line);
    }

    .jews-card--side,
    .jews-card--wide {
        grid-template-columns: 1fr;
    }

    .jews-card--side .jews-card__visual,
    .jews-card--wide .jews-card__visual {
        min-height: 0;
        aspect-ratio: 16 / 9;
    }

    .jews-card--side .jews-card__body,
    .jews-card--wide .jews-card__body {
        padding-top: 14px;
    }

    .jews-card--lead h1 {
        font-size: 2.5rem;
    }

    .jews-card--wide {
        grid-column: auto;
    }

    .jews-section-head {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
    }

    .jews-editorial-section {
        margin: 56px 0;
    }

    .jews-topics {
        padding: 50px 0 54px;
    }

    .jews-topic {
        min-height: 0;
        padding-bottom: 8px;
    }

    .jews-newsletter {
        margin: 54px 0;
    }

    .jews-newsletter__fields {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .jews-newsletter input[type="email"] {
        border-right: 1px solid #b7c5dc;
    }

    .jews-page-head {
        padding: 44px 0 28px;
    }

    .jews-page-head h1 {
        font-size: 3.2rem;
    }

    .jews-article {
        margin-top: 44px;
    }

    .jews-article__header h1 {
        font-size: 2.65rem;
    }

    .jews-article__header > div {
        flex-wrap: wrap;
    }

    .jews-article__body {
        font-size: 1.08rem;
    }

    .jews-footer__inner {
        gap: 32px;
        padding: 44px 0 40px;
    }

    .jews-government__inner {
        padding: 44px 0 38px;
    }

    .jews-government__people {
        grid-template-columns: 1fr;
        gap: 0;
        padding: 26px 0 24px;
    }

    .jews-government__person {
        display: grid;
        grid-template-columns: 126px minmax(0, 1fr);
        grid-template-rows: auto auto 1fr auto;
        align-items: start;
        gap: 0 18px;
        margin-top: 22px;
        padding-top: 22px;
        border-top: 1px solid var(--jews-line);
    }

    .jews-government__person:first-child {
        margin-top: 0;
        padding-top: 0;
        border-top: 0;
    }

    .jews-government__portrait {
        width: 112px;
        grid-column: 1;
        grid-row: 1 / 5;
        margin: 0;
        justify-self: start;
    }

    .jews-government__role,
    .jews-government__person h3,
    .jews-government__person p,
    .jews-government__profile {
        grid-column: 2;
        text-align: left;
    }

    .jews-government__person h3 {
        margin-top: 6px;
    }

    .jews-government__person p {
        font-size: .73rem;
    }

    .jews-embassy__inner {
        padding: 44px 0 34px;
    }

    .jews-embassy__articles {
        grid-template-columns: 1fr;
    }

    .jews-embassy__article,
    .jews-embassy__article:nth-child(odd),
    .jews-embassy__article:nth-child(even),
    .jews-embassy__article:nth-child(n + 3) {
        margin-top: 22px;
        padding: 22px 0 0;
        border-top: 1px solid #b8c8e4;
        border-left: 0;
    }

    .jews-embassy__article:first-child,
    .jews-embassy__article:nth-child(1) {
        margin-top: 0;
        padding-top: 0;
        border-top: 0;
    }

    .jews-embassy__official-link {
        justify-self: stretch;
    }

    .jews-embassy__contact {
        display: grid;
        gap: 6px;
    }

    .jews-footer__rights {
        grid-template-columns: 1fr;
        gap: 8px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .jews-nav__link::after {
        transition: none;
    }
}
