/**
 * IrelandWide Image Credit Overlay — base styles.
 * Dynamic position/color overrides are injected via wp_add_inline_style.
 */

.iwico-image-wrapper {
	position: relative;
}

/* Only for plugin-created wrappers around bare/linked images. */
.iwico-image-wrapper--created.iwico-image-wrapper--inline {
	display: inline-block;
	max-width: 100%;
	vertical-align: middle;
	line-height: 0;
}

.iwico-image-wrapper--created.iwico-image-wrapper--inline > a,
.iwico-image-wrapper--created.iwico-image-wrapper--inline > img,
.iwico-image-wrapper--created.iwico-image-wrapper--inline > picture {
	display: inline-block;
	max-width: 100%;
	vertical-align: middle;
}

/* Do not force block featured-image containers into inline layout. */
.wp-block-post-featured-image.iwico-image-wrapper,
.post-thumbnail.iwico-image-wrapper,
.featured-image.iwico-image-wrapper,
.page-header-image.iwico-image-wrapper,
.post-image.iwico-image-wrapper,
.wp-block-image.iwico-image-wrapper,
.bde-image.iwico-image-wrapper,
figure.breakdance-image.iwico-image-wrapper,
figure.iwico-image-wrapper {
	/* Keep theme display; only ensure positioning context. */
	position: relative;
}

.iwico-image-credit {
	position: absolute;
	right: 8px;
	bottom: 8px;
	z-index: 100;
	max-width: calc(100% - 16px);
	padding: 5px 8px;
	border-radius: 3px;
	background: rgba(0, 0, 0, 0.68);
	color: #ffffff;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	font-weight: 400;
	line-height: 1.3;
	text-align: right;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
	box-sizing: border-box;
	pointer-events: none;
	word-wrap: break-word;
	overflow-wrap: break-word;
	hyphens: auto;
	white-space: normal;
}

/* Overlay never intercepts clicks/taps on links, lightboxes, or the image. */
.iwico-image-wrapper .iwico-image-credit {
	pointer-events: none;
}

/* Visually hide native captions when the overlay is present (keep for screen readers). */
.iwico-caption-overlayed > figcaption,
.iwico-caption-overlayed > .wp-caption-text,
.iwico-caption-overlayed > .ee-gallery-item-caption,
.iwico-caption-overlayed > .breakdance-image-caption,
.iwico-caption-overlayed > .gallery-caption,
.iwico-caption-overlayed figcaption,
.iwico-caption-overlayed .wp-caption-text,
.iwico-caption-overlayed .ee-gallery-item-caption,
.iwico-caption-overlayed .breakdance-image-caption,
.iwico-caption-overlayed .gallery-caption {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	padding: 0 !important;
	margin: -1px !important;
	overflow: hidden !important;
	clip: rect(0, 0, 0, 0) !important;
	clip-path: inset(50%) !important;
	white-space: nowrap !important;
	border: 0 !important;
}

@media (max-width: 480px) {
	.iwico-image-credit {
		right: 6px;
		bottom: 6px;
		left: auto;
		max-width: calc(100% - 12px);
		font-size: 10px;
		padding: 4px 6px;
	}
}
