

.threats-page {
	--tp-raised: var(--surface);
	--tp-subtle: var(--surface-subtle);
	--tp-selected: var(--selected);
	--tp-brand-surface: #0068d9;
	--tp-text: var(--text);
	--tp-secondary: var(--text-secondary);
	--tp-muted: var(--text-muted);
	--tp-disabled: #5d6878;
	--tp-brand: var(--brand);
	--tp-border: var(--border);
	--tp-border-subtle: #e7ecf2;
	--tp-danger-bg: #fff0f0;
	--tp-danger: #b42318;
	--tp-medium-bg: #fff4e5;
	--tp-medium: #a34e00;
	--tp-low-bg: #eaf9ef;
	--tp-low: #287543;
	--tp-card-shadow: 0 1px 3px rgb(7 17 30 / 6%);
	--tp-type-badge-bg: var(--tp-selected);
	--tp-type-badge-text: var(--tp-brand);
	--tp-type-cta-bg: var(--tp-selected);
	--tp-type-cta-text: var(--tp-brand);
	--tp-type-cta-ring: transparent;
	--tp-type-cta-hover-bg: var(--tp-brand);
	--tp-type-cta-hover-text: #fff;
	--tp-type-cta-hover-ring: transparent;
	--tp-type-count-bg: rgb(0 120 252 / 10%);
	--tp-type-count-text: #004f9e;
	--tp-type-count-hover-bg: rgb(255 255 255 / 16%);
	--tp-type-count-hover-text: #fff;
	background: var(--tp-raised);
	color: var(--tp-text);
}

:root[data-theme="dark"] .threats-page {
	--tp-disabled: #767676;
	--tp-border-subtle: #3b3b3b;
	--tp-danger-bg: #3d2020;
	--tp-danger: #ff8f87;
	--tp-medium-bg: #3b2b16;
	--tp-medium: #ffad5c;
	--tp-low-bg: #0b3620;
	--tp-low: #64dc8d;
	--tp-card-shadow: 0 1px 3px rgb(0 0 0 / 34%);
	--tp-type-badge-bg: rgb(0 120 252 / 20%);
	--tp-type-badge-text: #0078fc;
	--tp-type-cta-bg: transparent;
	--tp-type-cta-text: #0068d9;
	--tp-type-cta-ring: #168bff;
	--tp-type-cta-hover-bg: rgb(0 120 252 / 12%);
	--tp-type-cta-hover-text: #47a6ff;
	--tp-type-cta-hover-ring: #47a6ff;
	--tp-type-count-bg: rgb(0 120 252 / 20%);
	--tp-type-count-text: #0078fc;
	--tp-type-count-hover-bg: rgb(71 166 255 / 16%);
	--tp-type-count-hover-text: #47a6ff;
}

.threats-page h1,
.threats-page h2,
.threats-page h3,
.threats-page h4,
.threats-page p {
	margin: 0;
}

.threats-section {
	padding-block: 32px;
}

.threats-section--raised {
	background: var(--tp-raised);
}

.threats-section--subtle {
	background: var(--tp-subtle);
}

.threats-section--selected {
	background: var(--tp-selected);
}

.threats-section-heading {
	display: grid;
	gap: 8px;
}

.threats-section-heading h2 {
	color: var(--tp-text);
	font-size: 30px;
	font-weight: 600;
	letter-spacing: 0;
	line-height: 36px;
}

.threats-section-heading > p {
	width: min(760px, 100%);
	color: var(--tp-secondary);
	font-size: 14px;
	font-weight: 400;
	line-height: 20px;
}

.threats-eyebrow {
	color: var(--tp-brand);
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.7px;
	line-height: 13px;
	text-transform: uppercase;
}

.threats-primary-link,
.threats-outline-link {
	display: inline-flex;
	min-height: 40px;
	align-items: center;
	justify-content: center;
	gap: 7px;
	padding: 10px 20px;
	border-radius: 999px;
	font-size: 14px;
	font-weight: 500;
	line-height: 18px;
	white-space: nowrap;
	transition:
		background-color 160ms ease,
		border-color 160ms ease,
		color 160ms ease,
		box-shadow 160ms ease,
		transform 160ms ease;
}

.threats-primary-link {
	border: 1px solid var(--tp-brand-surface);
	background: var(--tp-brand-surface);
	color: #fff;
}

.threats-outline-link {
	border: 1px solid var(--tp-brand);
	background: transparent;
	color: var(--tp-brand);
}

@media (min-width: 768px) {
	.threats-primary-link:hover {
		border-color: var(--primary-hover);
		background: var(--primary-hover);
		color: #fff;
		box-shadow: 0 7px 18px rgb(0 104 217 / 18%);
		transform: translateY(-1px);
	}

	.threats-outline-link:hover {
		background: var(--tp-brand);
		color: #fff;
		transform: translateY(-1px);
	}
}

.threats-intro {
	padding-block: 24px 32px;
	background: var(--tp-subtle);
}

.threats-intro__container {
	display: grid;
	gap: 20px;
}

.threats-breadcrumbs {
	display: flex;
	height: 32px;
	align-items: center;
	gap: 12px;
}

.threats-back {
	display: grid;
	width: 32px;
	height: 32px;
	flex: 0 0 32px;
	place-items: center;
	border: 1px solid var(--tp-brand);
	border-radius: 12px;
	color: var(--tp-brand);
	font-size: 14px;
	font-weight: 500;
	line-height: 14px;
	transition:
		background-color 160ms ease,
		color 160ms ease;
}

@media (min-width: 768px) {
	.threats-back:hover {
		background: var(--tp-brand);
		color: #fff;
	}
}

.threats-breadcrumbs p {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	color: var(--tp-muted);
	font-size: 12px;
	font-weight: 400;
	line-height: 17px;
}

@media (min-width: 768px) {
	.threats-breadcrumbs a:hover {
		color: var(--tp-brand);
	}
}

.threats-hero {
	display: grid;
	min-height: 382px;
	grid-template-columns: minmax(0, 631px) 525px;
	align-items: start;
	gap: 20px;
	padding: 32px;
	border-radius: 32px;
	background: var(--tp-raised);
}

.threats-hero__copy {
	display: grid;
	gap: 12px;
}

.threats-hero__copy h1 {
	color: var(--tp-text);
	font-size: 36px;
	font-weight: 600;
	letter-spacing: -1.25px;
	line-height: 48px;
}

.threats-hero__lead {
	color: var(--tp-secondary);
	font-size: 18px;
	font-weight: 400;
	line-height: 29px;
}

.threats-hero__media {
	display: block;
	width: 525px;
	max-width: 100%;
}

.threats-hero__image {
	display: block;
	width: 525px;
	max-width: 100%;
	height: 318px;
	border-radius: 21px;
	object-fit: cover;
}

.threats-taxonomy .site-container {
	display: grid;
	gap: 40px;
}

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

.threat-type-card {
	display: flex;
	height: 306px;
	flex-direction: column;
	align-items: flex-start;
	justify-content: space-between;
	padding: 24px;
	overflow: hidden;
	border: 1px solid var(--tp-border-subtle);
	border-radius: 20px;
	background: var(--tp-raised);
	box-shadow: var(--tp-card-shadow);
	transition:
		border-color 160ms ease,
		box-shadow 160ms ease,
		transform 160ms ease;
}

@media (min-width: 768px) {
	.threat-type-card:hover {
		border-color: var(--tp-brand);
		box-shadow: 0 10px 26px rgb(7 17 30 / 10%);
		transform: translateY(-2px);
	}

	:root[data-theme="dark"] .threat-type-card:hover {
		box-shadow: 0 10px 26px rgb(0 0 0 / 34%);
	}
}

.threat-type-card__content {
	display: grid;
	width: 100%;
	gap: 12px;
}

.threat-type-card__top {
	display: flex;
	min-height: 56px;
	align-items: flex-start;
	gap: 12px;
}

.threat-type-card__icon {
	width: 56px;
	height: 56px;
	flex: 0 0 56px;
}

.threat-type-card__tags {
	display: flex;
	min-width: 0;
	flex: 1;
	flex-wrap: wrap;
	align-items: flex-start;
	justify-content: flex-end;
	gap: 6px;
}

.threat-type-card__tags li {
	padding: 6px 9px;
	border-radius: 999px;
	background: var(--tp-type-badge-bg);
	color: var(--tp-type-badge-text);
	font-size: 9px;
	font-weight: 600;
	line-height: 12px;
	text-transform: uppercase;
	white-space: nowrap;
}

.threat-type-card h3 {
	color: var(--tp-text);
	font-size: 20px;
	font-weight: 600;
	line-height: 25px;
}

.threat-type-card__content > p {
	color: var(--tp-secondary);
	font-size: 14px;
	font-weight: 400;
	line-height: 20px;
}

.threat-pill-link {
	display: inline-flex;
	height: 40px;
	align-items: center;
	justify-content: center;
	gap: 12px;
	padding-inline: 16px;
	border-radius: 999px;
	background: var(--tp-type-cta-bg);
	box-shadow: inset 0 0 0 1px var(--tp-type-cta-ring);
	color: var(--tp-type-cta-text);
	font-size: 14px;
	font-weight: 500;
	line-height: 18px;
	white-space: nowrap;
	transition:
		background-color 160ms ease,
		color 160ms ease,
		box-shadow 160ms ease;
}

@media (min-width: 768px) {
	.threat-pill-link:hover {
		background: var(--tp-type-cta-hover-bg);
		box-shadow: inset 0 0 0 1px var(--tp-type-cta-hover-ring);
		color: var(--tp-type-cta-hover-text);
	}
}

.threat-pill-link__count {
	display: grid;
	width: 22px;
	height: 22px;
	place-items: center;
	border-radius: 7px;
	background: var(--tp-type-count-bg);
	color: var(--tp-type-count-text);
	font-size: 10px;
	font-weight: 600;
	line-height: 12px;
}

@media (min-width: 768px) {
	.threat-pill-link:hover .threat-pill-link__count {
		background: var(--tp-type-count-hover-bg);
		color: var(--tp-type-count-hover-text);
	}
}

.threats-active {
	min-height: 600px;
}

.threats-active .site-container {
	display: grid;
	gap: 32px;
}

.active-threats-layout {
	display: grid;
	grid-template-columns: 608px 608px;
	gap: 24px;
}

.active-threat-lead {
	height: 420px;
	overflow: hidden;
	border-radius: 20px;
	background: var(--tp-raised);
	box-shadow: var(--tp-card-shadow);
}

.active-threat-lead__media,
.active-threat-lead__media picture {
	display: block;
	width: 608px;
	height: 210px;
	overflow: hidden;
}

.active-threat-lead__media img {
	display: block;
	width: 608px;
	height: 210px;
	object-fit: cover;
}

.active-threat-lead__content {
	display: flex;
	height: 210px;
	flex-direction: column;
	align-items: flex-start;
	justify-content: space-between;
	padding: 22px 24px;
}

.active-threat-lead__meta {
	display: flex;
	width: 100%;
	flex-wrap: wrap;
	align-items: center;
	gap: 6px 8px;
}

.threat-chip {
	padding: 6px 10px;
	border-radius: 999px;
	font-size: 10px;
	font-weight: 500;
	line-height: 13px;
	white-space: nowrap;
}

.threat-chip--category {
	background: var(--tp-selected);
	color: var(--tp-brand);
	font-weight: 600;
	letter-spacing: 0.7px;
	text-transform: uppercase;
}

.threat-chip--danger {
	background: var(--tp-danger-bg);
	color: var(--tp-danger);
}

.threat-chip--medium {
	background: var(--tp-medium-bg);
	color: var(--tp-medium);
}

.threat-chip--low {
	background: var(--tp-low-bg);
	color: var(--tp-low);
}

.threat-chip--platform {
	background: var(--tp-subtle);
	color: var(--tp-secondary);
}

.active-threat-lead__meta time {
	color: var(--tp-muted);
	font-size: 11px;
	font-weight: 400;
	line-height: 16px;
}

.active-threat-lead h3 {
	color: var(--tp-text);
	font-size: 20px;
	font-weight: 600;
	line-height: 25px;
}

.active-threats-grid {
	display: grid;
	grid-template-columns: repeat(2, 296px);
	gap: 16px;
}

.active-threat-card {
	display: flex;
	height: 202px;
	flex-direction: column;
	justify-content: space-between;
	padding: 15px 15px 14px;
	overflow: hidden;
	border-radius: 14px;
	background: var(--tp-raised);
	box-shadow: var(--tp-card-shadow);
	transition:
		box-shadow 160ms ease,
		transform 160ms ease;
}

@media (min-width: 768px) {
	.active-threat-card:hover {
		box-shadow: 0 8px 22px rgb(7 17 30 / 11%);
		transform: translateY(-2px);
	}
}

.active-threat-card header {
	display: flex;
	align-items: center;
	gap: 9px;
}

.active-threat-card__number {
	color: var(--tp-disabled);
	font-size: 22px;
	font-weight: 600;
	line-height: 25px;
}

.active-threat-card__category {
	color: var(--tp-brand);
	font-size: 9px;
	font-weight: 600;
	line-height: 12px;
	text-transform: uppercase;
}

.active-threat-card h3 {
	color: var(--tp-text);
	font-size: 14px;
	font-weight: 600;
	line-height: 19px;
}

.active-threat-card footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
}

.active-threat-card footer p {
	color: var(--tp-secondary);
	font-size: 9px;
	font-weight: 400;
	line-height: 12px;
	white-space: nowrap;
}

.active-threat-card footer .is-high {
	color: var(--tp-danger);
}

.active-threat-card footer .is-medium {
	color: var(--tp-medium);
}

.active-threat-card footer .is-low {
	color: var(--tp-low);
}

.active-threat-card footer a {
	color: var(--tp-brand);
	font-size: 10px;
	font-weight: 500;
	line-height: 13px;
	white-space: nowrap;
}

@media (min-width: 768px) {
	.active-threat-card footer a:hover {
		color: var(--primary-hover);
		text-decoration: underline;
	}
}

.threats-journey .site-container {
	display: grid;
	gap: 32px;
}

.threats-journey .threats-section-heading > p {
	width: 100%;
}

.attack-journey {
	display: flex;
	min-height: 318px;
	align-items: center;
	padding: 24px;
	overflow: hidden;
	border: 1px solid var(--tp-border);
	border-radius: 20px;
	background: var(--tp-raised);
}

.attack-stage {
	display: flex;
	width: 208px;
	height: 250px;
	flex: 0 0 208px;
	flex-direction: column;
	align-items: flex-start;
	justify-content: space-between;
	padding: 18px 16px;
	border-radius: 16px;
	background: var(--tp-subtle);
}

.attack-stage__number {
	color: var(--tp-brand);
	font-size: 22px;
	font-weight: 600;
	line-height: 26px;
}

.attack-stage h3 {
	color: var(--tp-text);
	font-size: 17px;
	font-weight: 600;
	line-height: 21px;
}

.attack-stage p {
	color: var(--tp-muted);
	font-size: 12px;
	font-weight: 400;
	line-height: 17px;
}

.attack-stage a {
	color: var(--tp-brand);
	font-size: 11px;
	font-weight: 500;
	line-height: 14px;
}

@media (min-width: 768px) {
	.attack-stage a:hover {
		color: var(--primary-hover);
		text-decoration: underline;
	}
}

.attack-journey__connector {
	width: 29px;
	flex: 0 0 29px;
	color: var(--tp-muted);
	font-size: 14px;
	font-weight: 400;
	line-height: 20px;
	text-align: center;
}

.threats-signs {
	min-height: 309px;
}

.threats-signs__layout {
	display: grid;
	grid-template-columns: 360px minmax(0, 1fr);
	align-items: stretch;
	gap: 48px;
}

.threats-signs__intro {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	gap: 18px;
	padding-block: 8px;
}

.threats-signs__intro h2,
.threats-response__heading h2 {
	color: var(--tp-text);
	font-size: 24px;
	font-weight: 600;
	line-height: 29px;
}

.threats-signs__intro > p:not(.threats-eyebrow) {
	width: 340px;
	color: var(--tp-muted);
	font-size: 14px;
	font-weight: 400;
	line-height: 20px;
}

.threat-signs-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
}

.threat-checklist {
	display: grid;
	gap: 14px;
	padding: 24px;
	border: 1px solid var(--tp-border);
	border-radius: 16px;
	background: var(--tp-raised);
	box-shadow: var(--tp-card-shadow);
}

.threat-checklist h3 {
	color: var(--tp-brand);
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.7px;
	line-height: 13px;
	text-transform: uppercase;
}

.threat-checklist ul {
	display: grid;
	gap: 8px;
}

.threat-checklist li {
	position: relative;
	padding-left: 12px;
	color: var(--tp-text);
	font-size: 14px;
	font-weight: 400;
	line-height: 20px;
}

.threat-checklist li::before {
	position: absolute;
	top: 8px;
	left: 0;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: var(--tp-danger);
	content: "";
}

.threats-signs__mobile-cta {
	display: none;
}

.threats-response {
	min-height: 504px;
}

.threats-response .site-container {
	display: grid;
	gap: 32px;
}

.threats-response__heading {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 32px;
}

.threats-response__heading > div {
	display: grid;
	gap: 10px;
}

.incident-steps {
	display: grid;
	grid-auto-flow: column;
	grid-template-rows: repeat(4, 80px);
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px 16px;
}

.incident-steps li {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 16px;
	border: 1px solid var(--tp-border);
	border-radius: 14px;
	background: var(--tp-raised);
}

.incident-steps li > span {
	display: grid;
	width: 40px;
	height: 40px;
	flex: 0 0 40px;
	place-items: center;
	border-radius: 12px;
	background: var(--tp-brand-surface);
	color: #fff;
	font-size: 14px;
	font-weight: 600;
	line-height: 18px;
}

.incident-steps li p {
	color: var(--tp-text);
	font-size: 14px;
	font-weight: 600;
	line-height: 19px;
}

.threats-response__mobile-cta {
	display: none;
}

.threats-latest {
	min-height: 1551px;
}

.threats-latest .site-container {
	display: grid;
	gap: 12px;
}

.threats-latest__heading {
	display: grid;
	width: 900px;
	max-width: 100%;
	gap: 10px;
	padding-bottom: 20px;
}

.threats-latest__heading h2 {
	color: var(--tp-text);
	font-size: 24px;
	font-weight: 600;
	line-height: 29px;
}

.threats-latest__heading p {
	color: var(--tp-secondary);
	font-size: 14px;
	font-weight: 400;
	line-height: 20px;
}

.threats-latest__rows {
	display: grid;
	gap: 12px;
}

.threat-latest-row {
	display: grid;
	height: 164px;
	grid-template-columns: 200px minmax(0, 1fr);
	gap: 16px;
	padding: 16px;
	overflow: hidden;
	border-radius: 16px;
	background: var(--tp-raised);
	box-shadow: var(--tp-card-shadow);
}

.threat-latest-row__direction {
	display: flex;
	height: 132px;
	flex-direction: column;
	justify-content: center;
}

.threat-latest-row__desktop-heading {
	display: grid;
	gap: 14px;
}

.threat-latest-row__desktop-heading h3 {
	color: var(--tp-text);
	font-size: 17px;
	font-weight: 600;
	line-height: 21px;
}

.threat-latest-row__desktop-heading a {
	color: var(--tp-brand);
	font-size: 14px;
	font-weight: 500;
	line-height: 18px;
}

@media (min-width: 768px) {
	.threat-latest-row__desktop-heading a:hover,
	.threat-latest-post__link:hover {
		color: var(--primary-hover);
		text-decoration: underline;
	}
}

.threat-latest-row__toggle {
	display: none;
}

.threat-latest-row__panel {
	min-width: 0;
}

.threat-latest-row__panel-inner {
	height: 100%;
}

.threat-latest-row__posts {
	display: grid;
	height: 132px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
}

.threat-latest-post {
	display: flex;
	min-width: 0;
	flex-direction: column;
	gap: 4px;
	padding: 14px;
	overflow: hidden;
	border-radius: 12px;
	background: var(--tp-subtle);
}

.threat-latest-post time {
	color: var(--tp-muted);
	font-size: 11px;
	font-weight: 400;
	line-height: 16px;
}

.threat-latest-post h3 {
	flex: 1;
	color: var(--tp-text);
	font-size: 14px;
	font-weight: 600;
	line-height: 19px;
}

@media (min-width: 768px) {
	.threat-latest-post h3 a:hover {
		color: var(--tp-brand);
	}
}

.threat-latest-post__link {
	color: var(--tp-brand);
	font-size: 11px;
	font-weight: 500;
	line-height: 14px;
}

.threat-latest-row__mobile-archive {
	display: none;
}

.threats-faq {
	min-height: 861px;
	padding-block: 64px;
}

.threats-faq__container {
	display: grid;
	width: min(calc(100% - (var(--gutter) * 2)), 900px);
	margin-inline: auto;
	gap: 32px;
}

.threats-faq__container > header {
	display: grid;
	gap: 10px;
	text-align: center;
}

.threats-faq h2 {
	color: var(--tp-text);
	font-size: 24px;
	font-weight: 600;
	line-height: 29px;
}

.threats-faq header p {
	color: var(--tp-secondary);
	font-size: 14px;
	font-weight: 400;
	line-height: 20px;
}

.threat-faq-list {
	display: grid;
	gap: 10px;
}

.threat-faq-item {
	padding: 19px;
	overflow: hidden;
	border: 1px solid var(--tp-border);
	border-radius: 14px;
	background: var(--tp-subtle);
	transition:
		background-color 180ms ease,
		border-color 180ms ease,
		box-shadow 180ms ease;
}

.threat-faq-item.is-open {
	background: var(--tp-selected);
}

@media (min-width: 768px) {
	.threat-faq-item:hover {
		border-color: var(--tp-brand);
		box-shadow: var(--shadow-sm);
	}

	.threat-faq-item:hover > button > span:last-child {
		background: var(--tp-brand);
		color: #fff;
		transform: scale(1.06);
	}
}

.threat-faq-item > button {
	display: flex;
	width: 100%;
	min-height: 24px;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 0;
	border: 0;
	background: transparent;
	color: var(--tp-text);
	font-size: 17px;
	font-weight: 600;
	line-height: 21px;
	text-align: left;
}

.threat-faq-item > button > span:last-child {
	display: grid;
	width: 24px;
	height: 24px;
	flex: 0 0 24px;
	place-items: center;
	border-radius: 50%;
	color: var(--tp-brand);
	font-size: 20px;
	font-weight: 600;
	line-height: 25px;
	text-align: center;
	transition:
		background-color 160ms ease,
		color 160ms ease,
		transform 160ms ease;
}

.threat-faq-item__panel {
	display: grid;
	grid-template-rows: 0fr;
	opacity: 0;
	transition:
		grid-template-rows 200ms ease,
		opacity 180ms ease;
}

.threat-faq-item__panel > div {
	overflow: hidden;
}

.threat-faq-item.is-open .threat-faq-item__panel {
	grid-template-rows: 1fr;
	opacity: 1;
}

.threat-faq-item__panel p {
	width: min(820px, calc(100% - 40px));
	padding-top: 12px;
	color: var(--tp-muted);
	font-size: 14px;
	font-weight: 400;
	line-height: 20px;
}

.threats-final-cta {
	min-height: 318px;
	padding-block: 64px;
	background: var(--tp-brand-surface);
	color: #fff;
}

.threats-final-cta__inner {
	display: flex;
	height: 190px;
	align-items: center;
	justify-content: space-between;
	overflow: hidden;
}

.threats-final-cta__copy {
	display: grid;
	width: 760px;
	gap: 14px;
}

.threats-final-cta .threats-eyebrow {
	color: #fff;
}

.threats-final-cta h2 {
	color: #fff;
	font-size: 30px;
	font-weight: 600;
	line-height: 36px;
}

.threats-final-cta__copy > p:not(.threats-eyebrow) {
	width: 700px;
	max-width: 100%;
	color: #fff;
	font-size: 14px;
	font-weight: 400;
	line-height: 20px;
}

.threats-final-cta__actions {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	padding-top: 8px;
}

.threats-final-cta__primary,
.threats-final-cta__secondary {
	display: inline-flex;
	min-height: 44px;
	align-items: center;
	justify-content: center;
	padding-inline: 20px;
	border-radius: 999px;
	font-size: 14px;
	font-weight: 500;
	line-height: 18px;
	white-space: nowrap;
	transition:
		background-color 160ms ease,
		color 160ms ease,
		transform 160ms ease;
}

.threats-final-cta__primary {
	width: 210px;
	background: #fff;
	color: #0068d9;
}

.threats-final-cta__secondary {
	width: 166px;
	min-height: 42px;
	border: 1px solid #fff;
	color: #fff;
}

@media (min-width: 768px) {
	.threats-final-cta__primary:hover {
		background: #eaf4ff;
		color: #075aa9;
		transform: translateY(-1px);
	}

	.threats-final-cta__secondary:hover {
		background: #fff;
		color: #0068d9;
		transform: translateY(-1px);
	}
}

.threats-final-cta__inner > img {
	width: 360px;
	height: 190px;
	object-fit: contain;
}

.threat-archive-hero {
	padding: 24px 0 40px;
	background: var(--tp-subtle);
}

.threat-archive-hero__content {
	display: grid;
	grid-template-columns: 72px minmax(0, 1fr);
	align-items: start;
	gap: 20px;
	margin-top: 24px;
}

.threat-archive-hero__content > img {
	display: block;
	width: 72px;
	height: 72px;
}

.threat-archive-hero__content > div {
	display: grid;
	max-width: 880px;
	gap: 10px;
}

.threat-archive-hero h1 {
	color: var(--tp-text);
	font-size: 36px;
	font-weight: 600;
	letter-spacing: -0.7px;
	line-height: 44px;
}

.threat-archive-hero__content > div > p:last-child {
	color: var(--tp-secondary);
	font-size: 16px;
	line-height: 25px;
}

.threat-archive-feed {
	display: grid;
	gap: 24px;
	padding-block: 40px 64px;
}

.threat-archive-feed__heading {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 20px;
}

.threat-archive-feed__heading > div:first-child {
	display: grid;
	gap: 6px;
}

.threat-archive-feed__heading h2 {
	color: var(--tp-text);
	font-size: 30px;
	font-weight: 600;
	line-height: 36px;
}

.threat-archive-feed__heading p {
	color: var(--tp-secondary);
	font-size: 14px;
	line-height: 20px;
}

.threat-archive-feed__tools {
	display: flex;
	flex-shrink: 0;
	align-items: center;
	gap: 10px;
}

.threat-archive-feed__tools > span {
	display: inline-grid;
	min-width: 44px;
	height: 32px;
	place-items: center;
	padding-inline: 12px;
	border-radius: 999px;
	background: var(--tp-selected);
	color: var(--tp-brand);
	font-size: 13px;
	font-weight: 600;
}

.threat-archive-empty {
	display: grid;
	justify-items: start;
	gap: 12px;
	padding: 32px;
	border: 1px solid var(--tp-border);
	border-radius: 20px;
	background: var(--tp-raised);
}

.threat-archive-empty h2 {
	color: var(--tp-text);
	font-size: 24px;
	line-height: 30px;
}

.threat-archive-empty p {
	max-width: 680px;
	color: var(--tp-secondary);
	font-size: 14px;
	line-height: 22px;
}

.threat-archive-empty > div {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

@media (max-width: 1279px) {
	.threats-hero {
		grid-template-columns: minmax(0, 1fr) minmax(390px, 42.4%);
	}

	.threats-hero__image {
		width: 100%;
	}

	.threats-hero__media,
	.active-threat-lead__media,
	.active-threat-lead__media picture,
	.active-threat-lead__media img {
		width: 100%;
	}

	.active-threats-layout {
		grid-template-columns: 1fr 1fr;
	}

	.active-threat-lead > img {
		width: 100%;
	}

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

	.attack-journey {
		overflow-x: auto;
	}

	.threats-signs__layout {
		grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.8fr);
		gap: 28px;
	}
}

@media (max-width: 1023px) {
	.threat-types-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.threat-type-card {
		height: 320px;
	}

	.threats-hero {
		grid-template-columns: 1fr;
	}

	.threats-hero__image {
		height: auto;
		aspect-ratio: 525 / 318;
	}

	.threats-hero__media {
		width: 100%;
	}

	.active-threats-layout {
		grid-template-columns: 1fr;
	}

	.active-threat-lead,
	.active-threat-lead > img,
	.active-threat-lead__media,
	.active-threat-lead__media picture,
	.active-threat-lead__media img {
		width: 100%;
	}

	.threats-active {
		min-height: 0;
	}

	.threats-signs__layout {
		grid-template-columns: 1fr;
	}

	.threats-signs__intro > p:not(.threats-eyebrow) {
		width: min(620px, 100%);
	}

	.incident-steps {
		grid-auto-flow: row;
		grid-template-rows: none;
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.threat-latest-row {
		height: auto;
		width: 100%;
		min-width: 0;
		grid-template-columns: 180px minmax(0, 1fr);
	}

	.threats-latest .site-container {
		grid-template-columns: minmax(0, 1fr);
	}

	.threats-latest__heading,
	.threats-latest__rows {
		width: 100%;
		min-width: 0;
	}

	.threat-latest-row__posts {
		height: auto;
		grid-template-columns: 1fr;
	}

	.threats-latest {
		min-height: 0;
	}

	.threats-final-cta {
		padding-block: 48px;
	}

	.threats-final-cta__inner {
		height: auto;
		min-height: 222px;
		gap: 16px;
	}

	.threats-final-cta__copy {
		width: 65%;
		gap: 10px;
	}

	.threats-final-cta h2 {
		font-size: 26px;
		line-height: 32px;
	}

	.threats-final-cta__copy > p:not(.threats-eyebrow) {
		width: 100%;
	}

	.threats-final-cta__inner > img {
		width: 33%;
		height: auto;
	}
}

@media (max-width: 767px) {
	.threats-page {
		overflow: clip;
	}

	.threat-archive-hero {
		padding: 16px 0 28px;
	}

	.threat-archive-hero__content {
		grid-template-columns: 48px minmax(0, 1fr);
		gap: 12px;
		margin-top: 18px;
	}

	.threat-archive-hero__content > img {
		width: 48px;
		height: 48px;
	}

	.threat-archive-hero__content > div {
		gap: 8px;
	}

	.threat-archive-hero h1 {
		font-size: 28px;
		letter-spacing: -0.45px;
		line-height: 34px;
	}

	.threat-archive-hero__content > div > p:last-child {
		font-size: 14px;
		line-height: 22px;
	}

	.threat-archive-feed {
		gap: 18px;
		padding-block: 28px 44px;
	}

	.threat-archive-feed__heading {
		flex-direction: column;
		align-items: stretch;
		gap: 12px;
	}

	.threat-archive-feed__heading h2 {
		font-size: 24px;
		line-height: 30px;
	}

	.threat-archive-feed__tools {
		width: 100%;
		justify-content: space-between;
	}

	.threat-archive-feed__tools > span {
		min-width: 40px;
		height: 30px;
		padding-inline: 10px;
	}

	.threat-archive-empty {
		padding: 20px;
		border-radius: 16px;
	}

	.threat-archive-empty > div,
	.threat-archive-empty .button {
		width: 100%;
	}

	.hucker-news-threats .site-header {
		min-height: 88px;
		border-bottom: 0;
	}

	.threats-section {
		padding-block: 24px;
	}

	.threats-section-heading {
		gap: 8px;
	}

	.threats-section-heading h2 {
		font-size: 24px;
		line-height: 30px;
	}

	.threats-section-heading > p {
		font-size: 14px;
		line-height: 21px;
	}

	.threats-eyebrow {
		font-size: 11px;
		letter-spacing: 0.77px;
		line-height: 15px;
	}

	.threats-intro {
		min-height: 0;
		padding-block: 16px;
	}

	.threats-intro__container {
		gap: 16px;
	}

	.threats-hero {
		display: flex;
		min-height: 0;
		flex-direction: column;
		gap: 16px;
		padding: 20px;
		border-radius: 32px;
	}

	.threats-hero__copy {
		gap: 12px;
	}

	.threats-hero__copy h1 {
		font-size: 28px;
		letter-spacing: -1.25px;
		line-height: 34px;
	}

	.threats-hero__lead {
		font-size: 15px;
		line-height: 23px;
	}

	.threats-hero__image {
		width: 100%;
		height: 192px;
		aspect-ratio: auto;
		margin-top: 0;
		border-radius: 21px;
	}

	.threats-taxonomy {
		min-height: 2705px;
	}

	.threats-taxonomy .site-container {
		gap: 24px;
	}

	.threat-types-grid {
		grid-template-columns: 1fr;
		gap: 12px;
	}

	.threat-type-card {
		width: 100%;
		height: auto;
		min-height: 292px;
		padding: 20px;
	}

	.threat-type-card__content {
		gap: 12px;
	}

	.threat-type-card h3 {
		font-size: 18px;
		line-height: 24px;
	}

	.threat-type-card__content > p {
		font-size: 14px;
		line-height: 21px;
	}

	.threat-pill-link {
		width: 100%;
		height: 44px;
		margin-top: 18px;
	}

	.threats-active {
		min-height: 1234px;
	}

	.threats-active .site-container {
		gap: 24px;
	}

	.active-threats-layout {
		display: flex;
		flex-direction: column;
		gap: 12px;
	}

	.active-threat-lead {
		width: 100%;
		height: auto;
	}

	.active-threat-lead > img {
		width: 100%;
		height: 201px;
		aspect-ratio: auto;
	}

	.active-threat-lead__media,
	.active-threat-lead__media picture,
	.active-threat-lead__media img {
		width: 100%;
		height: 201px;
		aspect-ratio: auto;
	}

	.active-threat-lead__content {
		height: auto;
		min-height: 205px;
		gap: 16px;
		padding: 20px;
	}

	.active-threat-lead__meta {
		gap: 6px;
	}

	.active-threat-lead h3 {
		font-size: 18px;
		line-height: 24px;
	}

	.active-threat-lead .threats-primary-link {
		width: 100%;
		min-height: 44px;
	}

	.active-threats-grid {
		display: grid;
		grid-template-columns: 1fr;
		gap: 12px;
	}

	.active-threat-card {
		width: 100%;
		height: auto;
		min-height: 148px;
		gap: 8px;
		padding: 14px 16px;
	}

	.active-threat-card h3 {
		font-size: 16px;
		line-height: 22px;
	}

	.threats-journey {
		min-height: 1105px;
	}

	.threats-journey .site-container {
		gap: 24px;
	}

	.attack-journey {
		display: flex;
		min-height: 0;
		flex-direction: column;
		align-items: stretch;
		padding: 16px;
		overflow: visible;
	}

	.attack-stage {
		display: grid;
		width: 100%;
		height: auto;
		min-height: 147px;
		flex: none;
		grid-template-columns: 28px minmax(0, 1fr);
		grid-template-rows: auto auto auto;
		align-content: start;
		column-gap: 12px;
		row-gap: 8px;
		padding: 14px 16px;
	}

	.attack-stage__number {
		grid-column: 1;
		grid-row: 1;
	}

	.attack-stage h3 {
		grid-column: 2;
		grid-row: 1;
		font-size: 16px;
		line-height: 22px;
	}

	.attack-stage p {
		grid-column: 2;
		grid-row: 2;
		font-size: 14px;
		line-height: 21px;
	}

	.attack-stage a {
		grid-column: 2;
		grid-row: 3;
		margin-top: 0;
		font-size: 12px;
		font-weight: 600;
		line-height: 18px;
	}

	.attack-journey__connector {
		position: relative;
		width: 100%;
		height: 15px;
		flex: 0 0 15px;
		overflow: hidden;
		color: transparent;
	}

	.attack-journey__connector::before {
		position: absolute;
		top: 0;
		bottom: 0;
		left: 18px;
		width: 2px;
		background: var(--tp-brand);
		content: "";
		opacity: 0.35;
	}

	.threats-signs {
		min-height: 800px;
	}

	.threats-signs__layout {
		display: grid;
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.threats-signs__intro {
		gap: 12px;
		padding: 0;
	}

	.threats-signs__intro h2,
	.threats-response__heading h2 {
		font-size: 24px;
		line-height: 30px;
	}

	.threats-signs__intro > p:not(.threats-eyebrow) {
		width: 100%;
		font-size: 14px;
		line-height: 21px;
	}

	.threats-signs__intro .threats-outline-link {
		display: none;
	}

	.threat-signs-grid {
		grid-template-columns: 1fr;
		gap: 12px;
	}

	.threat-checklist {
		gap: 14px;
		min-height: 240px;
		padding: 20px;
	}

	.threat-checklist h3,
	.threat-checklist li {
		font-size: 14px;
		font-weight: 400;
		letter-spacing: 0.7px;
		line-height: 21px;
	}

	.threat-checklist li {
		letter-spacing: 0;
	}

	.threat-checklist li::before {
		top: 8px;
	}

	.threats-signs__mobile-cta {
		display: inline-flex;
		width: 100%;
		min-height: 48px;
		margin-top: 0;
	}

	.threats-response {
		min-height: 865px;
	}

	.threats-response .site-container {
		gap: 24px;
	}

	.threats-response__heading {
		display: block;
	}

	.threats-response__heading > div {
		gap: 8px;
	}

	.threats-response__heading > .threats-primary-link {
		display: none;
	}

	.incident-steps {
		display: grid;
		grid-template-columns: 1fr;
		gap: 8px;
	}

	.incident-steps li {
		min-height: 70px;
		gap: 12px;
		padding: 15px 16px;
	}

	.incident-steps li p {
		font-size: 14px;
		font-weight: 400;
		line-height: 21px;
	}

	.threats-response__mobile-cta {
		display: inline-flex;
		width: 100%;
		min-height: 48px;
	}

	.threats-latest {
		min-height: 1196px;
	}

	.threats-latest .site-container {
		gap: 24px;
	}

	.threats-latest__heading {
		width: 100%;
		gap: 8px;
		padding: 0;
	}

	.threats-latest__heading h2 {
		font-size: 24px;
		line-height: 30px;
	}

	.threats-latest__heading p {
		font-size: 14px;
		line-height: 21px;
	}

	.threats-latest__rows {
		gap: 10px;
	}

	.threat-latest-row {
		display: block;
		height: auto;
		padding: 0;
		overflow: hidden;
		box-shadow: var(--tp-card-shadow);
	}

	.threat-latest-row__direction {
		height: 64px;
	}

	.threat-latest-row__desktop-heading {
		display: none;
	}

	.threat-latest-row__toggle {
		display: flex;
		width: 100%;
		height: 64px;
		align-items: center;
		justify-content: space-between;
		gap: 12px;
		padding-inline: 16px;
		border: 0;
		background: transparent;
		color: var(--tp-text);
		font-size: 16px;
		font-weight: 600;
		line-height: 22px;
		text-align: left;
	}

	.threat-latest-row__toggle > span:first-child {
		max-width: 246px;
	}

	.threat-latest-row__toggle-meta {
		display: flex;
		align-items: center;
		gap: 8px;
	}

	.threat-latest-row__toggle-meta > span:first-child {
		display: grid;
		width: 28px;
		height: 28px;
		place-items: center;
		border-radius: 50%;
		background: var(--tp-selected);
		color: var(--tp-brand);
		font-size: 11px;
		font-weight: 500;
		line-height: 16px;
	}

	.threat-latest-row__toggle-meta > span:last-child {
		width: 14px;
		color: var(--tp-brand);
		font-size: 18px;
		font-weight: 500;
		line-height: 22px;
		text-align: center;
	}

	.threat-latest-row__panel {
		display: grid;
		grid-template-rows: 0fr;
		opacity: 0;
		transition:
			grid-template-rows 220ms ease,
			opacity 180ms ease;
	}

	.threat-latest-row__panel-inner {
		height: auto;
		overflow: hidden;
	}

	.threat-latest-row.is-open .threat-latest-row__panel {
		grid-template-rows: 1fr;
		opacity: 1;
	}

	.threat-latest-row__posts {
		height: auto;
		grid-template-columns: 1fr;
		gap: 8px;
		padding: 0 16px;
	}

	.threat-latest-post {
		min-height: 116px;
		gap: 8px;
		padding: 12px 14px;
	}

	.threat-latest-post h3 {
		font-size: 14px;
		line-height: 20px;
	}

	.threat-latest-post__link {
		font-size: 12px;
		font-weight: 600;
		line-height: 18px;
	}

	.threat-latest-row__mobile-archive {
		display: flex;
		width: calc(100% - 32px);
		min-height: 44px;
		align-items: center;
		justify-content: center;
		margin: 8px 16px 16px;
		border-radius: 12px;
		background: var(--tp-selected);
		color: var(--tp-brand);
		font-size: 12px;
		font-weight: 600;
		line-height: 18px;
	}

	.threats-faq {
		min-height: 909px;
		padding-block: 24px;
	}

	.threats-faq__container {
		width: calc(100% - 32px);
		gap: 24px;
	}

	.threats-faq__container > header {
		gap: 8px;
	}

	.threats-faq h2 {
		font-size: 24px;
		line-height: 30px;
	}

	.threats-faq header p {
		font-size: 14px;
		line-height: 21px;
	}

	.threat-faq-item {
		padding: 15px;
	}

	.threat-faq-item > button {
		font-size: 14px;
		line-height: 20px;
	}

	.threat-faq-item__panel p {
		width: 100%;
		padding-top: 12px;
		font-size: 14px;
		line-height: 21px;
	}

	.threats-final-cta {
		min-height: 541px;
		padding: 24px 0 40px;
	}

	.threats-final-cta__inner {
		display: flex;
		width: calc(100% - 32px);
		height: auto;
		flex-direction: column;
		align-items: stretch;
		gap: 20px;
	}

	.threats-final-cta__copy {
		width: 100%;
		gap: 12px;
	}

	.threats-final-cta h2 {
		font-size: 24px;
		line-height: 30px;
	}

	.threats-final-cta__copy > p:not(.threats-eyebrow) {
		width: 100%;
		font-size: 14px;
		line-height: 21px;
	}

	.threats-final-cta__actions {
		flex-direction: column;
		gap: 10px;
	}

	.threats-final-cta__primary,
	.threats-final-cta__secondary {
		width: 100%;
		min-height: 48px;
	}

	.threats-final-cta__inner > img {
		width: 280.8px;
		height: 148.2px;
		align-self: center;
	}

	.hucker-news-threats .threats-footer .site-footer__main {
		display: grid !important;
		min-height: 378px !important;
		grid-template-columns: 1fr !important;
		gap: 28px !important;
		padding: 44px 16px 28px !important;
	}

	.hucker-news-threats .threats-footer .site-footer__brand-row {
		justify-content: flex-start !important;
	}

	.hucker-news-threats .threats-footer .site-brand__mark {
		width: 34px !important;
		height: 34px !important;
		flex-basis: 34px !important;
		border-radius: 10px !important;
		font-size: 16px !important;
		font-weight: 600 !important;
		line-height: 20px !important;
	}

	.hucker-news-threats .threats-footer .site-brand__name {
		font-size: 14px !important;
		font-weight: 600 !important;
		line-height: 18px !important;
	}

	.hucker-news-threats .threats-footer .site-footer__online {
		display: none !important;
	}

	.hucker-news-threats .threats-footer .site-footer__brand > p {
		display: block !important;
		max-width: 326px;
		margin-top: 12px;
		color: #8fa4bc;
		font-size: 13px;
		font-weight: 400;
		line-height: 20px;
	}

	.hucker-news-threats .threats-footer .site-footer__status {
		display: flex !important;
		margin-top: 8px;
		color: #aab8c6;
		font-size: 12px;
		font-weight: 400;
		line-height: 16px;
	}

	.hucker-news-threats .threats-footer .site-footer__groups {
		display: grid !important;
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
		gap: 24px !important;
		margin-top: 0 !important;
	}

	.hucker-news-threats .threats-footer .footer-group {
		display: block !important;
	}

	.hucker-news-threats .threats-footer .footer-group:first-child {
		display: none !important;
	}

	.hucker-news-threats .threats-footer .footer-group__toggle {
		display: none !important;
	}

	.hucker-news-threats .threats-footer .footer-group__title {
		display: block !important;
		margin-bottom: 12px;
		color: #aab8c6;
		font-size: 10px;
		font-weight: 600;
		letter-spacing: 0.7px;
		line-height: 14px;
		text-transform: uppercase;
	}

	.hucker-news-threats .threats-footer .footer-group__panel,
	.hucker-news-threats .threats-footer .js .footer-group__panel {
		display: block !important;
	}

	.hucker-news-threats .threats-footer .footer-menu {
		gap: 12px;
		padding: 0;
	}

	.hucker-news-threats .threats-footer .footer-menu a {
		min-height: 18px;
		color: #8fa4bc;
		font-size: 13px;
		font-weight: 400;
		line-height: 18px;
	}

	.hucker-news-threats .threats-footer .site-footer__bottom {
		display: block !important;
		min-height: 99px !important;
		padding: 28px 16px !important;
		color: #8fa4bc !important;
		font-size: 11px !important;
		font-weight: 400 !important;
		line-height: 16px !important;
	}

	.hucker-news-threats .threats-footer .site-footer__bottom nav {
		margin-top: 10px;
		color: #708399 !important;
	}

	.hucker-news-threats .threats-footer .site-footer__bottom ul {
		margin-top: 0 !important;
	}
}

@media (min-width: 421px) and (max-width: 767px) {
	.threats-hero__image {
		height: auto;
		aspect-ratio: 525 / 318;
		margin-top: 0;
	}
}

@media (prefers-reduced-motion: reduce) {
	.threats-page *,
	.threats-page *::before,
	.threats-page *::after {
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
	}
}
