/* Threat Feed */

.uw-threat-feed {
	width: 100%;
}

.uw-threat-feed__list {
	display: flex;
	flex-direction: column;
	gap: 32px;
}

/* Card */

.uw-tf-card {
	display: flex;
	position: relative;
	align-items: flex-start;
	flex-direction: column;
	padding: 30px;
	background: linear-gradient(#fff, #fff) padding-box, linear-gradient(#D8DFE9, #D8DFE9) border-box;
	border: 1px solid transparent;
	border-radius: 24px;
}

.uw-tf-card:hover {
	background: linear-gradient(#fff, #fff) padding-box, var(--brand-gradient) border-box;
}

.uw-tf-card__cve {
	margin: 0;
	padding: 2px 5px;
	border: 1px solid #D8DFE9;
	border-radius: 4px;
	color: #75808E;
	font-size: 14px;
	font-weight: 400;
	text-transform: uppercase;
}

.uw-tf-card__title {
	margin: 20px 0 0 0;
	color: #18202D;
	font-size: 24px;
	font-weight: 400;
	line-height: 1.2;
}

.uw-tf-card__desc {
	margin: 20px 0 0 0;
	color: #75808E;
	font-size: 16px;
	letter-spacing: -0.01em;
	line-height: 1.6;
}

.uw-tf-card .uw-tf-card__link {
	display: block;
	margin-top: 30px;
	color: #18202D;
	font-size: 16px;
	font-weight: 400;
	letter-spacing: -0.01em;
	line-height: 1.6;
	text-decoration: none;
}

.uw-tf-card .uw-tf-card__link:hover {
	
}

/* Share row */

.uw-tf-card__share {
	display: flex;
	position: absolute;
	bottom: 30px;
	right: 30px;
	align-items: center;
	gap: 8px;
	justify-content: flex-end;
	margin-top: 10px;
	flex-wrap: wrap;
}

.uw-tf-card .uw-tf-card__share .uw-tf-card__share-btn {
	display: inline-flex;
	height: 30px;
	width: 30px;
	align-items: center;
	justify-content: center;
	background: transparent;
	border: 2px solid #D8DFE9;
	border-radius: 4px;
	color: #75808E;
	cursor: pointer;
	transition: background 0.15s, border-color 0.15s, color 0.15s;
	line-height: 0px;
}

.uw-tf-card .uw-tf-card__share .uw-tf-card__share-btn:hover {
	background: #D8DFE9;
}

.uw-tf-card__share-btn span {
	display: block;
	position: absolute;
	height: 0px;
	width: 0px;
	font-size: 0px;
	line-height: 0;
	right: -9999px;
}

.uw-tf-card__share-btn--copy {
	font-family: inherit;
}

.uw-tf-card__share-btn--copy:focus-visible {
	outline: 2px solid #0058FF;
	outline-offset: 2px;
}

/* See More */

.uw-threat-feed__footer {
	display: flex;
	justify-content: center;
	margin-top: 32px;
}

.uw-threat-feed__see-more {
	
}
