.tib {
	background: #fff;
	border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.tib__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	padding: 1rem 2rem;
}

.tib__left {
	display: flex;
	align-items: center;
	gap: 18px;
	min-width: 0;
}

.tib__item {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	text-decoration: none;
	color: inherit;
	min-width: 0;
}

.tib__emoji {
	font-size: 24px;
	line-height: 1;
	display: inline-flex;
}

.tib__text {
	display: inline-flex;
	flex-direction: column;
	line-height: 1.1;
	min-width: 0;
}

.tib__title {
	font-weight: 600;
	font-size: 13px;
	white-space: nowrap;
}

.tib__subtitle {
	font-size: 12px;
	opacity: 0.7;
	white-space: nowrap;
	font-weight: 500;
}

.tib__sep {
	width: 1px;
	height: 22px;
	background: rgba(0, 0, 0, 0.12);
}

.tib__right {
	display: flex;
	align-items: center;
	gap: 10px;
	white-space: nowrap;
}

.tib__link {
	text-decoration: none;
	color: inherit;
	font-weight: 600;
	font-size: 13px;
	opacity: 0.9;
}

.tib__dot {
	opacity: 0.35;
}

/* Responsive: collapse left items on smaller screens */
@media (max-width: 992px) {
	.tib__subtitle {
		display: none;
	}
}

@media (max-width: 768px) {
	.tib__inner {
		flex-direction: column;
		align-items: flex-start;
	}
	.tib__right {
		flex-wrap: wrap;
		white-space: normal;
	}
	.tib__sep {
		display: none;
	}
	.tib__left {
		flex-wrap: wrap;
	}
}
