/*
Theme Name: NEUROPA
Theme URI: https://neuropa.no
Author: NEUROPA Initiative
Description: Custom theme for the NEUROPA European Strategic Resilience Portal. Pairs with the NEUROPA Resource Aggregator plugin: the homepage, Research archive and Sector pages render the Resource post type natively. Styling uses Tailwind (CDN) to match the original design.
Version: 1.0.0
Requires at least: 6.0
Requires PHP: 7.4
License: GPL-2.0-or-later
Text Domain: neuropa
*/

/* Tailwind is loaded via CDN (see functions.php). These rules cover the few
   things the original site set in a <style> block, plus utilities the Play CDN
   doesn't ship by default. */

body { font-family: 'Inter', system-ui, sans-serif; }

.hero-bg {
	background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://picsum.photos/id/1015/1920/1080');
	background-size: cover;
	background-position: center;
}

/* line-clamp helpers (used by resource cards) */
.line-clamp-3 {
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

@media (prefers-reduced-motion: reduce) {
	* { transition: none !important; animation: none !important; }
}
