.bb-page {
	--bb-radius: 3px;
	--bb-shadow: 0 4px 32px 0 rgba(10, 14, 29, 0.02), 0 8px 64px 0 rgba(10, 14, 29, 0.08);
}

.bb-page .site-banner {
	padding-bottom: 96px;
	margin-bottom: 0;
}

.bb-page .banner__background svg {
	display: none;
}

.bb-page .banner__background {
	min-height: 0;
}

.bb-page .banner__desc strong {
	font-weight: 700;
	color: #fff;
}

.bb-page .section {
	padding: 72px 0;
	background: var(--bg-primary);
}

.bb-page #find-issue {
	padding-top: 112px;
}

.bb-page .section__title {
	margin-bottom: 16px;
}

.bb-page .section__title + .section__desc {
	margin-top: 0;
	margin-bottom: 40px;
	font-size: 18px;
	line-height: 30px;
	color: var(--gray);
}

.bb-page .section__content {
	outline: none;
}

.bb-stage-head {
	max-width: 750px;
	margin: 0 auto 56px;
	text-align: center;
}

.bb-stage-eyebrow {
	display: block;
	margin-bottom: 14px;
	font-size: 19px;
	line-height: 26px;
	font-weight: 500;
	color: var(--brand-primary);
}

.bb-stage-title {
	margin: 0 0 16px;
	color: var(--nav-color);
}

.bb-stage-lead {
	margin: 0;
	font-size: 18px;
	line-height: 30px;
	color: var(--gray);
}

.bb-stage-lead a {
	text-decoration: none;
}

.bb-block + .bb-block {
	margin-top: 64px;
}

.bb-subhead {
	margin: 0 0 24px;
	font-size: 24px;
	line-height: 32px;
	font-weight: 500;
	color: var(--nav-color);
}

.bb-subhead__note {
	display: block;
	margin-top: 6px;
	font-size: 16px;
	line-height: 26px;
	color: var(--gray);
}

.bb-grid {
	display: grid;
	gap: 24px;
}

.bb-grid--1 {
	grid-template-columns: minmax(0, 1fr);
}

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

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

.bb-grid + .bb-grid,
.bb-grid + .bb-strip {
	margin-top: 24px;
}

.bb-card {
	display: flex;
	flex-direction: column;
	background: var(--bg-primary);
	border-radius: var(--bb-radius);
	box-shadow: var(--bb-shadow);
	padding: 32px;
	height: 100%;
}

.bb-card__title {
	margin: 0 0 16px;
	font-size: 19px;
	line-height: 24px;
	font-weight: 500;
	color: var(--nav-color);
}

.bb-card__note {
	margin: 16px 0 0;
	font-size: 15px;
	line-height: 24px;
	color: var(--gray);
}

.bb-card__body {
	flex: 1 1 auto;
	padding-bottom: 28px;
}

.bb-card__note:last-child {
	margin-top: auto;
	padding-top: 24px;
	border-top: 1px solid var(--border-secondary);
}

@supports (grid-template-rows: subgrid) {
	.bb-grid--aligned {
		grid-template-rows: 1fr auto;
	}

	.bb-grid--aligned > .bb-card {
		display: grid;
		grid-row: span 2;
		grid-template-rows: subgrid;
	}

	.bb-grid--aligned .bb-card__note:last-child {
		margin-top: 0;
	}
}

.bb-mark--yes {
	display: inline-block;
	font-size: 18px;
	line-height: 1;
	color: var(--green);
}

.bb-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.bb-list li {
	position: relative;
	padding: 0 0 0 26px;
	margin: 0 0 10px;
	font-size: 16px;
	line-height: 26px;
	color: var(--docs-text-primary);
}

.bb-list li:last-child {
	margin-bottom: 0;
}

.bb-list li:before {
	position: absolute;
	left: 0;
	top: 0;
}

.bb-list--check li:before {
	content: '\2713';
	color: var(--green);
}

.bb-list--cross li:before {
	content: '\00D7';
	color: var(--red);
	font-size: 18px;
}

.bb-list--dot li:before {
	content: '';
	top: 11px;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: var(--brand-primary);
}

@media (min-width: 752px) {
	.bb-list--split {
		column-count: 2;
		column-gap: 40px;
	}

	.bb-list--split li {
		break-inside: avoid;
	}
}

.bb-domains {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	column-gap: 20px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.bb-domains li {
	margin: 0;
}

.bb-domains a {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 7px 0;
	font-size: 16px;
	line-height: 24px;
	color: var(--nav-color);
	transition: color 0.3s;
}

.bb-domains a:before {
	content: '\2713';
	flex: 0 0 auto;
	color: var(--green);
}

.bb-domains a:hover,
.bb-domains a:focus {
	color: var(--brand-primary);
}

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

.bb-tile {
	background: var(--bg-primary);
	border-radius: var(--bb-radius);
	box-shadow: var(--bb-shadow);
	padding: 28px 24px;
	text-align: center;
	font-size: 17px;
	line-height: 28px;
	color: var(--nav-color);
}

.bb-tile .bb-mark--yes {
	display: block;
	margin: 0 0 12px;
}

.bb-strip {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	margin: 0;
	background: var(--bg-primary);
	border: 1.5px solid var(--border-secondary);
	border-left: 5px solid var(--red);
	border-radius: 0 var(--bb-radius) var(--bb-radius) 0;
	padding: 20px 24px;
	font-size: 17px;
	line-height: 28px;
	color: var(--nav-color);
}

.bb-strip svg {
	flex: 0 0 auto;
	width: 22px;
	height: 22px;
	margin-top: 3px;
	stroke: var(--red);
}

.bb-strip strong {
	font-weight: 500;
}

.bb-tiles + .bb-strip {
	margin-top: 24px;
}

.bb-panel {
	background: var(--bg-primary);
	border-radius: var(--bb-radius);
	box-shadow: var(--bb-shadow);
	overflow: hidden;
}

.bb-panel__head {
	padding: 32px;
	border-bottom: 1px solid var(--border-secondary);
}

.bb-panel__head p {
	margin: 0 0 8px;
	color: var(--docs-text-primary);
}

.bb-panel__head p:last-child {
	margin-bottom: 0;
}

.bb-panel__body {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.bb-panel__col {
	padding: 32px;
	border-right: 1px solid var(--border-secondary);
}

.bb-panel__col:last-child {
	border-right: 0;
}

.bb-panel__label {
	display: block;
	margin: 0 0 14px;
	font-size: 15px;
	line-height: 22px;
	font-weight: 500;
	color: var(--nav-color);
}

.bb-panel__foot {
	margin: 0;
	padding: 24px 32px;
	border-top: 1px solid var(--border-secondary);
	color: var(--nav-color);
	text-align: center;
}

.bb-table-wrap {
	max-width: 520px;
	margin: 0 auto;
	background: var(--bg-primary);
	border-radius: var(--bb-radius);
	box-shadow: var(--bb-shadow);
	overflow: hidden;
}

.bb-table {
	width: 100%;
	border-collapse: collapse;
}

.bb-table th,
.bb-table td {
	padding: 14px 32px;
	text-align: left;
	border-bottom: 1px solid var(--border-secondary);
}

.bb-table thead th {
	font-size: 15px;
	line-height: 22px;
	font-weight: 500;
	color: var(--gray);
}

.bb-table tbody tr:last-child th,
.bb-table tbody tr:last-child td {
	border-bottom: 0;
}

.bb-table__rating {
	width: 30%;
	font-size: 17px;
	font-weight: 500;
	color: var(--nav-color);
}

.bb-table__payout {
	font-size: 17px;
	color: var(--docs-text-primary);
	font-variant-numeric: tabular-nums;
}

.bb-page .form--bug-bounty {
	background: var(--bg-primary);
	border-radius: var(--bb-radius);
	box-shadow: var(--bb-shadow);
	padding: 40px;
}

.bb-page .form--bug-bounty textarea.form-control {
	min-height: 200px;
	font-family: inherit;
}

.bb-page .form--bug-bounty textarea.form-control::placeholder {
	font-size: inherit;
	font-weight: inherit;
}

.bb-form-hint {
	display: block;
	margin: 12px 0 0;
	font-size: 14px;
	line-height: 22px;
	color: var(--gray);
}

.bb-page .form--bug-bounty .tile--select .tile__title {
	font-weight: 400;
}

.bb-page .form--bug-bounty .tile--select.is-selected .tile__title {
	font-weight: 700;
}

@media (max-width: 1011px) {
	.bb-page .section {
		padding: 56px 0;
	}

	.bb-tiles,
	.bb-panel__body {
		grid-template-columns: 1fr;
	}


	.bb-panel__col {
		border-right: 0;
		border-bottom: 1px solid var(--border-secondary);
	}

	.bb-panel__col:last-child {
		border-bottom: 0;
	}
}

@media (max-width: 751px) {
	.bb-page .section {
		padding: 44px 0;
	}

	.bb-page #find-issue {
		padding-top: 64px;
	}

	.bb-grid--2,
	.bb-grid--3,
	.bb-domains {
		grid-template-columns: 1fr;
	}

	.bb-card,
	.bb-strip,
	.bb-panel__head,
	.bb-panel__col,
	.bb-panel__foot {
		padding: 24px;
	}

	.bb-stage-head {
		margin-bottom: 40px;
	}

	.bb-block + .bb-block {
		margin-top: 48px;
	}

	.bb-subhead {
		font-size: 21px;
		line-height: 28px;
	}

	.bb-page .form--bug-bounty {
		padding: 24px;
	}

	.bb-table th,
	.bb-table td {
		padding: 14px 20px;
	}

	.bb-page .form--bug-bounty .form-control {
		font-size: 16px !important;
	}
}
