/**
 * Rendinoud theme styles.
 * Tailwind CSS handles most layout. This file is for non-Tailwind styles.
 */

img {
	max-width: 100%;
	height: auto;
}

/* Line clamp utility (Tailwind plugin not loaded via CDN). */
.line-clamp-2 {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

/* Prevent horizontal scroll — keeps fixed CTA bar within visible viewport on mobile */
html,
body {
	overflow-x: hidden;
}

/* Site wrapper */
.site {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}

.site-content {
	flex: 1;
}
