
.tdci-wrap,
.tdci-wrap * {
	box-sizing: border-box;
}

.tdci-wrap {
	width: 100%;
	font-family: "Manrope", sans-serif;
}

.tdci-list {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.tdci-row {
	display: flex;
	align-items: flex-start;
	width: 100%;
}

.tdci-label {
	flex: 0 0 31%;
	font-size: 18px;
	font-weight: 600;
	line-height: 1.35;
	color: #f3f3f3;
}

.tdci-value {
	flex: 1 1 auto;
	min-width: 0;
	text-align: right;
	font-size: 18px;
	font-weight: 400;
	line-height: 1.35;
	color: #c9c9cf;
	overflow-wrap: anywhere;
}

.tdci-value a {
	color: inherit;
	text-decoration: none;
	transition: opacity .25s ease;
}

.tdci-value a:hover {
	opacity: .75;
}

.tdci-divider {
	width: 100%;
	height: 1px;
	margin: 30px 0;
	background: rgba(255,255,255,.08);
}

.tdci-social-title {
	margin: 0 0 18px;
	font-size: 18px;
	font-weight: 600;
	line-height: 1.35;
	color: #f3f3f3;
}

.tdci-social-list {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 16px;
}

.tdci-social-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #c89b00;
	font-size: 24px;
	line-height: 1;
	text-decoration: none;
	transition: color .25s ease, transform .25s ease;
}

.tdci-social-link svg {
	display: block;
	width: 1em;
	height: 1em;
	fill: currentColor;
}

.tdci-social-link:hover {
	color: #fff;
	transform: translateY(-2px);
}

@media (max-width: 767px) {
	.tdci-row {
		gap: 18px;
	}

	.tdci-label {
		flex-basis: 34%;
	}

	.tdci-label,
	.tdci-value,
	.tdci-social-title {
		font-size: 16px;
	}
}

@media (max-width: 480px) {
	.tdci-row {
		display: grid;
		grid-template-columns: 1fr;
		gap: 6px;
	}

	.tdci-label {
		flex-basis: auto;
	}

	.tdci-value {
		text-align: left;
	}
}
