/* BlueWave Photo Caption — scoped under .bw-photo-caption */

.bw-photo-caption {
	display: inline-flex;
	align-items: center;
	gap: 16px;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
	border-radius: 16px;
	padding: 18px 22px;
	max-width: 520px;
	box-shadow: 0 8px 32px rgba(2, 40, 60, 0.12);
	box-sizing: border-box;
}

/* ---- Avatar / Icon ---- */
.bw-photo-caption__avatar {
	flex-shrink: 0;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	overflow: hidden;
	background: linear-gradient(135deg, #88b4c8, #023c5a);
	display: flex;
	align-items: center;
	justify-content: center;
}

.bw-photo-caption__avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
	display: block;
}

.bw-photo-caption__avatar.bw-photo-caption__avatar--icon {
	background: linear-gradient(135deg, #88b4c8, #023c5a);
	color: #ffffff;
	font-size: 20px;
}

.bw-photo-caption__avatar--icon i,
.bw-photo-caption__avatar--icon svg {
	color: #ffffff;
	fill: #ffffff;
	width: 22px;
	height: 22px;
}

/* ---- Text block ---- */
.bw-photo-caption__body {
	display: flex;
	flex-direction: column;
	gap: 4px;
	min-width: 0;
}

.bw-photo-caption__title {
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #023c5a;
	margin: 0 0 2px;
	line-height: 1.3;
}

.bw-photo-caption__quote {
	font-style: italic;
	font-size: 15px;
	line-height: 1.45;
	color: #0b2233;
	margin: 0;
}

.bw-photo-caption__source {
	font-size: 12px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #2a4154;
	font-weight: 700;
	margin: 2px 0 0;
	line-height: 1.3;
}

/* ---- Layout variants ---- */
.bw-photo-caption--full-width {
	display: flex;
	width: 100%;
	max-width: 100%;
}

/* ---- Dark variant ---- */
.bw-photo-caption--dark {
	background: linear-gradient(140deg, #0a4866, #023c5a);
}

.bw-photo-caption--dark .bw-photo-caption__title {
	color: #f1c286;
}

.bw-photo-caption--dark .bw-photo-caption__quote {
	color: rgba(255, 255, 255, 0.92);
}

.bw-photo-caption--dark .bw-photo-caption__source {
	color: rgba(255, 255, 255, 0.65);
}

/* ---- Responsive ---- */
@media (max-width: 480px) {
	.bw-photo-caption {
		padding: 14px 16px;
		gap: 12px;
	}
	.bw-photo-caption__avatar {
		width: 40px;
		height: 40px;
	}
	.bw-photo-caption__quote { font-size: 13.5px; }
}
