/* Working Here — pixel-perfect first state from Figma node 51570:32.
   Gradient band (#036 -> #f3f8fb), centered heading/intro, three equal 185x184
   white circles (60px apart) each with a colored quote badge. Clicking a circle
   reveals the inline testimonial card (open state, node 2126:566). */

/* Paint the wrapping body paragraph with the gradient when it holds the block. */
.paragraph.paragraph--type--body.paragraph-id--2369.paragraph--view-mode--default:has(.working-here),
.paragraph.paragraph--type--body.paragraph-id--2299.paragraph--view-mode--default:has(.working-here),
.paragraph.paragraph--type--body.paragraph-id--2305.paragraph--view-mode--default:has(.working-here) {
	background: linear-gradient(to bottom, #036 0%, #6f8ea8 55%, #f3f8fb 100%);
}

.working-here {
	position: relative;
	overflow: hidden;
	padding: 0 20px 113px;
	--working-here-accent: #6eceb2;
	font-family: "Source Sans Pro", "Open Sans", Arial, sans-serif;
	color: #fff;
	box-sizing: border-box;
}

.working-here *,
.working-here *::before,
.working-here *::after {
	box-sizing: border-box;
}

.working-here__heading {
	margin: 0 0 16px;
	font-family: inherit;
	font-size: 35px;
	font-weight: 300;
	line-height: 40px;
	text-align: center;
	color: #fff;
}

.working-here__intro {
	margin: 0 auto 66px;
	font-family: inherit;
	font-size: 17px;
	font-weight: 400;
	line-height: 24px;
	text-align: center;
}

/* Three equal circles, 185px, 60px apart, centered (total row = 675px). */
.working-here__people {
	display: flex;
	justify-content: center;
	gap: 60px;
	max-width: 675px;
	margin: 0 auto;
}

.working-here__person {
	position: relative;
	flex: 0 0 185px;
	width: 185px;
	height: 184px;
	margin: 0;
	padding: 0;
	border: 0;
	background: transparent;
	cursor: pointer;
	transition: opacity 0.25s ease;
}

.working-here__person:focus-visible {
	outline: 3px solid #fff;
	outline-offset: 6px;
}

/* White circle. */
.working-here__person-image {
	display: block;
	width: 185px;
	height: 184px;
	border-radius: 50%;
	object-fit: cover;
	background: #fff;
}

/* Colored quote badge, centered on the circle's bottom edge. */
.working-here__badge {
	position: absolute;
	left: 50%;
	bottom: -33px;
	transform: translateX(-50%);
	display: flex;
	align-items: center;
	justify-content: center;
	width: 67px;
	height: 67px;
	border-radius: 50%;
}

.working-here__badge::before {
	content: "";
	position: absolute;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: currentColor;
}

.working-here__badge--green { color: #6eceb2; background: rgba(110, 206, 178, 0.4); }
.working-here__badge--orange { color: #f5a623; background: rgba(245, 166, 35, 0.4); }
.working-here__badge--magenta { color: #b23b8f; background: rgba(178, 59, 143, 0.4); }

.working-here__quote-mark {
	position: relative;
	z-index: 1;
	font-family: Georgia, "Times New Roman", serif;
	font-size: 34px;
	font-weight: 700;
	line-height: 1;
	color: #fff;
	transform: translateY(4px);
}

/* Dim the circles that are not selected once a testimonial is open. */
.working-here__people.has-active .working-here__person:not(.is-active) {
	opacity: 0.45;
}

/* ---------- Inline testimonial card (open state) ---------- */
.working-here__quote-card {
	display: none;
	position: relative;
	z-index: 3;
	width: 970px;
	max-width: 100%;
	min-height: 273px;
	margin: 79px auto 0;
	padding: 43px 55px 28px;
	background: #fff;
	color: #333;
}

.working-here__quote-card.is-visible {
	display: block;
}

.working-here__quote-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 20px;
	background: var(--working-here-accent);
}

.working-here__quote {
	margin: 0;
	font-family: inherit;
	font-size: 20px;
	font-weight: 300;
	line-height: 32px;
}

.working-here__author {
	margin: 14px 0 0;
	text-align: right;
	color: var(--working-here-accent);
}

.working-here--selected-1 {
	--working-here-accent: #6eceb2;
}

.working-here--selected-2 {
	--working-here-accent: #f5a623;
}

.working-here--selected-3 {
	--working-here-accent: #b23b8f;
}

.working-here__author-name,
.working-here__author-role {
	display: block;
}

.working-here__author-name {
	font-size: 20px;
	font-weight: 700;
	line-height: 22px;
}

.working-here__author-role {
	font-size: 14px;
	font-weight: 400;
	line-height: 22px;
}

/* ---------- Tablet ---------- */
@media (max-width: 1000px) {
	.working-here {
		padding-right: 16px;
		padding-left: 16px;
	}

	.working-here__people {
		gap: 40px;
	}
}

/* ---------- Mobile ---------- */
@media (max-width: 767px) {
	.working-here {
		padding: 56px 0px 60px;
	}

	.working-here__heading {
		font-size: 30px;
		line-height: 36px;
	}

	.working-here__intro {
		margin-bottom: 48px;
		font-size: 16px;
	}

	.working-here__people {
		flex-wrap: wrap;
		gap: 44px 24px;
		max-width: 360px;
	}

	.working-here__person {
		flex: 0 0 130px;
		width: 130px;
		height: 130px;
	}

	.working-here__person-image {
		width: 130px;
		height: 130px;
	}

	.working-here__badge {
		width: 54px;
		height: 54px;
		bottom: -27px;
	}

	.working-here__badge::before {
		width: 40px;
		height: 40px;
	}

	.working-here__quote-mark {
		font-size: 28px;
	}

	.working-here__quote-card {
		width: 100%;
		min-height: 0;
		margin-top: 48px;
		padding: 38px 24px 28px;
	}

	.working-here__quote {
		font-size: 17px;
		line-height: 27px;
	}

	.working-here__author {
		margin-top: 20px;
	}
	.working-alnylam-page .careers-page-award-section .img-wrapper .award {
    flex: 0 0 154px;
  }
}
.office-option {
  padding-left: calc(15px + (var(--office-depth) * 24px));
}

.office-option.office-parent {
  font-weight: 600;
}

.office-option.office-child {
  font-weight: 400;
}.office-option.office-child::before {
  content: "";
  width: 8px;
  height: 1px;
  background: transparent;
  margin-right: 8px;
}