/**
 * Custom ACF Block Styles
 *
 * BEM naming convention: .ttg-block-{block-name}__{element}
 * These styles are framework-agnostic (no Tailwind dependency).
 *
 * @package tgg
 */

/* ==========================================================================
   Image Block
   ========================================================================== */

.ttg-block-image {
	margin: 0;
	padding: 0;
	width: 100%;
}

.ttg-block-image img {
	display: block;
	width: 100%;
	height: auto;
}

.ttg-block-image__caption {
	margin-top: 0.5rem;
	font-size: 0.875rem;   /* 14px */
	line-height: 1.5;
	color: #6b7280;        /* neutral-500 */
	text-align: center;
}

/* ==========================================================================
   Heading Block
   ========================================================================== */

.ttg-block-heading {
	font-size: 1.75rem;    /* 28px */
	font-weight: 700;
	line-height: 1.25;
	color: inherit;
	margin: 0 0 1rem;
}

/* ==========================================================================
   Download Material Block
   ========================================================================== */

.ttg-block-download-material {
	position: relative;
	display: inline-block; /* shrink-wrap around the image */
	width: 100%;
}

.ttg-block-download-material__image {
	display: block;
	width: 100%;
	max-height: 600px;
	height: auto;
	object-fit: contain;
	object-position: top center;
}

.ttg-block-download-material__button {
	position: absolute;
	bottom: 20px;
	right: 20px;
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	padding: 0.6rem 1.25rem;
	background-color: #007D51;
	color: #ffffff;
	font-size: 0.9375rem;  /* 15px */
	font-weight: 600;
	line-height: 1;
	text-decoration: none;
	border-radius: 4px;
	cursor: pointer;
	transition: background-color 0.2s ease;
}

.ttg-block-download-material__button:hover,
.ttg-block-download-material__button:focus {
	background-color: #005f3d;
	color: #ffffff;
}

.ttg-block-download-material__button:focus-visible {
	outline: 3px solid #007D51;
	outline-offset: 2px;
}
