/* ━━━ X（Twitter）プロフィールカード ━━━ */

.x-profile-card {
	background: var( --c-white );
	border-radius: var( --r-card );
	box-shadow: var( --shadow-card );
	padding: .9rem 1rem;
	margin-bottom: .75rem;
}

.x-profile-card__header {
	display: flex;
	align-items: center;
	gap: .75rem;
	margin-bottom: .75rem;
}

.x-profile-card__icon {
	width: 40px;
	height: 40px;
	background: #000;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 1.15rem;
	flex-shrink: 0;
}

.x-profile-card__info {
	display: flex;
	flex-direction: column;
	gap: .1rem;
	min-width: 0;
}

.x-profile-card__name {
	font-weight: 700;
	font-size: .95rem;
	color: var( --c-text );
	text-decoration: none;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.x-profile-card__name:hover {
	text-decoration: underline;
}

.x-profile-card__handle {
	font-size: .8rem;
	color: var( --c-muted );
}

.x-profile-card__follow {
	display: flex;
	justify-content: center;
}

/* ━━━ ピンツイート ━━━ */

.x-tweet-wrap {
	overflow: hidden;
}
.x-tweet-wrap .twitter-tweet {
	margin: 0 auto !important;
	max-width: 100% !important;
}
