@charset "UTF-8";
/**
 * FKIP UMKO — design layer
 * ---------------------------------------------------------------------------
 * Loaded after the compiled Bootstrap 4 bundle (theme.min.css). Bootstrap keeps
 * providing the grid and utilities; everything below re-skins the theme into the
 * "Akademik Modern" look and supplies the fkip-* component set used by the
 * rewritten templates.
 *
 * The SCSS toolchain (gulp 4 + node-sass) cannot run on this server — node and
 * npm are not installed — so this file is authored by hand and is the source of
 * truth for the redesign. Keep sass/theme/_theme_variables.scss in sync if the
 * build is ever restored.
 *
 * Contents
 *   1.  Tokens
 *   2.  Webfont
 *   3.  Base & typography
 *   4.  Bootstrap overrides (buttons, forms, cards)
 *   5.  Topbar
 *   6.  Navbar
 *   7.  Hero
 *   8.  Section furniture
 *   9.  Stats band
 *   10. Cards & feeds
 *   11. Agenda & announcement lists
 *   12. Prodi cards
 *   13. Page header & breadcrumb
 *   14. Article content
 *   15. Sidebar & widgets
 *   16. Pagination & comments
 *   17. Footer
 *   18. Search overlay & utilities
 *   19. Print
 */

/* ========================================================================== *
 * 1. Tokens
 * ========================================================================== */

:root {
	/* Brand */
	--fkip-primary-50:  #f0fafa;
	--fkip-primary-100: #dcf1f1;
	--fkip-primary-200: #b4e0e1;
	--fkip-primary-300: #7cdadb;
	--fkip-primary-400: #55bcbe;
	--fkip-primary-500: #2ea8aa;
	--fkip-primary-600: #269193;
	--fkip-primary-700: #217a7c;
	--fkip-primary-800: #185759;
	--fkip-primary-900: #0f3b3c;

	/* Accent — a muted gold reads more institutional than the legacy lime,
	   which stays available through Bootstrap's .bg-warning for editor content. */
	--fkip-accent:      #f0b429;
	--fkip-accent-dark: #b07d10;
	--fkip-accent-soft: #fdf3dc;

	/* Neutrals, very slightly teal-tinted so they sit with the brand */
	--fkip-ink:      #10262b;
	--fkip-ink-2:    #33474d;
	--fkip-muted:    #6b8085;
	--fkip-line:     #e3e9ea;
	--fkip-line-2:   #eef2f3;
	--fkip-surface:  #ffffff;
	--fkip-bg:       #f5f8f9;
	--fkip-bg-2:     #eef4f4;

	/* Type */
	--fkip-font: "FKIP Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

	/* Radius */
	--fkip-r-sm: 6px;
	--fkip-r:    10px;
	--fkip-r-lg: 16px;
	--fkip-r-pill: 999px;

	/* Elevation — soft and layered, never heavy */
	--fkip-shadow-xs: 0 1px 2px rgba(16, 38, 43, .06);
	--fkip-shadow-sm: 0 1px 3px rgba(16, 38, 43, .07), 0 1px 2px rgba(16, 38, 43, .04);
	--fkip-shadow:    0 4px 12px rgba(16, 38, 43, .07), 0 1px 3px rgba(16, 38, 43, .05);
	--fkip-shadow-lg: 0 12px 32px rgba(16, 38, 43, .10), 0 4px 8px rgba(16, 38, 43, .05);

	/* Rhythm */
	--fkip-section-y: 4.5rem;

	/* Hero slide height — one value drives the slides, the scrim and the overlay
	   so they can never disagree. */
	--fkip-hero-h: clamp(460px, 70vh, 780px);

	/* Page header band. Shorter than the hero: it carries a title, not a
	   campaign, but tall enough for the cover image to read. */
	--fkip-pagehead-h: clamp(400px, 54vh, 600px);

	--fkip-ease: cubic-bezier(.4, 0, .2, 1);
}

/* ========================================================================== *
 * 2. Webfont
 * The theme ships Avenir Next LT Pro as one family per weight, which makes a
 * real type scale impossible. Re-declare them as a single family with proper
 * weight mapping so font-weight works as expected.
 * ========================================================================== */

@font-face {
	font-family: "FKIP Sans";
	src: url("../fonts/AvenirNextLTPro-Regular.woff") format("woff");
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "FKIP Sans";
	src: url("../fonts/AvenirNextLTPro-It.woff") format("woff");
	font-weight: 400;
	font-style: italic;
	font-display: swap;
}

@font-face {
	font-family: "FKIP Sans";
	src: url("../fonts/AvenirNextLTPro-Demi.woff") format("woff");
	font-weight: 600;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "FKIP Sans";
	src: url("../fonts/AvenirNextLTPro-DemiIt.woff") format("woff");
	font-weight: 600;
	font-style: italic;
	font-display: swap;
}

@font-face {
	font-family: "FKIP Sans";
	src: url("../fonts/AvenirNextLTPro-Bold.woff") format("woff");
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "FKIP Sans";
	src: url("../fonts/AvenirNextLTPro-Heavy.woff") format("woff");
	font-weight: 800;
	font-style: normal;
	font-display: swap;
}

/* ========================================================================== *
 * 3. Base & typography
 * ========================================================================== */

html {
	scroll-behavior: smooth;
}

body {
	font-family: var(--fkip-font);
	font-size: 1rem;
	line-height: 1.65;
	color: var(--fkip-ink-2);
	background-color: var(--fkip-bg);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.site {
	background-color: var(--fkip-bg);
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
	font-family: var(--fkip-font);
	color: var(--fkip-ink);
	font-weight: 700;
	line-height: 1.25;
	letter-spacing: -.015em;
}

h1, .h1 { font-size: clamp(1.9rem, 1.4rem + 1.8vw, 2.75rem); }
h2, .h2 { font-size: clamp(1.55rem, 1.25rem + 1.1vw, 2.1rem); }
h3, .h3 { font-size: clamp(1.3rem, 1.15rem + .6vw, 1.6rem); }
h4, .h4 { font-size: 1.2rem; }
h5, .h5 { font-size: 1.05rem; }
h6, .h6 { font-size: .95rem; }

a {
	color: var(--fkip-primary-700);
	text-decoration: none;
	transition: color .18s var(--fkip-ease);
}

a:hover,
a:focus {
	color: var(--fkip-primary-900);
	text-decoration: none;
}

:focus-visible {
	outline: 3px solid var(--fkip-primary-400);
	outline-offset: 2px;
}

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

hr {
	border-top-color: var(--fkip-line);
}

::selection {
	background: var(--fkip-primary-200);
	color: var(--fkip-primary-900);
}

/* Skip link — visible once focused */
.skip-link:focus {
	position: fixed !important;
	top: 12px;
	left: 12px;
	z-index: 2000;
	width: auto !important;
	height: auto !important;
	clip: auto !important;
	padding: .65rem 1.1rem;
	background: var(--fkip-primary-700);
	color: #fff;
	border-radius: var(--fkip-r-sm);
	box-shadow: var(--fkip-shadow-lg);
}

/* ========================================================================== *
 * 4. Bootstrap overrides
 * The compiled bundle sets border-radius to 0 everywhere; soften it back.
 * ========================================================================== */

.btn {
	font-weight: 600;
	letter-spacing: .01em;
	border-radius: var(--fkip-r-sm);
	padding: .6rem 1.25rem;
	transition: transform .16s var(--fkip-ease), box-shadow .16s var(--fkip-ease),
		background-color .16s var(--fkip-ease), border-color .16s var(--fkip-ease), color .16s var(--fkip-ease);
}

.btn:active {
	transform: translateY(1px);
}

.btn-lg {
	padding: .85rem 1.75rem;
	font-size: 1.02rem;
}

.btn-sm {
	padding: .4rem .85rem;
	font-size: .85rem;
}

.btn-primary {
	background-color: var(--fkip-primary-500);
	border-color: var(--fkip-primary-500);
	box-shadow: var(--fkip-shadow-xs);
}

.btn-primary:hover,
.btn-primary:focus {
	background-color: var(--fkip-primary-700);
	border-color: var(--fkip-primary-700);
	box-shadow: var(--fkip-shadow);
}

.btn-outline-primary {
	color: var(--fkip-primary-700);
	border-color: var(--fkip-primary-300);
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
	background-color: var(--fkip-primary-600);
	border-color: var(--fkip-primary-600);
	color: #fff;
}

/* Accent button — gold, used for the primary call to action on dark surfaces */
.fkip-btn-accent {
	background-color: var(--fkip-accent);
	border-color: var(--fkip-accent);
	color: #3d2c00;
}

.fkip-btn-accent:hover,
.fkip-btn-accent:focus {
	background-color: #ffc857;
	border-color: #ffc857;
	color: #3d2c00;
	box-shadow: 0 6px 18px rgba(240, 180, 41, .35);
}

/* Ghost button for use over imagery */
.fkip-btn-ghost {
	color: #fff;
	border: 1px solid rgba(255, 255, 255, .55);
	background: rgba(255, 255, 255, .08);
	backdrop-filter: blur(4px);
}

.fkip-btn-ghost:hover,
.fkip-btn-ghost:focus {
	background: #fff;
	border-color: #fff;
	color: var(--fkip-primary-800);
}

.form-control {
	border-radius: var(--fkip-r-sm);
	border-color: var(--fkip-line);
	color: var(--fkip-ink);
	padding: .6rem .9rem;
	height: auto;
	transition: border-color .16s var(--fkip-ease), box-shadow .16s var(--fkip-ease);
}

.form-control:focus {
	border-color: var(--fkip-primary-400);
	box-shadow: 0 0 0 .2rem rgba(46, 168, 170, .18);
}

.form-control::placeholder {
	color: var(--fkip-muted);
}

/* Wider container than the compiled bundle's 530/725/970/1185, which left a lot
   of unused space on modern screens. An extra step past Bootstrap 4's last
   breakpoint keeps very wide monitors from stretching the measure too far. */
@media (min-width: 576px) {
	.container {
		max-width: 552px;
	}
}

@media (min-width: 768px) {
	.container {
		max-width: 744px;
	}
}

@media (min-width: 992px) {
	.container {
		max-width: 968px;
	}
}

@media (min-width: 1200px) {
	.container {
		max-width: 1180px;
	}
}

@media (min-width: 1400px) {
	.container {
		max-width: 1340px;
	}
}

.card {
	border-radius: var(--fkip-r);
	border-color: var(--fkip-line);
}

.badge {
	border-radius: var(--fkip-r-pill);
	font-weight: 600;
}

.table {
	color: var(--fkip-ink-2);
}

.table thead th {
	background: var(--fkip-primary-50);
	color: var(--fkip-primary-900);
	border-bottom: 2px solid var(--fkip-primary-200);
	font-weight: 700;
}

/* ========================================================================== *
 * 5. Topbar
 * ========================================================================== */

.fkip-topbar {
	background: var(--fkip-primary-900);
	color: rgba(255, 255, 255, .82);
	font-size: .82rem;
	width: 100%;
}

.fkip-topbar__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	/* Without wrapping, the icon row overflows a narrow screen and drags the
	   whole page into horizontal scrolling. */
	flex-wrap: wrap;
	gap: 1rem;
	min-height: 38px;
	transition: min-height .2s var(--fkip-ease), opacity .2s var(--fkip-ease);
}

@media (max-width: 767.98px) {
	.fkip-topbar {
		font-size: .78rem;
	}

	.fkip-topbar__inner {
		justify-content: center;
		gap: .1rem .35rem;
		min-height: 34px;
	}

	.fkip-topbar__item {
		padding: .3rem .45rem;
	}

	.fkip-topbar__item--icon {
		width: 28px;
		height: 28px;
	}
}

/* The whole header is sticky; once scrolled, collapse the utility bar so only
   the navigation keeps taking up room. */
#wrapper-navbar.is-stuck .fkip-topbar {
	overflow: hidden;
}

#wrapper-navbar.is-stuck .fkip-topbar__inner {
	min-height: 0;
	height: 0;
	opacity: 0;
}

.fkip-topbar__group {
	display: flex;
	align-items: center;
	gap: .25rem;
	flex-wrap: wrap;
}

.fkip-topbar__item {
	display: inline-flex;
	align-items: center;
	gap: .4rem;
	color: rgba(255, 255, 255, .82);
	padding: .35rem .6rem;
	border-radius: var(--fkip-r-sm);
	line-height: 1.2;
	transition: background-color .16s var(--fkip-ease), color .16s var(--fkip-ease);
}

.fkip-topbar__item:hover,
.fkip-topbar__item:focus {
	background: rgba(255, 255, 255, .12);
	color: #fff;
}

.fkip-topbar__item--icon {
	width: 30px;
	height: 30px;
	padding: 0;
	justify-content: center;
}

.fkip-topbar__divider {
	width: 1px;
	height: 18px;
	background: rgba(255, 255, 255, .2);
	margin: 0 .35rem;
}

/* ========================================================================== *
 * 6. Navbar
 * ========================================================================== */

#wrapper-navbar {
	background: transparent;
	box-shadow: none;
}

/* The compiled bundle still carries the old dark-navbar rules from
   sass/theme/_desktop.scss — an !important light link colour, a 23px top pad on
   the nav list and a fixed 255px logo width. They are neutralised here rather
   than deleted from the bundle, which cannot be rebuilt on this server. */
.fkip-navbar {
	background: var(--fkip-surface);
	padding: 0;
	border: 0;
	position: relative;
	box-shadow: var(--fkip-shadow-sm);
	transition: box-shadow .2s var(--fkip-ease);
}

/* Below 725px the old stylesheet repainted the whole bar for a dark teal
   design, using "#wrapper-navbar ..." selectors whose id outranks a plain
   class. Each one is matched here so mobile looks identical to desktop.
   The dropdown-item colour matters most: it was white, which turned invisible
   the moment the bar became white. */
#wrapper-navbar .navbar.fkip-navbar,
#wrapper-navbar.simple-navbar-mobile .navbar.fkip-navbar {
	background: var(--fkip-surface);
}

#wrapper-navbar .fkip-navbar .navbar-nav {
	border-top: 0;
}

#wrapper-navbar .fkip-navbar .navbar-nav .nav-link {
	border-bottom: 0;
}

#wrapper-navbar .fkip-navbar .dropdown-menu {
	background: var(--fkip-surface);
}

#wrapper-navbar .fkip-navbar .dropdown-menu .dropdown-item {
	color: var(--fkip-ink-2);
}

#wrapper-navbar .fkip-navbar .dropdown-menu .dropdown-item:hover,
#wrapper-navbar .fkip-navbar .dropdown-menu .dropdown-item:focus {
	color: var(--fkip-primary-800);
}

.fkip-navbar .navbar-nav {
	padding-top: 0;
}

.fkip-navbar .custom-logo-link img,
.fkip-navbar .fkip-navbar__brand img {
	width: auto;
}

.fkip-navbar__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	/* Bootstrap's collapsed menu relies on flex-basis:100% to wrap onto its own
	   line. Without wrapping here the mobile menu would never drop below the bar. */
	flex-wrap: wrap;
	gap: 1rem;
	width: 100%;
	min-height: 76px;
	transition: min-height .2s var(--fkip-ease);
}

/* Above the collapse breakpoint everything must stay on one row: with wrapping
   left on, a long menu drops onto a second line and the bar doubles in height. */
@media (min-width: 768px) {
	.fkip-navbar__inner {
		flex-wrap: nowrap;
	}

	.fkip-navbar .navbar-collapse {
		min-width: 0;
	}

	.fkip-navbar__brand {
		min-width: 0;
	}
}

/* Compact the bar once the page is scrolled */
#wrapper-navbar.is-stuck .fkip-navbar {
	box-shadow: var(--fkip-shadow);
}

#wrapper-navbar.is-stuck .fkip-navbar__inner {
	min-height: 62px;
}

#wrapper-navbar.is-stuck .fkip-navbar__brand img,
#wrapper-navbar.is-stuck .custom-logo-link img {
	max-height: 42px;
}

.fkip-navbar__brand {
	display: flex;
	align-items: center;
	gap: .75rem;
	/* Shrinkable on purpose: with the site name alongside the logo, a rigid
	   brand would shove the toggler past the edge on a narrow screen. */
	min-width: 0;
	flex: 0 1 auto;
	color: var(--fkip-ink);
	font-weight: 700;
}

.fkip-navbar__brand img,
.custom-logo-link img {
	max-height: 54px;
	/* A wide lockup would otherwise reserve its full scaled width and push the
	   site name far to the right — the uploaded logo was 750x131 with only the
	   left 130px inked, which opened a ~250px gap. */
	max-width: 220px;
	width: auto;
	object-fit: contain;
	object-position: left center;
	transition: max-height .2s var(--fkip-ease);
}

.fkip-navbar__brand .navbar-brand {
	margin: 0;
	padding: 0;
	display: inline-flex;
	align-items: center;
}

.fkip-navbar__brand-text {
	display: block;
	line-height: 1.15;
	/* Lets the title shrink and wrap instead of pushing the toggler off-screen. */
	min-width: 0;
}

.fkip-navbar__brand-text:hover .fkip-navbar__brand-title {
	color: var(--fkip-primary-700);
}

.fkip-navbar__brand-title {
	font-size: .95rem;
	font-weight: 800;
	color: var(--fkip-ink);
	letter-spacing: -.01em;
	display: block;
}

.fkip-navbar__brand-sub {
	font-size: .72rem;
	font-weight: 600;
	color: var(--fkip-muted);
	text-transform: uppercase;
	letter-spacing: .06em;
	display: block;
}

/* Below the widest breakpoint the bar has to hold the brand, the search button
   and the toggler at once, so the name is set smaller and capped at two lines. */
@media (max-width: 991.98px) {
	.fkip-navbar__brand {
		gap: .55rem;
	}

	.fkip-navbar__brand img,
	.custom-logo-link img {
		max-height: 42px;
	}

	.fkip-navbar__brand-title {
		font-size: .84rem;
		letter-spacing: 0;
		display: -webkit-box;
		-webkit-line-clamp: 2;
		-webkit-box-orient: vertical;
		overflow: hidden;
	}

	.fkip-navbar__brand-sub {
		display: -webkit-box;
		-webkit-line-clamp: 2;
		-webkit-box-orient: vertical;
		overflow: hidden;
		/* Uppercase plus wide tracking is expensive in a narrow column, so the
		   spacing is eased off rather than the text being cut. */
		font-size: .63rem;
		letter-spacing: .02em;
	}
}

/* Menu items — reset the legacy dark-navbar styling */
.fkip-navbar .navbar-nav {
	align-items: stretch;
}

/* The legacy colour rule carries !important, so this one has to as well. */
.fkip-navbar .navbar-nav > li > .nav-link,
.fkip-navbar .navbar-nav > .menu-item > a {
	display: flex;
	align-items: center;
	color: var(--fkip-ink-2) !important;
	font-weight: 600;
	font-size: .92rem;
	text-transform: none;
	letter-spacing: 0;
	line-height: 1.3;
	white-space: nowrap;
	padding: .55rem .7rem;
	border-radius: var(--fkip-r-sm);
	position: relative;
	transition: color .16s var(--fkip-ease), background-color .16s var(--fkip-ease);
}

.fkip-navbar .navbar-nav > li > .nav-link:hover,
.fkip-navbar .navbar-nav > li > .nav-link:focus {
	color: var(--fkip-primary-700) !important;
	background: var(--fkip-primary-50);
}

/* A long menu should shrink before it wraps into a second row. */
@media (min-width: 768px) and (max-width: 1199.98px) {
	.fkip-navbar .navbar-nav > li > .nav-link {
		font-size: .82rem;
		padding: .5rem .45rem;
	}
}

.fkip-navbar .navbar-nav > .current-menu-item > .nav-link,
.fkip-navbar .navbar-nav > .current-menu-ancestor > .nav-link,
.fkip-navbar .navbar-nav > .current_page_item > .nav-link,
.fkip-navbar .navbar-nav > .current_page_ancestor > .nav-link {
	color: var(--fkip-primary-700);
}

/* Active underline sits inside the bar rather than under it */
@media (min-width: 768px) {
	.fkip-navbar .navbar-nav > .current-menu-item > .nav-link::after,
	.fkip-navbar .navbar-nav > .current-menu-ancestor > .nav-link::after,
	.fkip-navbar .navbar-nav > .current_page_item > .nav-link::after,
	.fkip-navbar .navbar-nav > .current_page_ancestor > .nav-link::after {
		content: "";
		position: absolute;
		left: .85rem;
		right: .85rem;
		bottom: .1rem;
		height: 3px;
		border-radius: 3px;
		background: var(--fkip-primary-500);
	}
}

.fkip-navbar .dropdown-toggle::after {
	margin-left: .4rem;
	border-top-color: currentColor;
	opacity: .6;
}

.fkip-navbar .dropdown-menu {
	border: 1px solid var(--fkip-line);
	border-radius: var(--fkip-r);
	box-shadow: var(--fkip-shadow-lg);
	padding: .5rem;
	margin-top: .35rem;
	min-width: 260px;
	background: var(--fkip-surface);
}

.fkip-navbar .dropdown-item {
	color: var(--fkip-ink-2);
	font-size: .9rem;
	font-weight: 500;
	padding: .55rem .75rem;
	border-radius: var(--fkip-r-sm);
	white-space: normal;
	line-height: 1.4;
}

.fkip-navbar .dropdown-item:hover,
.fkip-navbar .dropdown-item:focus {
	background: var(--fkip-primary-50);
	color: var(--fkip-primary-800);
}

.fkip-navbar .dropdown-item.active,
.fkip-navbar .dropdown-item:active {
	background: var(--fkip-primary-600);
	color: #fff;
}

/* --- Nested dropdowns -----------------------------------------------------
   Bootstrap 4 has no multi-level dropdown. Second level and deeper are marked
   .dropdown-submenu by the navwalker and open as a flyout on hover here; the
   script handles taps on touch screens. */

.fkip-navbar .dropdown-submenu {
	position: relative;
}

/* Caret on a submenu parent points right, not down. */
.fkip-navbar .dropdown-submenu > .dropdown-toggle {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: .75rem;
}

.fkip-navbar .dropdown-submenu > .dropdown-toggle::after {
	border-top: .3em solid transparent;
	border-bottom: .3em solid transparent;
	border-left: .3em solid currentColor;
	border-right: 0;
	margin-left: 0;
	flex-shrink: 0;
}

@media (min-width: 768px) {
	/* Open on hover for quicker browsing, at every level. */
	.fkip-navbar .navbar-nav .dropdown:hover > .dropdown-menu,
	.fkip-navbar .dropdown-submenu:hover > .dropdown-menu {
		display: block;
	}

	.fkip-navbar .dropdown-submenu > .dropdown-menu {
		top: -.5rem;
		left: 100%;
		right: auto;
		margin: 0 0 0 .15rem;
	}

	/* Near the right edge, flip the flyout to the other side so it stays on screen. */
	.fkip-navbar .dropdown-submenu.is-flipped > .dropdown-menu {
		left: auto;
		right: 100%;
		margin: 0 .15rem 0 0;
	}
}

/* Mobile: nested levels indent instead of flying out. */
@media (max-width: 767.98px) {
	.fkip-navbar .dropdown-submenu > .dropdown-toggle::after {
		border-left: .3em solid transparent;
		border-right: .3em solid transparent;
		border-top: .3em solid currentColor;
		border-bottom: 0;
		transition: transform .18s var(--fkip-ease);
	}

	.fkip-navbar .dropdown-submenu.is-open > .dropdown-toggle::after {
		transform: rotate(180deg);
	}

	.fkip-navbar .dropdown-submenu > .dropdown-menu {
		position: static;
		float: none;
		width: 100%;
	}
}

.fkip-navbar .navbar-toggler {
	border: 1px solid var(--fkip-line);
	border-radius: var(--fkip-r-sm);
	padding: .45rem .7rem;
	color: var(--fkip-ink);
}

.fkip-navbar .navbar-toggler-icon {
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='%2310262b' stroke-width='2.2' stroke-linecap='round' d='M4 8h22M4 15h22M4 22h22'/%3E%3C/svg%3E");
}

/* Mobile menu panel */
@media (max-width: 767.98px) {
	/* Reclaim vertical space: the bar is sticky, so every pixel here is taken
	   from the content for the whole session. */
	.fkip-navbar__inner {
		min-height: 62px;
	}

	/* Phones: one step down from tablet, still comfortably readable. The bar is
	   allowed to grow taller rather than shrinking the name any further. */
	.fkip-navbar__brand-title {
		font-size: .78rem;
		line-height: 1.25;
	}

	.fkip-navbar__brand-sub {
		font-size: .6rem;
		line-height: 1.25;
	}

	.fkip-navbar__brand img,
	.custom-logo-link img {
		max-height: 40px;
	}

	.fkip-navbar .navbar-collapse {
		border-top: 1px solid var(--fkip-line);
		margin-top: .25rem;
		padding: .25rem 0 .75rem;
		max-height: 72vh;
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
	}

	/* Tap targets sized for fingers, with the caret pushed to the far edge so
	   it reads as "opens a submenu" rather than decoration. */
	.fkip-navbar .navbar-nav > li > .nav-link {
		justify-content: space-between;
		padding: .75rem .5rem;
		min-height: 46px;
		border-radius: 0;
	}

	.fkip-navbar .navbar-nav > li + li {
		border-top: 1px solid var(--fkip-line-2);
	}

	/* Prefixed with the id so it outranks the legacy "#wrapper-navbar
	   .dropdown-menu { margin: 0; padding: 0 }" rule. */
	#wrapper-navbar .fkip-navbar .dropdown-menu {
		box-shadow: none;
		border: 0;
		border-left: 2px solid var(--fkip-primary-100);
		border-radius: 0;
		margin: .15rem 0 .5rem .6rem;
		padding: 0 0 0 .4rem;
		/* The desktop rule pins these at 260px. Left in place, a submenu nested
		   two levels deep overflows a 360px screen and the whole page starts
		   scrolling sideways. */
		min-width: 0;
		width: auto;
	}

	.fkip-navbar .dropdown-item {
		display: flex;
		align-items: center;
		min-height: 42px;
		padding: .55rem .5rem;
	}

	.fkip-navbar .navbar-toggler {
		padding: .4rem .6rem;
	}
}

/* ========================================================================== *
 * 7. Hero
 * ========================================================================== */

#wrapper-hero {
	position: relative;
	background: var(--fkip-primary-900);
}

.fkip-hero {
	position: relative;
}

/* Slides carry their photo as a background rather than an <img>, so every slide
   is exactly the same height no matter what was uploaded. */
#wrapper-hero .carousel-item,
.fkip-hero__slide {
	position: relative;
	height: var(--fkip-hero-h);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	background-color: var(--fkip-primary-800);
}

/* A whole slide can be a link when the image widget has one set. */
.fkip-hero__slide-link {
	position: absolute;
	inset: 0;
	z-index: 3;
}

/* Any image still inside a slide (a text/block widget, say) is contained rather
   than allowed to set the height. */
#wrapper-hero .carousel-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

/* Legibility scrim over slide imagery */
#wrapper-hero .carousel-item::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(15, 59, 60, .15) 0%, rgba(15, 59, 60, .30) 45%, rgba(15, 59, 60, .78) 100%);
	pointer-events: none;
}

#wrapper-hero .carousel-caption {
	right: 8%;
	left: 8%;
	bottom: 12%;
	text-align: left;
	z-index: 2;
	text-shadow: 0 2px 12px rgba(0, 0, 0, .45);
}

#wrapper-hero .carousel-control-prev,
#wrapper-hero .carousel-control-next {
	width: 8%;
	opacity: .55;
	z-index: 3;
}

#wrapper-hero .carousel-control-prev:hover,
#wrapper-hero .carousel-control-next:hover {
	opacity: 1;
}

#wrapper-hero .carousel-indicators li {
	width: 28px;
	height: 4px;
	border-radius: 2px;
	background: rgba(255, 255, 255, .5);
}

#wrapper-hero .carousel-indicators .active {
	background: var(--fkip-accent);
}

/* Editorial overlay laid on top of the slider */
.fkip-hero__overlay {
	position: absolute;
	inset: 0;
	z-index: 4;
	display: flex;
	align-items: center;
	pointer-events: none;
}

.fkip-hero__panel {
	max-width: 660px;
	color: #fff;
	pointer-events: auto;
}

.fkip-hero__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: .5rem;
	background: rgba(255, 255, 255, .14);
	border: 1px solid rgba(255, 255, 255, .3);
	backdrop-filter: blur(6px);
	color: #fff;
	font-size: .78rem;
	font-weight: 600;
	letter-spacing: .08em;
	text-transform: uppercase;
	padding: .4rem .9rem;
	border-radius: var(--fkip-r-pill);
	margin-bottom: 1.1rem;
}

.fkip-hero__title {
	color: #fff;
	font-size: clamp(1.85rem, 1.2rem + 2.4vw, 3.1rem);
	font-weight: 800;
	line-height: 1.12;
	letter-spacing: -.02em;
	margin-bottom: .9rem;
	text-shadow: 0 2px 18px rgba(0, 0, 0, .35);
}

.fkip-hero__lead {
	color: rgba(255, 255, 255, .92);
	font-size: clamp(.98rem, .9rem + .3vw, 1.15rem);
	max-width: 46ch;
	margin-bottom: 1.6rem;
	text-shadow: 0 1px 10px rgba(0, 0, 0, .35);
}

.fkip-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: .75rem;
}

/* Without slider widgets the overlay has nothing to sit on top of, so the hero
   becomes a standalone banner instead of collapsing to zero height. */
.fkip-hero--no-slider {
	background: linear-gradient(120deg, var(--fkip-primary-900), var(--fkip-primary-700));
}

.fkip-hero--no-slider .fkip-hero__overlay {
	position: static;
	padding: clamp(3rem, 8vw, 6rem) 0;
}

/* On small screens the overlay stacks below the image instead of covering it */
@media (max-width: 767.98px) {
	:root {
		--fkip-hero-h: 320px;
		--fkip-pagehead-h: 300px;
	}

	.fkip-hero__overlay {
		position: static;
		background: var(--fkip-primary-900);
		padding: 2rem 0 2.25rem;
	}

	.fkip-hero__title {
		text-shadow: none;
	}
}

/* ========================================================================== *
 * 8. Section furniture
 * ========================================================================== */

.fkip-section {
	padding: var(--fkip-section-y) 0;
}

.fkip-section--tight {
	padding: 3rem 0;
}

.fkip-section--surface {
	background: var(--fkip-surface);
}

.fkip-section--muted {
	background: var(--fkip-bg-2);
}

.fkip-section--ink {
	background: var(--fkip-primary-900);
	color: rgba(255, 255, 255, .85);
}

.fkip-section-head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 1rem;
	margin-bottom: 2rem;
}

.fkip-section-head__text {
	min-width: 0;
}

.fkip-eyebrow {
	display: block;
	font-size: .78rem;
	font-weight: 700;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: var(--fkip-primary-600);
	margin-bottom: .4rem;
}

.fkip-section-title {
	font-size: clamp(1.5rem, 1.25rem + 1vw, 2rem);
	font-weight: 800;
	color: var(--fkip-ink);
	margin: 0;
	letter-spacing: -.02em;
}

.fkip-section-sub {
	color: var(--fkip-muted);
	margin: .5rem 0 0;
	max-width: 60ch;
}

.fkip-section--ink .fkip-section-title,
.fkip-section--ink .h1,
.fkip-section--ink h2 {
	color: #fff;
}

.fkip-section--ink .fkip-eyebrow {
	color: var(--fkip-accent);
}

.fkip-section--ink .fkip-section-sub {
	color: rgba(255, 255, 255, .75);
}

.fkip-link-more {
	display: inline-flex;
	align-items: center;
	gap: .4rem;
	font-weight: 600;
	font-size: .9rem;
	color: var(--fkip-primary-700);
	white-space: nowrap;
	flex-shrink: 0;
}

.fkip-link-more i {
	transition: transform .18s var(--fkip-ease);
}

.fkip-link-more:hover i {
	transform: translateX(3px);
}

@media (max-width: 575.98px) {
	.fkip-section-head {
		flex-direction: column;
		align-items: flex-start;
	}
}

/* ========================================================================== *
 * 9. Stats band
 * ========================================================================== */

.fkip-stats {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
	gap: 1px;
	background: var(--fkip-line);
	border: 1px solid var(--fkip-line);
	border-radius: var(--fkip-r-lg);
	overflow: hidden;
	box-shadow: var(--fkip-shadow-sm);
}

.fkip-stat {
	background: var(--fkip-surface);
	padding: 1.75rem 1.25rem;
	text-align: center;
}

.fkip-stat__icon {
	color: var(--fkip-primary-500);
	font-size: 1.4rem;
	margin-bottom: .5rem;
	display: block;
}

.fkip-stat__value {
	font-size: clamp(1.75rem, 1.4rem + 1.2vw, 2.4rem);
	font-weight: 800;
	color: var(--fkip-ink);
	line-height: 1.1;
	letter-spacing: -.02em;
}

.fkip-stat__label {
	font-size: .82rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: .07em;
	color: var(--fkip-muted);
	margin-top: .35rem;
}

/* ========================================================================== *
 * 10. Cards & feeds
 * ========================================================================== */

.fkip-card {
	display: flex;
	flex-direction: column;
	height: 100%;
	background: var(--fkip-surface);
	border: 1px solid var(--fkip-line);
	border-radius: var(--fkip-r);
	overflow: hidden;
	box-shadow: var(--fkip-shadow-xs);
	transition: transform .2s var(--fkip-ease), box-shadow .2s var(--fkip-ease), border-color .2s var(--fkip-ease);
}

.fkip-card:hover {
	transform: translateY(-3px);
	box-shadow: var(--fkip-shadow);
	border-color: var(--fkip-primary-200);
}

.fkip-card__media {
	position: relative;
	display: block;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background: var(--fkip-bg-2);
}

/* Fallback for browsers without aspect-ratio support */
@supports not (aspect-ratio: 16 / 10) {
	.fkip-card__media {
		height: 0;
		padding-bottom: 62.5%;
	}
}

.fkip-card__media img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .45s var(--fkip-ease);
}

.fkip-card:hover .fkip-card__media img {
	transform: scale(1.05);
}

.fkip-card__body {
	display: flex;
	flex-direction: column;
	flex: 1 1 auto;
	padding: 1.15rem 1.25rem 1.35rem;
}

.fkip-card__title {
	font-size: 1.02rem;
	font-weight: 700;
	line-height: 1.4;
	margin: 0 0 .6rem;
	letter-spacing: -.01em;
}

.fkip-card__title a {
	color: var(--fkip-ink);
}

.fkip-card__title a:hover {
	color: var(--fkip-primary-700);
}

.fkip-card__excerpt {
	color: var(--fkip-muted);
	font-size: .9rem;
	margin: 0 0 1rem;
}

.fkip-card__meta {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: .35rem .9rem;
	margin-top: auto;
	padding-top: .35rem;
	font-size: .8rem;
	color: var(--fkip-muted);
}

.fkip-card__meta i {
	margin-right: .3rem;
	opacity: .8;
}

/* Category chip pinned on the image */
.fkip-chip {
	display: inline-flex;
	align-items: center;
	gap: .35rem;
	font-size: .72rem;
	font-weight: 700;
	letter-spacing: .05em;
	text-transform: uppercase;
	padding: .3rem .7rem;
	border-radius: var(--fkip-r-pill);
	background: var(--fkip-primary-50);
	color: var(--fkip-primary-700);
	line-height: 1.2;
}

.fkip-chip--overlay {
	position: absolute;
	top: .75rem;
	left: .75rem;
	z-index: 2;
	background: rgba(255, 255, 255, .94);
	color: var(--fkip-primary-800);
	box-shadow: var(--fkip-shadow-xs);
	backdrop-filter: blur(4px);
}

.fkip-chip--accent {
	background: var(--fkip-accent-soft);
	color: var(--fkip-accent-dark);
}

/* Featured card — the lead story, image and text side by side on desktop */
.fkip-card--feature {
	flex-direction: row;
}

.fkip-card--feature .fkip-card__media {
	flex: 0 0 46%;
	aspect-ratio: auto;
	min-height: 260px;
}

@supports not (aspect-ratio: 16 / 10) {
	.fkip-card--feature .fkip-card__media {
		height: auto;
		padding-bottom: 0;
	}
}

.fkip-card--feature .fkip-card__body {
	padding: 1.75rem;
	justify-content: center;
}

.fkip-card--feature .fkip-card__title {
	font-size: clamp(1.2rem, 1rem + .8vw, 1.6rem);
	line-height: 1.28;
}

@media (max-width: 767.98px) {
	.fkip-card--feature {
		flex-direction: column;
	}

	.fkip-card--feature .fkip-card__media {
		flex: none;
		aspect-ratio: 16 / 10;
		min-height: 0;
	}

	.fkip-card--feature .fkip-card__body {
		padding: 1.15rem 1.25rem 1.35rem;
	}
}

/* Compact horizontal card used in lists and sidebars */
.fkip-card-mini {
	display: flex;
	gap: .9rem;
	padding: .85rem 0;
	border-bottom: 1px solid var(--fkip-line-2);
}

.fkip-card-mini:last-child {
	border-bottom: 0;
	padding-bottom: 0;
}

.fkip-card-mini__media {
	flex: 0 0 84px;
	height: 64px;
	border-radius: var(--fkip-r-sm);
	overflow: hidden;
	background: var(--fkip-bg-2);
}

.fkip-card-mini__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.fkip-card-mini__title {
	font-size: .92rem;
	font-weight: 600;
	line-height: 1.4;
	margin: 0 0 .25rem;
}

.fkip-card-mini__title a {
	color: var(--fkip-ink);
}

.fkip-card-mini__title a:hover {
	color: var(--fkip-primary-700);
}

.fkip-card-mini__meta {
	font-size: .76rem;
	color: var(--fkip-muted);
}

/* ========================================================================== *
 * 11. Agenda & announcement lists
 * ========================================================================== */

.fkip-panel {
	background: var(--fkip-surface);
	border: 1px solid var(--fkip-line);
	border-radius: var(--fkip-r);
	box-shadow: var(--fkip-shadow-xs);
	overflow: hidden;
}

.fkip-panel__head {
	display: flex;
	align-items: center;
	gap: .6rem;
	padding: 1rem 1.25rem;
	border-bottom: 1px solid var(--fkip-line);
	background: var(--fkip-primary-50);
}

.fkip-panel__title {
	font-size: .95rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: .07em;
	color: var(--fkip-primary-800);
	margin: 0;
}

.fkip-panel__body {
	padding: .5rem 1.25rem 1rem;
}

.fkip-agenda-item {
	display: flex;
	gap: 1rem;
	padding: .9rem 0;
	border-bottom: 1px solid var(--fkip-line-2);
}

.fkip-agenda-item:last-child {
	border-bottom: 0;
}

.fkip-agenda-date {
	flex: 0 0 58px;
	text-align: center;
	background: var(--fkip-primary-500);
	color: #fff;
	border-radius: var(--fkip-r-sm);
	padding: .5rem .25rem;
	align-self: flex-start;
	line-height: 1.1;
}

.fkip-agenda-date__day {
	font-size: 1.35rem;
	font-weight: 800;
	display: block;
}

.fkip-agenda-date__month {
	font-size: .68rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: .06em;
	display: block;
	margin-top: .15rem;
	opacity: .9;
}

.fkip-agenda-body {
	min-width: 0;
}

.fkip-agenda-title {
	font-size: .92rem;
	font-weight: 600;
	line-height: 1.4;
	margin: 0 0 .3rem;
}

.fkip-agenda-title a {
	color: var(--fkip-ink);
}

.fkip-agenda-title a:hover {
	color: var(--fkip-primary-700);
}

.fkip-agenda-meta {
	font-size: .78rem;
	color: var(--fkip-muted);
	display: flex;
	flex-wrap: wrap;
	gap: .15rem .8rem;
}

.fkip-agenda-meta i {
	margin-right: .3rem;
	opacity: .8;
}

/* Announcement rows */
.fkip-notice {
	display: flex;
	align-items: flex-start;
	gap: .8rem;
	padding: .85rem 0;
	border-bottom: 1px solid var(--fkip-line-2);
}

.fkip-notice:last-child {
	border-bottom: 0;
}

.fkip-notice__icon {
	flex: 0 0 34px;
	height: 34px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--fkip-accent-soft);
	color: var(--fkip-accent-dark);
	font-size: .85rem;
}

.fkip-notice__title {
	font-size: .92rem;
	font-weight: 600;
	line-height: 1.45;
	margin: 0 0 .2rem;
}

.fkip-notice__title a {
	color: var(--fkip-ink);
}

.fkip-notice__title a:hover {
	color: var(--fkip-primary-700);
}

.fkip-notice__meta {
	font-size: .76rem;
	color: var(--fkip-muted);
}

/* Empty state shown when a feed has no posts yet */
.fkip-empty {
	text-align: center;
	padding: 2rem 1rem;
	color: var(--fkip-muted);
	font-size: .9rem;
}

.fkip-empty i {
	display: block;
	font-size: 1.8rem;
	opacity: .35;
	margin-bottom: .6rem;
}

/* ========================================================================== *
 * 12. Prodi cards
 * ========================================================================== */

.fkip-prodi {
	display: flex;
	flex-direction: column;
	height: 100%;
	background: var(--fkip-surface);
	border: 1px solid var(--fkip-line);
	border-radius: var(--fkip-r);
	padding: 1.5rem;
	box-shadow: var(--fkip-shadow-xs);
	transition: transform .2s var(--fkip-ease), box-shadow .2s var(--fkip-ease), border-color .2s var(--fkip-ease);
	position: relative;
	overflow: hidden;
}

.fkip-prodi::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, var(--fkip-primary-500), var(--fkip-primary-300));
	opacity: 0;
	transition: opacity .2s var(--fkip-ease);
}

.fkip-prodi:hover {
	transform: translateY(-3px);
	box-shadow: var(--fkip-shadow);
	border-color: var(--fkip-primary-200);
}

.fkip-prodi:hover::before {
	opacity: 1;
}

.fkip-prodi__icon {
	width: 48px;
	height: 48px;
	border-radius: var(--fkip-r-sm);
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--fkip-primary-50);
	color: var(--fkip-primary-600);
	font-size: 1.25rem;
	margin-bottom: 1rem;
}

.fkip-prodi__name {
	font-size: 1.02rem;
	font-weight: 700;
	color: var(--fkip-ink);
	line-height: 1.35;
	margin: 0 0 .35rem;
}

.fkip-prodi__degree {
	font-size: .78rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: .06em;
	color: var(--fkip-primary-600);
	margin-bottom: .75rem;
}

.fkip-prodi__desc {
	font-size: .88rem;
	color: var(--fkip-muted);
	margin: 0 0 1.15rem;
}

.fkip-prodi__link {
	margin-top: auto;
	font-size: .88rem;
	font-weight: 600;
	display: inline-flex;
	align-items: center;
	gap: .4rem;
}

.fkip-prodi__link i {
	transition: transform .18s var(--fkip-ease);
}

.fkip-prodi:hover .fkip-prodi__link i {
	transform: translateX(3px);
}

/* Quick-link tiles used in the services band */
.fkip-tile {
	display: flex;
	align-items: center;
	gap: .85rem;
	padding: 1rem 1.15rem;
	height: 100%;
	background: rgba(255, 255, 255, .07);
	border: 1px solid rgba(255, 255, 255, .16);
	border-radius: var(--fkip-r);
	color: rgba(255, 255, 255, .92);
	transition: background-color .18s var(--fkip-ease), border-color .18s var(--fkip-ease), transform .18s var(--fkip-ease);
}

.fkip-tile:hover,
.fkip-tile:focus {
	background: rgba(255, 255, 255, .14);
	border-color: rgba(255, 255, 255, .35);
	color: #fff;
	transform: translateY(-2px);
}

.fkip-tile__icon {
	flex: 0 0 40px;
	height: 40px;
	border-radius: var(--fkip-r-sm);
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, .12);
	color: var(--fkip-accent);
	font-size: 1.05rem;
}

.fkip-tile__label {
	font-weight: 600;
	font-size: .92rem;
	line-height: 1.3;
}

.fkip-tile__sub {
	font-size: .76rem;
	opacity: .7;
}

/* Call-to-action strip */
.fkip-cta {
	background: linear-gradient(120deg, var(--fkip-primary-700), var(--fkip-primary-500));
	border-radius: var(--fkip-r-lg);
	padding: 2.25rem;
	color: #fff;
	box-shadow: var(--fkip-shadow);
}

.fkip-cta h2,
.fkip-cta .h2 {
	color: #fff;
	margin: 0 0 .35rem;
}

.fkip-cta p {
	color: rgba(255, 255, 255, .88);
	margin: 0;
}

/* ========================================================================== *
 * 13. Page header & breadcrumb
 * ========================================================================== */

.fkip-pagehead {
	position: relative;
	/* The band doubles as the page's cover image, so it needs real height to
	   show it. Padding alone collapsed it to the height of the text. */
	display: flex;
	align-items: center;
	min-height: var(--fkip-pagehead-h);
	background: var(--fkip-primary-900);
	background-size: cover;
	background-position: center;
	color: #fff;
	padding: 3.5rem 0 3rem;
	overflow: hidden;
}

.fkip-pagehead::before {
	content: "";
	position: absolute;
	inset: 0;
	/* Lighter scrim so the cover image reads through. It still deepens towards
	   the left, where the title sits, because white text over an unknown photo
	   needs something behind it. */
	background: linear-gradient(105deg, rgba(15, 59, 60, .74) 0%, rgba(15, 59, 60, .5) 45%, rgba(15, 59, 60, .2) 100%);
}

.fkip-pagehead__inner {
	position: relative;
	z-index: 1;
	/* As a flex child the container would otherwise shrink to its text and lose
	   its centring. */
	width: 100%;
}

/* The scrim is deliberately thin now, so the text carries its own contrast
   rather than relying on the overlay alone. */
.fkip-pagehead__inner {
	text-shadow: 0 2px 12px rgba(4, 24, 25, .55);
}

.fkip-pagehead__title {
	color: #fff;
	font-size: clamp(1.6rem, 1.25rem + 1.6vw, 2.5rem);
	font-weight: 800;
	letter-spacing: -.02em;
	margin: 0;
	max-width: 26ch;
	text-shadow: 0 2px 18px rgba(4, 24, 25, .7);
}

.fkip-pagehead__sub {
	color: var(--fkip-accent);
	font-size: .95rem;
	font-weight: 600;
	margin-top: .6rem;
	max-width: 60ch;
}

.fkip-pagehead__excerpt {
	color: rgba(255, 255, 255, .85);
	margin-top: .75rem;
	max-width: 62ch;
}

.fkip-pagehead__meta {
	display: flex;
	flex-wrap: wrap;
	gap: .4rem 1.25rem;
	margin-top: 1.1rem;
	font-size: .85rem;
	color: rgba(255, 255, 255, .8);
}

.fkip-pagehead__meta i {
	margin-right: .35rem;
	opacity: .85;
}

.fkip-breadcrumb {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: .4rem;
	font-size: .82rem;
	color: rgba(255, 255, 255, .7);
	margin-bottom: 1rem;
	padding: 0;
	list-style: none;
}

.fkip-breadcrumb a {
	color: rgba(255, 255, 255, .85);
}

.fkip-breadcrumb a:hover {
	color: #fff;
	text-decoration: underline;
}

.fkip-breadcrumb__sep {
	opacity: .5;
}

/* ========================================================================== *
 * 14. Article content
 * ========================================================================== */

.fkip-main {
	padding: 3rem 0;
}

.fkip-article {
	background: var(--fkip-surface);
	border: 1px solid var(--fkip-line);
	border-radius: var(--fkip-r);
	padding: 2rem;
	box-shadow: var(--fkip-shadow-xs);
}

@media (max-width: 575.98px) {
	.fkip-article {
		padding: 1.25rem;
		border-radius: var(--fkip-r-sm);
	}
}

.fkip-article .entry-content {
	font-size: 1.02rem;
	line-height: 1.8;
	color: var(--fkip-ink-2);
}

.fkip-article .entry-content > * + * {
	margin-top: 1.15rem;
}

.fkip-article .entry-content h2,
.fkip-article .entry-content h3,
.fkip-article .entry-content h4 {
	margin-top: 2.25rem;
	margin-bottom: .75rem;
	scroll-margin-top: 110px;
}

.fkip-article .entry-content img {
	border-radius: var(--fkip-r-sm);
	box-shadow: var(--fkip-shadow-sm);
	height: auto;
}

.fkip-article .entry-content figure {
	margin: 1.75rem 0;
}

.fkip-article .entry-content figcaption,
.fkip-article .entry-content .wp-caption-text {
	font-size: .83rem;
	color: var(--fkip-muted);
	text-align: center;
	margin-top: .6rem;
}

.fkip-article .entry-content blockquote {
	border-left: 4px solid var(--fkip-primary-400);
	background: var(--fkip-primary-50);
	padding: 1.1rem 1.35rem;
	border-radius: 0 var(--fkip-r-sm) var(--fkip-r-sm) 0;
	color: var(--fkip-primary-900);
	font-size: 1.05rem;
}

.fkip-article .entry-content blockquote p:last-child {
	margin-bottom: 0;
}

.fkip-article .entry-content ul,
.fkip-article .entry-content ol {
	padding-left: 1.4rem;
}

.fkip-article .entry-content li + li {
	margin-top: .4rem;
}

.fkip-article .entry-content a {
	color: var(--fkip-primary-700);
	text-decoration: underline;
	text-decoration-color: var(--fkip-primary-200);
	text-underline-offset: 3px;
}

.fkip-article .entry-content a:hover {
	text-decoration-color: var(--fkip-primary-600);
}

.fkip-article .entry-content table {
	width: 100%;
	margin: 1.5rem 0;
	border-collapse: collapse;
	font-size: .93rem;
}

.fkip-article .entry-content th,
.fkip-article .entry-content td {
	border: 1px solid var(--fkip-line);
	padding: .65rem .8rem;
	vertical-align: top;
}

.fkip-article .entry-content th {
	background: var(--fkip-primary-50);
	color: var(--fkip-primary-900);
	font-weight: 700;
	text-align: left;
}

/* Wide tables must scroll inside the article, never the page */
.fkip-table-scroll {
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}

.fkip-article .entry-content iframe,
.fkip-article .entry-content embed,
.fkip-article .entry-content video {
	max-width: 100%;
	border-radius: var(--fkip-r-sm);
}

/* Entry meta strip under the article title */
.fkip-entry-meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: .5rem 1.25rem;
	padding-bottom: 1.25rem;
	margin-bottom: 1.5rem;
	border-bottom: 1px solid var(--fkip-line);
	font-size: .85rem;
	color: var(--fkip-muted);
}

.fkip-entry-meta i {
	margin-right: .35rem;
	opacity: .8;
}

.fkip-entry-footer {
	margin-top: 2rem;
	padding-top: 1.25rem;
	border-top: 1px solid var(--fkip-line);
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	align-items: center;
	justify-content: space-between;
}

.fkip-tags {
	display: flex;
	flex-wrap: wrap;
	gap: .4rem;
}

.fkip-tags a {
	font-size: .78rem;
	font-weight: 600;
	padding: .3rem .7rem;
	border-radius: var(--fkip-r-pill);
	background: var(--fkip-bg-2);
	color: var(--fkip-ink-2);
}

.fkip-tags a:hover {
	background: var(--fkip-primary-500);
	color: #fff;
}

.fkip-share {
	display: flex;
	gap: .4rem;
	align-items: center;
}

.fkip-share__btn {
	width: 34px;
	height: 34px;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: var(--fkip-bg-2);
	color: var(--fkip-ink-2);
	font-size: .9rem;
	transition: background-color .16s var(--fkip-ease), color .16s var(--fkip-ease), transform .16s var(--fkip-ease);
}

.fkip-share__btn:hover {
	background: var(--fkip-primary-600);
	color: #fff;
	transform: translateY(-2px);
}

/* Prev/next navigation */
.fkip-postnav {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
	margin-top: 1.5rem;
}

@media (max-width: 575.98px) {
	.fkip-postnav {
		grid-template-columns: 1fr;
	}
}

.fkip-postnav__item {
	display: block;
	background: var(--fkip-surface);
	border: 1px solid var(--fkip-line);
	border-radius: var(--fkip-r);
	padding: 1rem 1.15rem;
	transition: border-color .18s var(--fkip-ease), box-shadow .18s var(--fkip-ease);
}

.fkip-postnav__item:hover {
	border-color: var(--fkip-primary-300);
	box-shadow: var(--fkip-shadow-sm);
}

.fkip-postnav__item--next {
	text-align: right;
}

.fkip-postnav__label {
	font-size: .75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .08em;
	color: var(--fkip-primary-600);
	display: block;
	margin-bottom: .3rem;
}

.fkip-postnav__title {
	font-size: .92rem;
	font-weight: 600;
	color: var(--fkip-ink);
	line-height: 1.4;
}

/* ========================================================================== *
 * 15. Sidebar & widgets
 * ========================================================================== */

.fkip-sidebar .widget {
	background: var(--fkip-surface);
	border: 1px solid var(--fkip-line);
	border-radius: var(--fkip-r);
	padding: 1.35rem;
	margin-bottom: 1.5rem;
	box-shadow: var(--fkip-shadow-xs);
}

.fkip-sidebar .widget-title,
.fkip-sidebar .widget h2,
.fkip-sidebar .widget h3 {
	font-size: .88rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: .08em;
	color: var(--fkip-primary-800);
	margin: 0 0 1rem;
	padding-bottom: .7rem;
	border-bottom: 2px solid var(--fkip-primary-100);
}

.fkip-sidebar .widget ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.fkip-sidebar .widget li {
	padding: .5rem 0;
	border-bottom: 1px solid var(--fkip-line-2);
	font-size: .9rem;
}

.fkip-sidebar .widget li:last-child {
	border-bottom: 0;
	padding-bottom: 0;
}

.fkip-sidebar .widget li a {
	color: var(--fkip-ink-2);
	font-weight: 500;
}

.fkip-sidebar .widget li a:hover {
	color: var(--fkip-primary-700);
}

/* The core Recent Posts widget prints its date in a bare span right after the
   link, which would otherwise run into the title. */
.fkip-sidebar .widget .post-date {
	display: block;
	margin-top: .2rem;
	font-size: .76rem;
	color: var(--fkip-muted);
}

.fkip-sidebar .widget .post-date::before {
	content: "\f133";
	font-family: FontAwesome;
	margin-right: .35rem;
	opacity: .7;
}

.fkip-sidebar .widget select,
.fkip-sidebar .widget input[type="text"],
.fkip-sidebar .widget input[type="search"] {
	width: 100%;
	border: 1px solid var(--fkip-line);
	border-radius: var(--fkip-r-sm);
	padding: .55rem .8rem;
	font-size: .9rem;
	color: var(--fkip-ink);
}

/* Sticky sidebar on wide screens */
@media (min-width: 992px) {
	.fkip-sidebar--sticky {
		position: sticky;
		top: 100px;
	}
}

/* Popular posts plugin */
.fkip-sidebar .wpp-list li {
	display: flex;
	gap: .75rem;
	align-items: flex-start;
}

.fkip-sidebar .wpp-list img {
	border-radius: var(--fkip-r-sm);
	flex-shrink: 0;
}

.fkip-sidebar .wpp-post-title {
	font-weight: 600;
	line-height: 1.4;
}

/* ========================================================================== *
 * 16. Pagination & comments
 * ========================================================================== */

.fkip-pagination {
	margin-top: 2rem;
}

.fkip-pagination .page-numbers,
.pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	height: 40px;
	padding: 0 .75rem;
	margin: 0 .2rem .4rem 0;
	border: 1px solid var(--fkip-line);
	border-radius: var(--fkip-r-sm);
	background: var(--fkip-surface);
	color: var(--fkip-ink-2);
	font-weight: 600;
	font-size: .9rem;
	transition: background-color .16s var(--fkip-ease), color .16s var(--fkip-ease), border-color .16s var(--fkip-ease);
}

.fkip-pagination .page-numbers:hover,
.pagination .page-numbers:hover {
	border-color: var(--fkip-primary-300);
	background: var(--fkip-primary-50);
	color: var(--fkip-primary-800);
}

.fkip-pagination .page-numbers.current,
.pagination .page-numbers.current {
	background: var(--fkip-primary-600);
	border-color: var(--fkip-primary-600);
	color: #fff;
}

.fkip-pagination .page-numbers.dots {
	border-color: transparent;
	background: transparent;
}

/* Bootstrap-style pagination markup emitted by understrap_pagination() */
.fkip-pagination .page-item .page-link {
	border: 1px solid var(--fkip-line);
	border-radius: var(--fkip-r-sm);
	margin: 0 .2rem;
	color: var(--fkip-ink-2);
	font-weight: 600;
}

.fkip-pagination .page-item.active .page-link {
	background: var(--fkip-primary-600);
	border-color: var(--fkip-primary-600);
	color: #fff;
}

.comments-area {
	background: var(--fkip-surface);
	border: 1px solid var(--fkip-line);
	border-radius: var(--fkip-r);
	padding: 1.75rem;
	margin-top: 1.5rem;
	box-shadow: var(--fkip-shadow-xs);
}

.comments-area .comment-list {
	list-style: none;
	padding: 0;
}

.comments-area .comment-body {
	padding: 1rem 0;
	border-bottom: 1px solid var(--fkip-line-2);
}

/* ========================================================================== *
 * 17. Footer
 * ========================================================================== */

#wrapper-footer {
	background: var(--fkip-primary-900);
	color: rgba(255, 255, 255, .72);
	padding: 0;
}

.fkip-footer {
	padding: 3.5rem 0 2rem;
}

.fkip-footer__brand {
	display: flex;
	gap: 1rem;
	align-items: flex-start;
	margin-bottom: 1.25rem;
}

.fkip-footer__brand img {
	max-width: 64px;
	height: auto;
	flex-shrink: 0;
}

.fkip-footer__name {
	color: #fff;
	font-weight: 700;
	font-size: 1rem;
	line-height: 1.35;
	margin: 0;
}

.fkip-footer__univ {
	color: var(--fkip-accent);
	font-size: .85rem;
	font-weight: 600;
	margin-top: .15rem;
}

.fkip-footer__contact {
	font-size: .88rem;
	line-height: 1.7;
	color: rgba(255, 255, 255, .72);
}

.fkip-footer__contact li {
	display: flex;
	gap: .6rem;
	align-items: flex-start;
	margin-bottom: .5rem;
}

.fkip-footer__contact i {
	color: var(--fkip-primary-300);
	margin-top: .3rem;
	flex-shrink: 0;
	width: 16px;
	text-align: center;
}

.fkip-footer__contact a {
	color: rgba(255, 255, 255, .82);
}

.fkip-footer__contact a:hover {
	color: #fff;
	text-decoration: underline;
}

.fkip-footer__title {
	color: #fff;
	font-size: .85rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: .09em;
	margin: 0 0 1.1rem;
	position: relative;
	padding-bottom: .6rem;
}

.fkip-footer__title::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 32px;
	height: 2px;
	background: var(--fkip-accent);
}

.fkip-footer__list {
	list-style: none;
	padding: 0;
	margin: 0;
	font-size: .88rem;
}

.fkip-footer__list li {
	margin-bottom: .55rem;
}

.fkip-footer__list a {
	color: rgba(255, 255, 255, .72);
	display: inline-flex;
	align-items: baseline;
	gap: .45rem;
	transition: color .16s var(--fkip-ease), transform .16s var(--fkip-ease);
}

.fkip-footer__list a:hover {
	color: #fff;
	transform: translateX(3px);
}

.fkip-footer__list a::before {
	content: "\f105";
	font-family: FontAwesome;
	font-size: .78rem;
	color: var(--fkip-primary-300);
}

.fkip-footer__social {
	display: flex;
	gap: .5rem;
	flex-wrap: wrap;
	margin-top: 1.25rem;
}

.fkip-footer__social a {
	width: 38px;
	height: 38px;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, .1);
	color: #fff;
	font-size: .95rem;
	transition: background-color .18s var(--fkip-ease), transform .18s var(--fkip-ease);
}

.fkip-footer__social a:hover {
	background: var(--fkip-primary-500);
	transform: translateY(-2px);
}

.fkip-colophon {
	background: rgba(0, 0, 0, .25);
	padding: 1.1rem 0;
	font-size: .82rem;
	color: rgba(255, 255, 255, .6);
}

.fkip-colophon a {
	color: rgba(255, 255, 255, .85);
	font-weight: 600;
}

.fkip-colophon a:hover {
	color: var(--fkip-accent);
}

.fkip-colophon__inner {
	display: flex;
	flex-wrap: wrap;
	gap: .5rem 1.5rem;
	align-items: center;
	justify-content: space-between;
}

/* ========================================================================== *
 * 18. Search overlay & utilities
 * ========================================================================== */

.fkip-search {
	position: fixed;
	inset: 0;
	z-index: 1080;
	display: none;
	align-items: flex-start;
	justify-content: center;
	padding: 12vh 1rem 1rem;
	background: rgba(15, 59, 60, .82);
	backdrop-filter: blur(6px);
}

.fkip-search.is-open {
	display: flex;
}

.fkip-search__panel {
	position: relative;
	width: 100%;
	max-width: 620px;
	background: var(--fkip-surface);
	border-radius: var(--fkip-r-lg);
	padding: 1.75rem;
	box-shadow: var(--fkip-shadow-lg);
}

.fkip-search__label {
	font-size: .8rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .09em;
	color: var(--fkip-muted);
	display: block;
	margin-bottom: .6rem;
}

.fkip-search__close {
	position: absolute;
	top: .75rem;
	right: .9rem;
	border: 0;
	background: transparent;
	font-size: 1.3rem;
	line-height: 1;
	color: var(--fkip-muted);
	cursor: pointer;
	padding: .25rem .4rem;
	border-radius: var(--fkip-r-sm);
}

.fkip-search__close:hover {
	color: var(--fkip-ink);
	background: var(--fkip-bg-2);
}

/* Back to top */
#scroll-top-btn,
.fkip-totop {
	position: fixed;
	right: 20px;
	bottom: 20px;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	display: none;
	align-items: center;
	justify-content: center;
	background: var(--fkip-primary-600);
	color: #fff;
	box-shadow: var(--fkip-shadow-lg);
	z-index: 1030;
	cursor: pointer;
	border: 0;
	transition: background-color .18s var(--fkip-ease), transform .18s var(--fkip-ease);
}

#scroll-top-btn.d-block,
.fkip-totop.is-visible {
	display: flex !important;
}

#scroll-top-btn:hover,
.fkip-totop:hover {
	background: var(--fkip-primary-800);
	transform: translateY(-3px);
	color: #fff;
}

/* 404 */
.fkip-404 {
	text-align: center;
	padding: 4rem 1rem;
}

.fkip-404__code {
	font-size: clamp(4rem, 2rem + 12vw, 9rem);
	font-weight: 800;
	line-height: 1;
	color: var(--fkip-primary-100);
	letter-spacing: -.04em;
}

/* Helpers */
.fkip-clamp-2 {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.fkip-clamp-3 {
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.fkip-stack > * + * {
	margin-top: 1rem;
}

/* Reveal-on-scroll, disabled for reduced-motion users */
.fkip-reveal {
	opacity: 0;
	transform: translateY(16px);
	transition: opacity .5s var(--fkip-ease), transform .5s var(--fkip-ease);
}

.fkip-reveal.is-visible {
	opacity: 1;
	transform: none;
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		animation-duration: .001ms !important;
		transition-duration: .001ms !important;
	}

	.fkip-reveal {
		opacity: 1;
		transform: none;
	}
}

/* ========================================================================== *
 * 19. Content image lightbox
 * ========================================================================== */

.fkip-zoomable {
	cursor: zoom-in;
}

.fkip-zoomable:focus-visible {
	outline: 3px solid var(--fkip-primary-400);
	outline-offset: 3px;
}

body.fkip-lightbox-open {
	overflow: hidden;
}

.fkip-lightbox {
	position: fixed;
	inset: 0;
	z-index: 2000;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 3.5rem 1rem 4.5rem;
	background: rgba(8, 22, 24, .94);
	opacity: 0;
	transition: opacity .2s var(--fkip-ease);
}

.fkip-lightbox.is-open {
	opacity: 1;
}

.fkip-lightbox[hidden] {
	display: none;
}

.fkip-lightbox__figure {
	position: relative;
	margin: 0;
	max-width: 100%;
	max-height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: .9rem;
}

.fkip-lightbox__img {
	max-width: min(1400px, 92vw);
	max-height: 78vh;
	width: auto;
	height: auto;
	border-radius: var(--fkip-r-sm);
	box-shadow: 0 24px 60px rgba(0, 0, 0, .5);
	background: rgba(255, 255, 255, .04);
	transition: opacity .18s var(--fkip-ease);
}

.fkip-lightbox.is-loading .fkip-lightbox__img {
	opacity: 0;
}

.fkip-lightbox__caption {
	color: rgba(255, 255, 255, .88);
	font-size: .9rem;
	text-align: center;
	max-width: 70ch;
	margin: 0;
}

.fkip-lightbox__caption[hidden] {
	display: none;
}

.fkip-lightbox__counter {
	position: absolute;
	left: 50%;
	bottom: 1.35rem;
	transform: translateX(-50%);
	color: rgba(255, 255, 255, .75);
	font-size: .85rem;
	font-weight: 600;
	letter-spacing: .04em;
	background: rgba(255, 255, 255, .08);
	padding: .3rem .85rem;
	border-radius: var(--fkip-r-pill);
}

.fkip-lightbox__close,
.fkip-lightbox__nav {
	position: absolute;
	border: 0;
	cursor: pointer;
	color: #fff;
	background: rgba(255, 255, 255, .1);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background-color .16s var(--fkip-ease), transform .16s var(--fkip-ease);
}

.fkip-lightbox__close:hover,
.fkip-lightbox__nav:hover {
	background: var(--fkip-primary-600);
}

.fkip-lightbox__close:focus-visible,
.fkip-lightbox__nav:focus-visible {
	outline: 3px solid var(--fkip-primary-300);
	outline-offset: 2px;
}

.fkip-lightbox__close {
	top: 1rem;
	right: 1rem;
	width: 44px;
	height: 44px;
	font-size: 1.7rem;
	line-height: 1;
}

.fkip-lightbox__nav {
	top: 50%;
	transform: translateY(-50%);
	width: 52px;
	height: 52px;
	font-size: 1.6rem;
}

.fkip-lightbox__nav:hover {
	transform: translateY(-50%) scale(1.06);
}

.fkip-lightbox__nav--prev {
	left: 1rem;
}

.fkip-lightbox__nav--next {
	right: 1rem;
}

.fkip-lightbox__nav[hidden],
.fkip-lightbox__counter[hidden] {
	display: none;
}

.fkip-lightbox__spinner {
	position: absolute;
	width: 40px;
	height: 40px;
	border: 3px solid rgba(255, 255, 255, .25);
	border-top-color: #fff;
	border-radius: 50%;
	opacity: 0;
	animation: fkip-spin .7s linear infinite;
}

.fkip-lightbox.is-loading .fkip-lightbox__spinner {
	opacity: 1;
}

@keyframes fkip-spin {
	to {
		transform: rotate(360deg);
	}
}

/* On phones the controls move out of the thumb's way. */
@media (max-width: 575.98px) {
	.fkip-lightbox {
		padding: 3.5rem .5rem 5rem;
	}

	.fkip-lightbox__nav {
		top: auto;
		bottom: 1rem;
		transform: none;
		width: 46px;
		height: 46px;
	}

	.fkip-lightbox__nav:hover {
		transform: none;
	}

	.fkip-lightbox__nav--prev {
		left: 1.5rem;
	}

	.fkip-lightbox__nav--next {
		right: 1.5rem;
	}

	.fkip-lightbox__img {
		max-height: 70vh;
	}
}

/* ========================================================================== *
 * 20. Print
 * ========================================================================== */

@media print {
	.fkip-topbar,
	#wrapper-navbar,
	#wrapper-hero,
	#wrapper-footer,
	.fkip-colophon,
	.fkip-sidebar,
	.fkip-search,
	#scroll-top-btn,
	.fkip-share,
	.fkip-postnav,
	.fkip-lightbox {
		display: none !important;
	}

	body {
		background: #fff;
		color: #000;
	}

	.fkip-article {
		border: 0;
		box-shadow: none;
		padding: 0;
	}

	.fkip-pagehead {
		background: none;
		color: #000;
		padding: 0 0 1rem;
	}

	.fkip-pagehead::before {
		display: none;
	}

	.fkip-pagehead__title {
		color: #000;
	}
}
