/**
 * 獣医師プロフィール表示用CSS
 * 投稿記事の末尾に表示されるプロフィールカード
 */

/* ======================================
   プロフィール全体のコンテナ
   ====================================== */
.vet-profile {
	margin-block: 2em;
	padding-top: 2em;
	border-top: 2px solid #5fbcdd;
}

/* ======================================
   見出しエリア
   ====================================== */
.vet-profile__heading {
	text-align: center;
	margin-bottom: 1.5em;
}

/* ======================================
   プロフィールカード
   ====================================== */
.vet-profile__card {
	display: flex;
	align-items: flex-start;
	gap: 3em;
	background-color: #f8fafb;
	border-radius: 10px;
	padding: 3em;
}

/* ======================================
   プロフィール写真
   ====================================== */
.vet-profile__photo {
	flex-shrink: 0;
	width: 120px;
	height: 120px;
}

.vet-profile__img {
	width: 120px;
	height: 120px;
	object-fit: cover;
	border-radius: 50%;
	border: 3px solid #fff;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* ======================================
   テキスト情報エリア
   ====================================== */
.vet-profile__info {
	flex: 1;
	min-width: 0;
}

.vet-profile__specialty {
	font-size: 0.8125rem;
	color: #5fbcdd;
	font-weight: 600;
	margin-bottom: 0.3em;
}

.vet-profile__name {
	font-family: 'dnp-shuei-mgothic-std', sans-serif;
	font-weight: 600;
	font-size: 1.125rem;
	color: #333;
	letter-spacing: 0.1em;
	margin-bottom: 0.2em;
}

.vet-profile__affiliation {
	font-size: 0.875rem;
	color: #666;
	margin-bottom: 0.8em;
}

.vet-profile__bio {
	font-size: 0.875rem;
	line-height: 1.8;
	margin-bottom: 1em;
}

/* ======================================
   写真なしの場合の調整
   ====================================== */
.vet-profile__card:not(:has(.vet-profile__photo)) {
	/* 写真がない場合はテキストのみのレイアウト */
}

.vet-profile__card:not(:has(.vet-profile__photo)) .vet-profile__info {
	text-align: left;
}

/* ======================================
   レスポンシブ（SP: 999px以下）
   ====================================== */
@media screen and (max-width: 999px) {
	.vet-profile {
		margin-top: 2em;
		padding-top: 1.5em;
	}

	.vet-profile__title {
		font-size: 1.1rem;
	}

	.vet-profile__card {
		flex-direction: column;
		align-items: center;
		text-align: center;
		padding: 1.2em;
		gap: 1em;
	}

	.vet-profile__photo {
		width: 100px;
		height: 100px;
	}

	.vet-profile__img {
		width: 100px;
		height: 100px;
	}

	.vet-profile__info {
		text-align: center;
	}

	.vet-profile__qualifications {
		text-align: left;
	}

	.vet-profile__bio {
		text-align: left;
	}
}
