/**
 * Post Title Display Widget CSS
 * Serenity Blog System
 */

/* Title Container */
.serenity-post-title-display {
	margin: 0;
	padding: 0;
	word-wrap: break-word;
	overflow-wrap: break-word;
}

/* Title Link */
.serenity-post-title-display a {
	text-decoration: none;
	color: inherit;
	transition: color 0.3s ease;
}

.serenity-post-title-display a:hover {
	text-decoration: none;
}

/* Default Typography */
.serenity-post-title-display {
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
	font-weight: 600;
	line-height: 1.3;
}

/* Responsive Font Sizes */
@media (max-width: 768px) {
	.serenity-post-title-display {
		font-size: 0.9em;
	}
}

@media (max-width: 480px) {
	.serenity-post-title-display {
		font-size: 0.85em;
	}
}

/* Accessibility */
.serenity-post-title-display a:focus {
	outline: 2px solid #0073aa;
	outline-offset: 2px;
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
	.serenity-post-title-display {
		color: #000000;
	}
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
	.serenity-post-title-display a {
		transition: none;
	}
}
