/*
 * IPC Landing — theme overrides.
 *
 * Loaded after the Canvas vendor stylesheet. This file only carries brand
 * variables and the narrow overrides the landing sections need; no Canvas CSS
 * is duplicated here and no vendor file is edited (Rule 5).
 */

/* --------------------------------------------------------------------------
 * 1. Brand tokens
 * ----------------------------------------------------------------------- */

:root {
	--ipc-navy: #2c4a75;
	--ipc-navy-rgb: 44, 74, 117;
	--ipc-blue: #3878a3;
	--ipc-blue-rgb: 56, 120, 163;
	--ipc-gold: #ad9256;
	--ipc-gold-rgb: 173, 146, 86;
	--ipc-ink: #1b2a3d;
	--ipc-gray: #5d6e7e;
	--ipc-light: #f1f5f9;
	--ipc-white: #ffffff;
	--ipc-border: rgba(27, 42, 61, 0.12);

	--ipc-font-arabic: 'Cairo', 'Segoe UI', Tahoma, sans-serif;
	--ipc-font-latin: 'Inter', 'Segoe UI', Helvetica, Arial, sans-serif;
	--ipc-font-body: var(--ipc-font-latin);
	--ipc-font-heading: var(--ipc-font-latin);

	--ipc-radius: 12px;
	--ipc-radius-lg: 18px;
	--ipc-shadow: 0 6px 24px rgba(27, 42, 61, 0.08);
	--ipc-shadow-hover: 0 14px 38px rgba(27, 42, 61, 0.16);
	--ipc-transition: all 0.28s ease;
	--ipc-section-padding: 84px 0;

	/* Fallbacks; the Customizer values are injected as inline CSS after this file. */
	--ipc-header-logo-height-desktop: 64px;
	--ipc-header-logo-height-mobile: 44px;
	--ipc-header-logo-padding-top: 10px;
	--ipc-header-logo-padding-right: 0px;
	--ipc-header-logo-padding-bottom: 10px;
	--ipc-header-logo-padding-left: 0px;
	--ipc-header-logo-padding-mobile-top: 8px;
	--ipc-header-logo-padding-mobile-right: 0px;
	--ipc-header-logo-padding-mobile-bottom: 8px;
	--ipc-header-logo-padding-mobile-left: 0px;

	/* Canvas tokens rebound to the IPC palette. */
	--cnvs-themecolor: var(--ipc-navy);
	--cnvs-themecolor-rgb: var(--ipc-navy-rgb);
	--cnvs-heading-color: var(--ipc-ink);
	--cnvs-link-color: var(--ipc-blue);
	--cnvs-primary-font: var(--ipc-font-heading);
	--cnvs-body-font: var(--ipc-font-body);
	--cnvs-secondary-font: var(--ipc-font-body);
}

html[dir="rtl"] {
	--ipc-font-body: var(--ipc-font-arabic);
	--ipc-font-heading: var(--ipc-font-arabic);
}

/* --------------------------------------------------------------------------
 * 2. Base
 * ----------------------------------------------------------------------- */

/*
 * Horizontal scroll prevention (Rule 20).
 *
 * `overflow-x: hidden` turns the element into a scroll container, and any
 * ancestor scroll container silently disables `position: sticky` further down
 * the tree. `overflow-x: clip` clips the same way without creating one, so the
 * sticky table of contents on the privacy page keeps working. Browsers without
 * `clip` keep the old behaviour: no sideways scroll, no sticky.
 */
html,
body {
	max-width: 100%;
	overflow-x: hidden;
}

@supports (overflow-x: clip) {
	html,
	body {
		overflow-x: clip;
	}
}

body {
	font-family: var(--ipc-font-body);
	color: var(--ipc-ink);
	background: var(--ipc-white);
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--ipc-font-heading);
	color: var(--ipc-ink);
}

a {
	color: var(--ipc-blue);
}

a:hover {
	color: var(--ipc-navy);
}

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

.ipc-anchor {
	display: block;
	height: 0;
	scroll-margin-top: 90px;
}

.ipc-muted {
	color: var(--ipc-gray);
}

/* Font Awesome must keep its own font family even inside buttons (Rule 26). */
i.fa-solid,
i.fa-regular,
i.fa-brands,
.button i.fa-solid,
.button i.fa-regular,
.button i.fa-brands,
button i.fa-solid,
button i.fa-regular,
button i.fa-brands {
	font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands" !important;
	font-style: normal;
}

i.fa-brands,
.button i.fa-brands,
button i.fa-brands {
	font-family: "Font Awesome 6 Brands" !important;
}

/* --------------------------------------------------------------------------
 * 3. Buttons
 * ----------------------------------------------------------------------- */

.ipc-button {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-family: var(--ipc-font-heading);
	font-weight: 600;
	letter-spacing: 0;
	text-transform: none;
	border: 0;
	transition: var(--ipc-transition);
}

.ipc-button-gold {
	background: var(--ipc-gold);
	color: #fff;
}

.ipc-button-gold:hover,
.ipc-button-gold:focus {
	background: var(--ipc-navy);
	color: #fff;
	transform: translateY(-2px);
	box-shadow: var(--ipc-shadow-hover);
}

.ipc-button i {
	font-size: 0.85em;
}

/* --------------------------------------------------------------------------
 * 4. Header (Rules 11 and 12)
 * ----------------------------------------------------------------------- */

#header.ipc-header {
	background: #fff;
	border-bottom: 1px solid var(--ipc-border);
	position: sticky;
	top: 0;
	z-index: 199;
}

#header .header-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	width: 100%;
	min-height: 72px;
}

#header #logo {
	display: flex;
	align-items: center;
	margin: 0;
	padding-top: var(--ipc-header-logo-padding-top);
	padding-right: var(--ipc-header-logo-padding-right);
	padding-bottom: var(--ipc-header-logo-padding-bottom);
	padding-left: var(--ipc-header-logo-padding-left);
	border: 0;
}

/* The size settings must reach the image itself, not only its wrapper. */
#header #logo img,
#header #logo .custom-logo {
	height: var(--ipc-header-logo-height-desktop) !important;
	max-height: var(--ipc-header-logo-height-desktop) !important;
	width: auto !important;
}

#header .ipc-logo-text {
	font-family: var(--ipc-font-heading);
	font-size: 1.15rem;
	font-weight: 700;
	color: var(--ipc-navy);
}

#header .primary-menu {
	flex: 1 1 auto;
	display: flex;
	justify-content: center;
}

#header .menu-container {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 4px;
	margin: 0;
	padding: 0;
	list-style: none;
}

#header .menu-link {
	display: block;
	padding: 10px 14px;
	font-family: var(--ipc-font-heading);
	font-size: 0.98rem;
	font-weight: 600;
	color: var(--ipc-ink);
	letter-spacing: 0;
	text-transform: none;
	border-radius: 8px;
	transition: var(--ipc-transition);
}

#header .menu-item:hover > .menu-link,
#header .menu-item.current > .menu-link {
	color: var(--ipc-navy);
	background: var(--ipc-light);
}

#header .header-misc {
	display: flex;
	align-items: center;
	gap: 12px;
	margin: 0;
}

#header .ipc-header-cta {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin: 0;
	padding: 9px 18px;
	background: var(--ipc-navy);
	color: #fff;
	border-radius: 999px;
	font-size: 0.9rem;
	font-weight: 600;
	letter-spacing: 0;
	text-transform: none;
}

#header .ipc-header-cta:hover {
	background: var(--ipc-blue);
	color: #fff;
}

#header .primary-menu-trigger {
	display: none;
	margin: 0;
}

#header .primary-menu-trigger .cnvs-hamburger {
	background: none;
	border: 0;
	padding: 8px;
	cursor: pointer;
}

.ipc-language-switcher .ipc-language-list {
	display: flex;
	align-items: center;
	gap: 6px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.ipc-language-switcher a {
	display: inline-block;
	padding: 5px 10px;
	font-size: 0.85rem;
	font-weight: 600;
	color: var(--ipc-gray);
	border-radius: 6px;
}

.ipc-language-item.is-active a,
.ipc-language-switcher a:hover {
	color: var(--ipc-navy);
	background: var(--ipc-light);
}

@media (max-width: 991.98px) {
	#header .header-row {
		flex-wrap: wrap;
		min-height: 64px;
	}

	#header #logo {
		margin: 0 !important;
		padding-top: var(--ipc-header-logo-padding-mobile-top);
		padding-right: var(--ipc-header-logo-padding-mobile-right);
		padding-bottom: var(--ipc-header-logo-padding-mobile-bottom);
		padding-left: var(--ipc-header-logo-padding-mobile-left);
		order: 1;
	}

	#header #logo img,
	#header #logo .custom-logo {
		height: var(--ipc-header-logo-height-mobile) !important;
		max-height: var(--ipc-header-logo-height-mobile) !important;
		width: auto !important;
	}

	/* Logo and trigger stay on the same row at opposite edges; the document
	   direction places the logo at the reading start and the trigger at the end. */
	#header .primary-menu-trigger {
		display: block;
		margin: 0 !important;
		order: 2;
	}

	#header .primary-menu {
		order: 3;
		flex: 0 0 100%;
		display: none;
		padding-bottom: 12px;
	}

	#header .primary-menu.is-open {
		display: block;
	}

	#header .menu-container {
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		border-top: 1px solid var(--ipc-border);
		padding-top: 8px;
	}

	#header .menu-link {
		padding: 12px 4px;
	}

	#header .header-misc {
		order: 4;
		flex: 0 0 100%;
		justify-content: space-between;
		padding-bottom: 12px;
	}

	#header .header-misc:not(.is-open) {
		display: none;
	}

	#header .header-misc.is-open {
		display: flex;
	}
}

/* --------------------------------------------------------------------------
 * 5. Sections and headings (Rule 15 — one divider only)
 * ----------------------------------------------------------------------- */

.ipc-section {
	padding: var(--ipc-section-padding);
	margin: 0;
	border: 0;
}

.ipc-section-soft {
	background: var(--ipc-light);
}

.ipc-section.dark,
.ipc-section-stats {
	background: var(--ipc-navy);
}

/* Canvas draws its own line under .heading-block; it is switched off so the
   single branded divider below is the only rule on the page. */
.heading-block::after,
.ipc-heading::after {
	display: none !important;
}

.ipc-heading {
	margin-bottom: 34px;
	padding-bottom: 0;
	border-bottom: 0;
}

.ipc-heading h2 {
	margin: 0 0 14px;
	font-size: clamp(1.6rem, 1.2rem + 1.5vw, 2.35rem);
	font-weight: 700;
	line-height: 1.35;
	color: var(--ipc-navy);
	text-transform: none;
	letter-spacing: 0;
}

.ipc-heading > span:not(.ipc-divider) {
	display: block;
	max-width: 720px;
	margin: 0;
	font-size: 1.02rem;
	line-height: 1.9;
	color: var(--ipc-gray);
	text-transform: none;
	letter-spacing: 0;
}

.ipc-heading.text-center > span:not(.ipc-divider) {
	margin-inline: auto;
}

/* The selector is kept as specific as the Canvas rule for
   `.heading-block > span:not(.before-heading)` so the divider is not treated
   as a subtitle line. */
.ipc-divider,
.ipc-heading > span.ipc-divider {
	display: block;
	width: 62px;
	height: 3px;
	margin: 0 0 16px;
	background: var(--ipc-gold);
	border-radius: 2px;
	border: 0;
}

.ipc-heading.text-center > span.ipc-divider,
.ipc-page-title .ipc-divider,
.ipc-section-404 .ipc-divider {
	margin-inline: auto;
}

.ipc-section.dark .ipc-heading h2 {
	color: #fff;
}

.ipc-section.dark .ipc-heading > span:not(.ipc-divider) {
	color: rgba(255, 255, 255, 0.78);
}

.ipc-note {
	margin: 26px 0 0;
	padding: 14px 18px;
	background: var(--ipc-light);
	border-inline-start: 3px solid var(--ipc-gold);
	border-radius: 8px;
	font-size: 0.94rem;
	line-height: 1.9;
	color: var(--ipc-gray);
}

.ipc-entry {
	font-size: 1.02rem;
	line-height: 1.95;
	color: var(--ipc-ink);
}

.ipc-media img {
	width: 100%;
	border-radius: var(--ipc-radius-lg);
	box-shadow: var(--ipc-shadow);
}

/* --------------------------------------------------------------------------
 * 6. Hero (Rule 13)
 * ----------------------------------------------------------------------- */

.ipc-hero {
	position: relative;
	display: flex;
	align-items: center;
	min-height: clamp(440px, 68vh, 680px);
	padding: 72px 0;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	overflow: hidden;
}

.ipc-hero--navy {
	background-color: var(--ipc-navy);
	background-image: linear-gradient(135deg, #2c4a75 0%, #3878a3 100%);
}

.ipc-hero--light {
	background-color: var(--ipc-light);
}

.ipc-hero-overlay {
	position: absolute;
	inset: 0;
	background: rgba(27, 42, 61, 0.32);
	pointer-events: none;
}

.ipc-hero--overlay-light .ipc-hero-overlay {
	background: rgba(27, 42, 61, 0.22);
}

.ipc-hero--overlay-medium .ipc-hero-overlay {
	background: rgba(27, 42, 61, 0.42);
}

.ipc-hero-container {
	position: relative;
	z-index: 2;
	width: 100%;
}

.ipc-hero-content {
	max-width: 780px;
}

.ipc-hero--align-center .ipc-hero-content {
	margin-inline: auto;
	text-align: center;
}

.ipc-hero--align-start .ipc-hero-content {
	text-align: start;
}

.ipc-hero-logo {
	display: block;
	max-height: 96px;
	width: auto;
	margin-bottom: 26px;
}

.ipc-hero--align-center .ipc-hero-logo {
	margin-inline: auto;
}

.ipc-hero-badge {
	display: inline-block;
	margin-bottom: 16px;
	padding: 6px 16px;
	background: rgba(173, 146, 86, 0.18);
	border: 1px solid rgba(173, 146, 86, 0.5);
	border-radius: 999px;
	font-size: 0.86rem;
	font-weight: 600;
	letter-spacing: 0;
	text-transform: none;
	color: var(--ipc-gold);
}

.ipc-hero--light .ipc-hero-badge {
	color: var(--ipc-navy);
	background: rgba(44, 74, 117, 0.08);
	border-color: rgba(44, 74, 117, 0.25);
}

.ipc-hero-title {
	margin: 0 0 18px;
	font-size: clamp(1.9rem, 1.2rem + 2.6vw, 3.1rem);
	font-weight: 800;
	line-height: 1.3;
	color: #fff;
}

.ipc-hero-subtitle {
	margin: 0 auto 30px;
	max-width: 640px;
	font-size: clamp(1rem, 0.95rem + 0.3vw, 1.18rem);
	line-height: 1.95;
	color: rgba(255, 255, 255, 0.88);
}

.ipc-hero--align-start .ipc-hero-subtitle {
	margin-inline: 0;
}

.ipc-hero--light .ipc-hero-title {
	color: var(--ipc-navy);
}

.ipc-hero--light .ipc-hero-subtitle {
	color: var(--ipc-gray);
}

/* The first instalment: the figure a visitor decides on, given its own weight. */
.ipc-hero-fee {
	display: inline-block;
	margin: 0 auto 26px;
	padding: 9px 20px;
	background: rgba(var(--ipc-gold-rgb), 0.16);
	border: 1px solid rgba(var(--ipc-gold-rgb), 0.42);
	border-radius: 999px;
	font-size: 1.02rem;
	font-weight: 700;
	color: var(--ipc-gold);
}

.ipc-hero--light .ipc-hero-fee {
	background: rgba(var(--ipc-gold-rgb), 0.1);
	color: #8a7038;
}

.ipc-cta-fee {
	margin: 0 0 22px;
	font-size: 1.05rem;
	font-weight: 700;
	color: var(--ipc-gold);
}

/*
 * Five columns of Arabic headings pushed this table past the 620px floor that
 * the wrapper then scrolled, so a desktop reader got a horizontal scrollbar on
 * a table that fits. The fee table sets its own, lower floor and lets every
 * cell wrap. Since 1.8.1 it carries four columns, and on a phone it stops being
 * a table altogether rather than hiding a fee behind a sideways scroll.
 */
.ipc-fees-table {
	min-width: 0;
	table-layout: fixed;
}

.ipc-fees-table th,
.ipc-fees-table td {
	padding-inline: 12px;
	white-space: normal;
	word-break: break-word;
}

.ipc-fees-table th[scope="row"] {
	white-space: normal;
	width: 30%;
}

.ipc-fees-table .ipc-fees-offer {
	background: rgba(var(--ipc-gold-rgb), 0.08);
}

.ipc-fees-note {
	margin-bottom: 20px;
}

.ipc-fees-duration {
	display: flex;
	flex-wrap: wrap;
	gap: 4px 18px;
	margin-top: 14px;
}

.ipc-fees-saving {
	font-weight: 700;
	color: var(--ipc-navy);
}

/*
 * The phone layout.
 *
 * Four columns of Arabic numerals do not survive a 390px viewport, and the fee
 * is the figure that decides whether somebody registers — it must never sit
 * behind a horizontal scroll on the device most of this audience reads on. So
 * each row becomes its own labelled block: the scale name is the block heading,
 * and every figure carries the column heading it lost.
 */
@media (max-width: 767.98px) {
	.ipc-fees-table,
	.ipc-fees-table tbody,
	.ipc-fees-table tr,
	.ipc-fees-table th,
	.ipc-fees-table td {
		display: block;
		width: auto;
	}

	.ipc-fees-table thead {
		position: absolute;
		width: 1px;
		height: 1px;
		overflow: hidden;
		clip: rect(0 0 0 0);
		clip-path: inset(50%);
		white-space: nowrap;
	}

	.ipc-fees-table tr {
		padding: 4px 0 10px;
		border-bottom: 1px solid var(--ipc-border);
	}

	.ipc-fees-table tr:last-child {
		border-bottom: 0;
	}

	.ipc-fees-table th[scope="row"] {
		width: auto;
		padding-bottom: 6px;
		font-size: 1rem;
	}

	.ipc-fees-table td {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		gap: 4px 16px;
		padding-block: 7px;
		border-bottom: 0;
	}

	.ipc-fees-table td::before {
		content: attr(data-ipc-label);
		font-weight: 700;
		color: var(--ipc-navy);
	}
}

.ipc-shared-deadline .ipc-deadline-days {
	display: inline-block;
	margin-inline-start: 8px;
	padding: 2px 12px;
	background: rgba(var(--ipc-gold-rgb), 0.16);
	border-radius: 999px;
	font-size: 0.86rem;
	color: var(--ipc-navy);
	white-space: nowrap;
}

.ipc-shared-payment {
	margin-top: 20px;
}

.ipc-hero-actions {
	margin: 0;
}

.ipc-hero-scroll {
	position: absolute;
	bottom: 22px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 3;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.18);
	border: 1px solid rgba(255, 255, 255, 0.4);
	color: #fff;
	animation: ipc-bob 2.2s ease-in-out infinite;
}

.ipc-hero--light .ipc-hero-scroll {
	background: rgba(44, 74, 117, 0.1);
	border-color: rgba(44, 74, 117, 0.3);
	color: var(--ipc-navy);
}

.ipc-hero-scroll:hover {
	background: var(--ipc-gold);
	border-color: var(--ipc-gold);
	color: #fff;
}

@keyframes ipc-bob {
	0%, 100% { transform: translate(-50%, 0); }
	50% { transform: translate(-50%, 7px); }
}

/* --------------------------------------------------------------------------
 * 7. Trust bar
 * ----------------------------------------------------------------------- */

.ipc-trustbar {
	margin: 0;
	padding: 22px 0;
	background: var(--ipc-navy);
	border: 0;
}

.ipc-trust-list {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 14px 40px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.ipc-trust-item {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 0.98rem;
	font-weight: 600;
	color: #fff;
}

.ipc-trust-item i {
	color: var(--ipc-gold);
	font-size: 1.1rem;
}

/* --------------------------------------------------------------------------
 * 8. Cards, courses, study method
 * ----------------------------------------------------------------------- */

.ipc-card {
	height: 100%;
	margin: 0;
	padding: 30px 24px;
	background: #fff;
	border: 1px solid var(--ipc-border);
	border-radius: var(--ipc-radius-lg);
	box-shadow: var(--ipc-shadow);
	transition: var(--ipc-transition);
}

.ipc-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--ipc-shadow-hover);
	border-color: rgba(var(--ipc-gold-rgb), 0.45);
}

.ipc-card .ipc-card-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 62px;
	height: 62px;
	margin: 0 auto 18px;
	border-radius: 50%;
	background: rgba(var(--ipc-navy-rgb), 0.08);
	color: var(--ipc-navy);
	font-size: 1.5rem;
}

.ipc-card .ipc-card-content {
	padding: 0;
	text-align: center;
}

.ipc-card h3 {
	margin: 0 0 10px;
	font-size: 1.12rem;
	font-weight: 700;
	color: var(--ipc-navy);
	text-transform: none;
	letter-spacing: 0;
}

.ipc-card p {
	margin: 0;
	font-size: 0.97rem;
	line-height: 1.9;
	color: var(--ipc-gray);
}

.ipc-course {
	display: flex;
	gap: 16px;
	height: 100%;
	margin: 0;
	padding: 22px;
	background: #fff;
	border: 1px solid var(--ipc-border);
	border-radius: var(--ipc-radius);
	transition: var(--ipc-transition);
}

.ipc-course:hover {
	border-color: rgba(var(--ipc-gold-rgb), 0.5);
	box-shadow: var(--ipc-shadow);
}

.ipc-course-number {
	flex: 0 0 auto;
	margin: 0;
}

.ipc-course-number .i-alt {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: var(--ipc-navy);
	color: #fff;
	font-size: 1rem;
	font-weight: 700;
	font-style: normal;
}

.ipc-course-content {
	padding: 0;
}

.ipc-course-content h3 {
	margin: 0 0 6px;
	font-size: 1.05rem;
	font-weight: 700;
	color: var(--ipc-ink);
	text-transform: none;
	letter-spacing: 0;
}

.ipc-course-meta {
	display: block;
	margin-top: 4px;
	font-size: 0.86rem;
	font-weight: 500;
	color: var(--ipc-gold);
	text-transform: none;
}

.ipc-course-content p {
	margin: 0;
	font-size: 0.95rem;
	line-height: 1.85;
	color: var(--ipc-gray);
}

.ipc-how-box {
	height: 100%;
	margin: 0;
	padding: 26px 20px;
	background: #fff;
	border-radius: var(--ipc-radius);
	text-align: center;
	box-shadow: var(--ipc-shadow);
}

.ipc-how-icon {
	margin: 0 0 14px;
	color: var(--ipc-blue);
	font-size: 1.8rem;
}

.ipc-how-box h3 {
	margin: 0 0 8px;
	font-size: 1.05rem;
	font-weight: 700;
	color: var(--ipc-navy);
	text-transform: none;
	letter-spacing: 0;
}

.ipc-how-box p {
	margin: 0;
	font-size: 0.95rem;
	line-height: 1.85;
	color: var(--ipc-gray);
}

/* --------------------------------------------------------------------------
 * 8b. Dean, methodology, program cards, admission, research, institution
 * ----------------------------------------------------------------------- */

.ipc-dean-portrait img {
	width: 100%;
	border-radius: var(--ipc-radius-lg);
	box-shadow: var(--ipc-shadow);
}

.ipc-dean-quote {
	position: relative;
	margin: 0 0 18px;
	padding: 22px 26px;
	background: #fff;
	border: 0;
	border-inline-start: 4px solid var(--ipc-gold);
	border-radius: var(--ipc-radius);
	box-shadow: var(--ipc-shadow);
}

.ipc-dean-quote p {
	margin: 0;
	font-size: 1.08rem;
	line-height: 1.95;
	color: var(--ipc-ink);
}

.ipc-dean-mark {
	position: absolute;
	inset-block-start: 14px;
	inset-inline-end: 18px;
	font-size: 1.4rem;
	color: rgba(var(--ipc-gold-rgb), 0.28);
}

.ipc-dean-name {
	margin: 0 0 6px;
	font-family: var(--ipc-font-heading);
	font-weight: 700;
	color: var(--ipc-navy);
}

.ipc-dean-bio {
	margin: 0;
	font-size: 0.96rem;
	line-height: 1.9;
	color: var(--ipc-gray);
}

.ipc-methodology-intro {
	margin-bottom: 34px;
	text-align: center;
}

.ipc-pillar {
	height: 100%;
	padding: 28px 24px;
	background: #fff;
	border: 1px solid var(--ipc-border);
	border-radius: var(--ipc-radius-lg);
	box-shadow: var(--ipc-shadow);
}

.ipc-pillar-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 54px;
	height: 54px;
	margin-bottom: 16px;
	border-radius: 14px;
	background: rgba(var(--ipc-gold-rgb), 0.14);
	color: var(--ipc-gold);
	font-size: 1.3rem;
}

.ipc-pillar-title {
	margin: 0 0 10px;
	font-size: 1.1rem;
	font-weight: 700;
	color: var(--ipc-navy);
}

.ipc-pillar-text {
	margin: 0;
	font-size: 0.97rem;
	line-height: 1.9;
	color: var(--ipc-gray);
}

.ipc-program-card {
	display: flex;
	flex-direction: column;
	height: 100%;
	padding: 28px 24px;
	background: #fff;
	border: 1px solid var(--ipc-border);
	border-top: 4px solid var(--ipc-gold);
	border-radius: var(--ipc-radius-lg);
	box-shadow: var(--ipc-shadow);
	transition: var(--ipc-transition);
}

.ipc-program-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--ipc-shadow-hover);
}

.ipc-program-title {
	margin: 0 0 8px;
	font-size: 1.15rem;
	font-weight: 700;
	color: var(--ipc-navy);
}

.ipc-program-lead {
	margin: 0 0 16px;
	font-size: 0.96rem;
	line-height: 1.85;
	color: var(--ipc-gray);
}

.ipc-program-facts {
	margin: 0 0 16px;
	padding: 0;
	list-style: none;
}

.ipc-program-facts li {
	display: flex;
	align-items: flex-start;
	gap: 9px;
	margin: 0 0 8px;
	font-size: 0.95rem;
	line-height: 1.7;
	color: var(--ipc-ink);
}

.ipc-program-facts i {
	flex: 0 0 auto;
	margin-top: 4px;
	color: var(--ipc-blue);
	font-size: 0.85rem;
}

.ipc-program-courses {
	margin: 0 0 20px;
	font-size: 0.89rem;
	line-height: 1.85;
	color: var(--ipc-gray);
}

.ipc-program-cta {
	margin: auto 0 0;
	align-self: flex-start;
}

.ipc-button-outline {
	background: transparent;
	border: 1px solid var(--ipc-navy);
	color: var(--ipc-navy);
	padding: 10px 20px;
	border-radius: 999px;
}

.ipc-button-outline:hover {
	background: var(--ipc-navy);
	color: #fff;
}

.ipc-requirements {
	margin: 0;
	padding: 0;
	list-style: none;
	counter-reset: ipc-req;
}

.ipc-requirements li {
	position: relative;
	counter-increment: ipc-req;
	margin: 0 0 12px;
	padding: 16px 18px;
	padding-inline-start: 60px;
	background: #fff;
	border-radius: var(--ipc-radius);
	box-shadow: var(--ipc-shadow);
	font-size: 0.98rem;
	line-height: 1.9;
	color: var(--ipc-ink);
}

.ipc-requirements li::before {
	content: counter(ipc-req);
	position: absolute;
	inset-block-start: 16px;
	inset-inline-start: 18px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: var(--ipc-navy);
	color: #fff;
	font-size: 0.85rem;
	font-weight: 700;
}

.ipc-highlight {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	margin: 22px 0 0;
	padding: 16px 20px;
	background: rgba(var(--ipc-gold-rgb), 0.12);
	border: 1px solid rgba(var(--ipc-gold-rgb), 0.4);
	border-radius: var(--ipc-radius);
	font-size: 0.97rem;
	line-height: 1.9;
	color: #7a6534;
}

.ipc-highlight i {
	flex: 0 0 auto;
	margin-top: 4px;
}

.ipc-research-box {
	height: 100%;
	margin: 0;
	padding: 24px 20px;
	background: #fff;
	border: 1px solid var(--ipc-border);
	border-radius: var(--ipc-radius-lg);
}

.ipc-research-icon {
	margin: 0 0 12px;
	color: var(--ipc-blue);
	font-size: 1.5rem;
}

.ipc-research-box h3 {
	margin: 0 0 8px;
	font-size: 1.05rem;
	font-weight: 700;
	color: var(--ipc-navy);
	text-transform: none;
	letter-spacing: 0;
}

.ipc-research-box p {
	margin: 0;
	font-size: 0.94rem;
	line-height: 1.85;
	color: var(--ipc-gray);
}

.ipc-subheading {
	margin: 0 0 14px;
	font-size: 1.1rem;
	font-weight: 700;
	color: var(--ipc-navy);
}

.ipc-values {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.ipc-values li {
	margin: 0;
	padding: 7px 16px;
	background: var(--ipc-light);
	border: 1px solid var(--ipc-border);
	border-radius: 999px;
	font-size: 0.9rem;
	color: var(--ipc-navy);
}

/* --------------------------------------------------------------------------
 * 8c. Closing call to action
 * ----------------------------------------------------------------------- */

.ipc-section-cta {
	background: linear-gradient(135deg, #2c4a75 0%, #3878a3 100%);
}

.ipc-cta-inner {
	max-width: 820px;
	margin-inline: auto;
	text-align: center;
}

.ipc-cta-title {
	margin: 0 0 14px;
	font-size: clamp(1.5rem, 1.2rem + 1.2vw, 2.1rem);
	font-weight: 700;
	color: #fff;
}

.ipc-section-cta .ipc-divider {
	margin-inline: auto;
	margin-bottom: 18px;
}

.ipc-cta-text {
	margin: 0 0 26px;
	font-size: 1.02rem;
	line-height: 1.95;
	color: rgba(255, 255, 255, 0.86);
}

.ipc-cta-actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 12px;
}

.ipc-button-ghost {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	margin: 0;
	padding: 11px 20px;
	background: rgba(255, 255, 255, 0.12);
	border: 1px solid rgba(255, 255, 255, 0.35);
	border-radius: 999px;
	color: #fff;
	font-size: 0.94rem;
	font-weight: 600;
}

.ipc-button-ghost:hover {
	background: #fff;
	border-color: #fff;
	color: var(--ipc-navy);
}

.ipc-cta-address {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	margin: 22px 0 0;
	font-size: 0.92rem;
	color: rgba(255, 255, 255, 0.75);
}

/* --------------------------------------------------------------------------
 * 9. Counters
 * ----------------------------------------------------------------------- */

.ipc-stat {
	color: #fff;
}

.ipc-stat-icon {
	display: block;
	margin-bottom: 10px;
	font-size: 1.6rem;
	color: var(--ipc-gold);
}

.ipc-stat-value {
	display: flex;
	align-items: baseline;
	justify-content: center;
	gap: 2px;
	font-family: var(--ipc-font-heading);
	font-size: clamp(1.8rem, 1.2rem + 1.8vw, 2.6rem);
	font-weight: 800;
	color: #fff;
}

.ipc-stat-suffix {
	color: var(--ipc-gold);
}

.ipc-stat-label {
	margin: 8px 0 0;
	font-size: 0.95rem;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.82);
}

/* --------------------------------------------------------------------------
 * 10. Programs table
 * ----------------------------------------------------------------------- */

.ipc-table-wrap {
	width: 100%;
	overflow-x: auto;
	border-radius: var(--ipc-radius);
	box-shadow: var(--ipc-shadow);
	-webkit-overflow-scrolling: touch;
}

.ipc-table {
	width: 100%;
	min-width: 620px;
	border-collapse: collapse;
	background: #fff;
	margin: 0;
}

.ipc-table th,
.ipc-table td {
	padding: 14px 18px;
	text-align: start;
	font-size: 0.96rem;
	border-bottom: 1px solid var(--ipc-border);
}

.ipc-table thead th {
	background: var(--ipc-navy);
	color: #fff;
	font-weight: 700;
	border-bottom: 0;
}

.ipc-table tbody th {
	font-weight: 700;
	color: var(--ipc-navy);
	background: rgba(var(--ipc-navy-rgb), 0.04);
}

.ipc-table tbody tr:last-child th,
.ipc-table tbody tr:last-child td {
	border-bottom: 0;
}

/* --------------------------------------------------------------------------
 * 11. Partners
 * ----------------------------------------------------------------------- */

/*
 * One card per partner, side by side.
 *
 * The partnerships used to be a three-column table, which forced a
 * relationship type and a paragraph of explanation into cells narrow enough to
 * read as a list of equivalent logos. Different relationship types are the one
 * thing this section exists to keep distinct, so each partner gets the room to
 * state its own: mark, Arabic name, official name, relationship, and what the
 * agreement actually covers, in that order.
 *
 * Stacking them full width gave each that room and cost the section a whole
 * screen of scrolling for three partners — a reader had to travel past two of
 * them to learn there was a third. As columns the section is roughly its
 * tallest card instead of the sum of all three, and the three relationships are
 * visible at once, which is the comparison the page is actually for.
 *
 * auto-fit rather than a fixed column count: the same cards render inside the
 * partnerships section and inside a narrower information-page section, and the
 * track count has to follow whichever container it lands in.
 */
.ipc-partner-cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	align-items: stretch;
	gap: 20px;
	margin: 24px 0 0;
	padding: 0;
	list-style: none;
}

.ipc-partner-card {
	display: flex;
	flex-direction: column;
	margin: 0;
	padding: 22px 22px 24px;
	background: #fff;
	border: 1px solid var(--ipc-border);
	border-radius: var(--ipc-radius-lg);
	text-align: start;
	transition: var(--ipc-transition);
}

.ipc-partner-card:hover {
	box-shadow: var(--ipc-shadow-hover);
	border-color: rgba(var(--ipc-gold-rgb), 0.45);
}

/*
 * The mark gets the full width of its column and a fixed band height, so three
 * logos drawn at three different aspect ratios still line their names up.
 */
.ipc-partner-logo {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 96px;
	margin-bottom: 16px;
	padding-bottom: 16px;
	border-bottom: 1px solid var(--ipc-border);
}

.ipc-partner-logo img {
	max-height: 88px;
	max-width: 100%;
	width: auto;
	object-fit: contain;
}

.ipc-partner-logo a {
	display: inline-flex;
	border-radius: var(--ipc-radius);
	transition: var(--ipc-transition);
}

.ipc-partner-logo a:hover img,
.ipc-partner-logo a:focus-visible img {
	opacity: 0.85;
}

/* The heading block is centred over the paragraph, which is not. */
.ipc-partner-card-body {
	display: flex;
	flex-direction: column;
	flex: 1 1 auto;
}

.ipc-partner-name {
	margin: 0 0 4px;
	font-size: 1.08rem;
	font-weight: 700;
	line-height: 1.6;
	color: var(--ipc-navy);
	text-align: center;
}

/*
 * The official name is Latin or Turkish script inside an RTL paragraph. It is
 * wrapped in .ipc-ltr-value, which isolates its direction without pulling the
 * line away from the Arabic name above it.
 */
.ipc-partner-official {
	margin: 0 0 12px;
	font-size: 0.9rem;
	color: var(--ipc-gray);
	text-align: center;
}

.ipc-partner-relation {
	margin: 0 0 12px;
	text-align: center;
}

/*
 * An Arabic paragraph of this length is not centred: a ragged centre axis over
 * eight lines is measurably slower to read than a straight one.
 */
.ipc-partner-desc {
	margin: 0;
	font-size: 0.92rem;
	line-height: 1.85;
	color: var(--ipc-gray);
	text-align: start;
}

/* The tag wraps in a column; only the table it came from needed it on one line. */
.ipc-partner-card .ipc-relation-tag {
	white-space: normal;
}

@media (max-width: 575.98px) {
	.ipc-partner-card {
		padding: 20px 18px;
	}

	.ipc-partner-logo {
		min-height: 84px;
	}

	.ipc-partner-logo img {
		max-height: 76px;
	}
}

.ipc-partner-strip {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 18px 40px;
	margin: 40px 0 0;
	padding: 22px 0 0;
	border-top: 1px solid var(--ipc-border);
	list-style: none;
}

.ipc-partner-strip li {
	margin: 0;
	padding: 0;
	border: 0;
}

.ipc-partner-strip img {
	max-height: 52px;
	width: auto;
	opacity: 0.7;
	filter: grayscale(1);
	transition: var(--ipc-transition);
}

.ipc-partner-strip img:hover {
	opacity: 1;
	filter: none;
}

/* --------------------------------------------------------------------------
 * 12. Faculty and testimonials
 * ----------------------------------------------------------------------- */

.ipc-member {
	height: 100%;
	padding: 0 0 20px;
	background: #fff;
	border-radius: var(--ipc-radius-lg);
	overflow: hidden;
	box-shadow: var(--ipc-shadow);
	text-align: center;
}

.ipc-member-image img {
	width: 100%;
	height: auto;
	border-radius: 0;
}

.ipc-member-desc {
	padding: 18px 20px 0;
}

.ipc-member-desc h4 {
	margin: 0 0 4px;
	font-size: 1.08rem;
	font-weight: 700;
	color: var(--ipc-navy);
}

.ipc-member-desc .team-title span {
	display: block;
	font-size: 0.9rem;
	color: var(--ipc-gold);
}

.ipc-member-bio {
	margin: 12px 0 0;
	font-size: 0.93rem;
	line-height: 1.85;
	color: var(--ipc-gray);
}

.ipc-quote {
	margin: 0;
	padding: 26px 24px;
	background: #fff;
	border: 1px solid var(--ipc-border);
	border-radius: var(--ipc-radius-lg);
	box-shadow: var(--ipc-shadow);
}

.ipc-quote-text {
	margin: 0 0 18px;
	padding: 0;
	border: 0;
}

.ipc-quote-text p {
	margin: 0;
	font-size: 0.99rem;
	line-height: 1.95;
	color: var(--ipc-ink);
}

.ipc-quote-author {
	display: flex;
	align-items: center;
	gap: 12px;
}

.ipc-quote-avatar {
	width: 46px;
	height: 46px;
	border-radius: 50%;
	object-fit: cover;
}

.ipc-quote-meta strong {
	display: block;
	font-size: 0.97rem;
	color: var(--ipc-navy);
}

.ipc-quote-meta small {
	color: var(--ipc-gray);
}

/* --------------------------------------------------------------------------
 * 13. FAQ
 * ----------------------------------------------------------------------- */

.ipc-faqs .ipc-faq-item {
	margin-bottom: 12px;
	background: #fff;
	border: 1px solid var(--ipc-border);
	border-radius: var(--ipc-radius);
	overflow: hidden;
}

.ipc-faq-question {
	display: flex;
	align-items: center;
	gap: 12px;
	width: 100%;
	margin: 0;
	padding: 18px 20px;
	background: none;
	border: 0;
	font-family: var(--ipc-font-heading);
	font-size: 1.02rem;
	font-weight: 700;
	color: var(--ipc-navy);
	text-align: start;
	cursor: pointer;
}

.ipc-faq-question:hover {
	background: var(--ipc-light);
}

.ipc-faq-question .toggle-icon {
	flex: 0 0 auto;
	padding: 0;
	color: var(--ipc-gold);
}

.ipc-faq-question .toggle-title {
	flex: 1 1 auto;
	padding: 0;
}

/* Canvas hides .toggle-content by default; this reveals the open panel. */
.toggle.toggle-active > .toggle-content {
	display: block;
}

.ipc-faq-answer {
	padding: 0 20px 20px;
	font-size: 0.98rem;
	line-height: 1.95;
	color: var(--ipc-gray);
}

.ipc-faq-answer p:last-child {
	margin-bottom: 0;
}

/* --------------------------------------------------------------------------
 * 14. Registration form
 * ----------------------------------------------------------------------- */

.ipc-form-widget {
	padding: 34px 30px;
	background: #fff;
	border: 1px solid var(--ipc-border);
	border-radius: var(--ipc-radius-lg);
	box-shadow: var(--ipc-shadow);
}

.ipc-lead-form .form-group {
	margin-bottom: 18px;
}

.ipc-lead-form label {
	display: block;
	margin-bottom: 6px;
	font-size: 0.94rem;
	font-weight: 600;
	color: var(--ipc-ink);
}

.ipc-lead-form label small {
	color: #c0392b;
}

.ipc-lead-form .form-control,
.ipc-lead-form .form-select {
	width: 100%;
	padding: 12px 14px;
	font-family: var(--ipc-font-body);
	font-size: 0.98rem;
	color: var(--ipc-ink);
	background: #fff;
	border: 1px solid var(--ipc-border);
	border-radius: 10px;
	transition: var(--ipc-transition);
}

.ipc-lead-form .form-control:focus,
.ipc-lead-form .form-select:focus {
	outline: none;
	border-color: var(--ipc-blue);
	box-shadow: 0 0 0 3px rgba(var(--ipc-blue-rgb), 0.15);
}

.ipc-ltr-input {
	direction: ltr;
	text-align: start;
	unicode-bidi: isolate;
}

.ipc-lead-form .is-invalid {
	border-color: #c0392b;
}

.ipc-field-error {
	display: none;
	margin-top: 5px;
	font-size: 0.85rem;
	color: #c0392b;
}

.ipc-field-error.is-visible {
	display: block;
}

/*
 * The counter under the optional motivation field. Present from the first
 * keystroke rather than appearing at the limit, where it would read as a
 * rejection rather than as a hint about the length expected.
 */
.ipc-field-count {
	display: block;
	margin-top: 5px;
	font-size: 0.8rem;
	color: var(--ipc-gray);
	text-align: end;

	/*
	 * The count reads left to right inside an RTL paragraph, but the block
	 * itself still follows the page, so isolation without a forced direction.
	 */
	unicode-bidi: isolate;
}

.ipc-field-count.is-full {
	color: #c0392b;
	font-weight: 600;
}

.ipc-hp {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	white-space: nowrap;
}

.ipc-form-note {
	margin: 4px 0 18px;
	padding: 12px 16px;
	background: var(--ipc-light);
	border-inline-start: 3px solid var(--ipc-gold);
	border-radius: 8px;
	font-size: 0.9rem;
	line-height: 1.85;
	color: var(--ipc-gray);
}

.ipc-form-actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 16px;
}

.ipc-form-privacy {
	font-size: 0.9rem;
	color: var(--ipc-gray);
	text-decoration: underline;
}

.ipc-form-result {
	display: none;
	width: 100%;
	margin: 0 0 18px;
	padding: 12px 16px;
	border-radius: 10px;
	font-size: 0.94rem;
}

.ipc-form-result.is-visible {
	display: block;
}

.ipc-form-result.is-error {
	background: rgba(192, 57, 43, 0.08);
	border: 1px solid rgba(192, 57, 43, 0.3);
	color: #a93226;
}

.ipc-form-success {
	padding: 34px 20px;
	text-align: center;
}

.ipc-form-success i {
	font-size: 2.6rem;
	color: #2e7d5b;
}

.ipc-form-success-title {
	margin: 16px 0 10px;
	font-size: 1.35rem;
	font-weight: 700;
	color: var(--ipc-navy);
}

.ipc-form-success-text {
	margin: 0;
	font-size: 1rem;
	line-height: 1.9;
	color: var(--ipc-gray);
}

.ipc-lead-form.is-busy {
	opacity: 0.65;
	pointer-events: none;
}

/* --------------------------------------------------------------------------
 * 15. Page title, cards, 404, search
 * ----------------------------------------------------------------------- */

.ipc-page-title {
	margin: 0;
	padding: 46px 0 34px;
	background: var(--ipc-light);
	border-bottom: 1px solid var(--ipc-border);
	text-align: center;
}

.ipc-page-title-heading {
	margin: 0 0 14px;
	font-size: clamp(1.5rem, 1.2rem + 1.2vw, 2.1rem);
	font-weight: 700;
	color: var(--ipc-navy);
}

.ipc-post-card {
	height: 100%;
	background: #fff;
	border: 1px solid var(--ipc-border);
	border-radius: var(--ipc-radius-lg);
	overflow: hidden;
	box-shadow: var(--ipc-shadow);
}

.ipc-post-card-media img {
	width: 100%;
	height: auto;
	display: block;
}

.ipc-post-card-body {
	padding: 20px 22px 24px;
}

.ipc-post-card-title {
	margin: 6px 0 10px;
	font-size: 1.1rem;
	font-weight: 700;
}

.ipc-post-card-title a {
	color: var(--ipc-navy);
}

.ipc-post-card-excerpt {
	margin: 0 0 14px;
	font-size: 0.95rem;
	line-height: 1.85;
	color: var(--ipc-gray);
}

.ipc-post-card-more {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 0.92rem;
	font-weight: 600;
}

.ipc-entry-meta {
	margin: 0;
	font-size: 0.85rem;
	color: var(--ipc-gray);
}

.ipc-404-code {
	margin: 0;
	font-size: clamp(4rem, 3rem + 6vw, 8rem);
	font-weight: 800;
	line-height: 1;
	color: rgba(var(--ipc-navy-rgb), 0.12);
}

.ipc-404-title {
	margin: 0 0 14px;
	color: var(--ipc-navy);
}

.ipc-404-text {
	margin: 0 0 26px;
	color: var(--ipc-gray);
}

.ipc-404-search,
.ipc-search-form-wrap {
	max-width: 480px;
	margin: 0 auto 30px;
}

.ipc-search-form {
	display: flex;
	gap: 8px;
}

.ipc-search-form .form-control {
	flex: 1 1 auto;
	padding: 11px 14px;
	border: 1px solid var(--ipc-border);
	border-radius: 10px;
}

.ipc-search-form .button {
	margin: 0;
	padding: 11px 18px;
	background: var(--ipc-navy);
	color: #fff;
	border-radius: 10px;
}

.ipc-empty {
	padding: 40px 0;
	text-align: center;
	color: var(--ipc-gray);
}

.ipc-sidebar .widget {
	margin-bottom: 26px;
	padding: 20px;
	background: var(--ipc-light);
	border-radius: var(--ipc-radius);
}

/* --------------------------------------------------------------------------
 * 16. Footer (Rule 18)
 * ----------------------------------------------------------------------- */

#footer.ipc-footer {
	margin: 0;
	padding: 56px 0 0;
	background: var(--ipc-navy);
	border: 0;
	color: rgba(255, 255, 255, 0.82);
}

.ipc-footer-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 36px;
	padding-bottom: 44px;
}

.ipc-footer-logo {
	max-height: 64px;
	width: auto;
	margin-bottom: 16px;
}

.ipc-footer-title {
	margin: 0 0 10px;
	font-size: 1.15rem;
	font-weight: 700;
	color: #fff;
}

.ipc-footer-tagline {
	margin: 0;
	font-size: 0.95rem;
	line-height: 1.9;
	color: rgba(255, 255, 255, 0.72);
}

.ipc-footer h4 {
	margin: 0 0 16px;
	font-size: 1rem;
	font-weight: 700;
	color: #fff;
}

.ipc-footer-menu,
.ipc-contact-list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.ipc-footer-menu li,
.ipc-contact-list li {
	margin: 0 0 10px;
	padding: 0;
	list-style: none;
}

.ipc-footer-menu li::marker,
.ipc-contact-list li::marker {
	content: none;
}

.ipc-footer-menu a {
	font-size: 0.95rem;
	color: rgba(255, 255, 255, 0.78);
}

.ipc-footer-menu a:hover {
	color: var(--ipc-gold);
}

.ipc-contact-list li {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 0.95rem;
}

.ipc-contact-list i {
	flex: 0 0 auto;
	width: 18px;
	color: var(--ipc-gold);
	text-align: center;
}

.ipc-contact-list a {
	color: rgba(255, 255, 255, 0.85);
}

.ipc-contact-list a:hover {
	color: var(--ipc-gold);
}

.ipc-social {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 18px;
}

.ipc-social-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.1);
	color: #fff;
	transition: var(--ipc-transition);
}

.ipc-social-icon:hover {
	background: var(--ipc-gold);
	color: #fff;
}

.ipc-copyrights {
	margin: 0;
	padding: 18px 0;
	background: rgba(0, 0, 0, 0.18);
	border: 0;
	text-align: center;
}

.ipc-copyrights p {
	margin: 0;
	font-size: 0.88rem;
	color: rgba(255, 255, 255, 0.7);
}

/* LTR values inside an RTL layout (Rule 17). */
.ipc-ltr-value {
	direction: ltr;
	unicode-bidi: isolate;
	display: inline-block;
}

/* --------------------------------------------------------------------------
 * 17. Floating actions — must never sit on top of the footer (Rule 18)
 * ----------------------------------------------------------------------- */

.ipc-floating {
	position: fixed;
	inset-inline-end: 20px;
	z-index: 300;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	border: 0;
	border-radius: 50%;
	color: #fff;
	font-size: 1.35rem;
	cursor: pointer;
	box-shadow: var(--ipc-shadow-hover);
	transition: bottom 0.25s ease, transform 0.25s ease, opacity 0.25s ease;
}

.ipc-floating-whatsapp {
	bottom: calc(24px + var(--ipc-footer-lift, 0px));
	background: #25d366;
}

.ipc-floating-top {
	bottom: calc(86px + var(--ipc-footer-lift, 0px));
	background: var(--ipc-navy);
	opacity: 0;
	visibility: hidden;
	font-size: 1rem;
}

.ipc-floating-top.is-visible {
	opacity: 1;
	visibility: visible;
}

.ipc-floating:hover {
	transform: translateY(-3px);
	color: #fff;
}

/* --------------------------------------------------------------------------
 * 17b. Consent banner
 * ----------------------------------------------------------------------- */

.ipc-consent {
	position: fixed;
	inset-inline: 0;
	bottom: 0;
	z-index: 400;
	background: #fff;
	border-top: 4px solid var(--ipc-gold);
	box-shadow: 0 -8px 30px rgba(27, 42, 61, 0.18);
	font-family: var(--ipc-font-body);
}

.ipc-consent[hidden] {
	display: none;
}

.ipc-consent-inner {
	max-width: 1140px;
	margin-inline: auto;
	padding: 20px 22px;
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 14px 28px;
	align-items: center;
}

.ipc-consent-title {
	margin: 0 0 6px;
	font-size: 1.02rem;
	font-weight: 700;
	color: var(--ipc-navy);
}

.ipc-consent-text {
	margin: 0;
	font-size: 0.93rem;
	line-height: 1.85;
	color: var(--ipc-gray);
}

.ipc-consent-link {
	margin: 6px 0 0;
	font-size: 0.88rem;
}

.ipc-consent-link a {
	color: var(--ipc-blue);
	text-decoration: underline;
}

.ipc-consent-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: flex-end;
}

.ipc-consent-button {
	appearance: none;
	border: 1px solid var(--ipc-border);
	background: #fff;
	color: var(--ipc-navy);
	font-family: var(--ipc-font-heading);
	font-size: 0.92rem;
	font-weight: 600;
	letter-spacing: 0;
	padding: 10px 20px;
	border-radius: 999px;
	cursor: pointer;
	transition: var(--ipc-transition);
	white-space: nowrap;
}

.ipc-consent-button:hover {
	border-color: var(--ipc-navy);
	background: var(--ipc-light);
}

.ipc-consent-accept,
.ipc-consent-save {
	background: var(--ipc-gold);
	border-color: var(--ipc-gold);
	color: #fff;
}

.ipc-consent-accept:hover,
.ipc-consent-save:hover {
	background: var(--ipc-navy);
	border-color: var(--ipc-navy);
	color: #fff;
}

.ipc-consent-panel {
	grid-column: 1 / -1;
	margin-top: 4px;
	padding-top: 16px;
	border-top: 1px solid var(--ipc-border);
}

.ipc-consent-panel[hidden] {
	display: none;
}

.ipc-consent-options {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 16px;
	margin: 0 0 16px;
	padding: 0;
	list-style: none;
}

.ipc-consent-option {
	margin: 0;
	padding: 14px 16px;
	background: var(--ipc-light);
	border-radius: var(--ipc-radius);
}

.ipc-consent-option label {
	display: flex;
	align-items: center;
	gap: 9px;
	margin-bottom: 6px;
	cursor: pointer;
}

.ipc-consent-option-name {
	font-weight: 700;
	font-size: 0.95rem;
	color: var(--ipc-navy);
}

.ipc-consent-option p {
	margin: 0;
	font-size: 0.86rem;
	line-height: 1.8;
	color: var(--ipc-gray);
}

.ipc-consent-panel-actions {
	display: flex;
	justify-content: flex-end;
}

.ipc-consent-manage {
	appearance: none;
	background: none;
	border: 0;
	display: inline-flex;
	align-items: center;
	gap: 7px;
	margin: 0 0 8px;
	padding: 0;
	font-family: var(--ipc-font-body);
	font-size: 0.85rem;
	color: rgba(255, 255, 255, 0.7);
	cursor: pointer;
}

.ipc-consent-manage:hover {
	color: var(--ipc-gold);
}

/* Keep the floating actions clear of the banner while it is open. */
body.ipc-consent-open .ipc-floating-whatsapp {
	bottom: calc(24px + var(--ipc-footer-lift, 0px) + 150px);
}

body.ipc-consent-open .ipc-floating-top {
	bottom: calc(86px + var(--ipc-footer-lift, 0px) + 150px);
}

@media (max-width: 767.98px) {
	.ipc-consent-inner {
		grid-template-columns: 1fr;
		padding: 16px 18px;
	}

	.ipc-consent-actions {
		justify-content: stretch;
	}

	.ipc-consent-button {
		flex: 1 1 auto;
		padding: 11px 14px;
		font-size: 0.88rem;
	}
}

/* --------------------------------------------------------------------------
 * 17c. Privacy policy document
 * ----------------------------------------------------------------------- */

.ipc-privacy-head {
	padding: 52px 0 40px;
	background: var(--ipc-navy);
	color: #fff;
	text-align: center;
}

.ipc-privacy-title {
	margin: 0 0 14px;
	font-size: clamp(1.6rem, 1.2rem + 1.4vw, 2.2rem);
	font-weight: 700;
	color: #fff;
}

.ipc-privacy-head .ipc-divider {
	margin-inline: auto;
	margin-bottom: 16px;
}

.ipc-privacy-subtitle {
	max-width: 640px;
	margin: 0 auto 20px;
	font-size: 1rem;
	line-height: 1.9;
	color: rgba(255, 255, 255, 0.82);
}

.ipc-privacy-meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 12px 18px;
	margin: 0;
}

.ipc-privacy-print {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 6px 16px;
	background: transparent;
	border: 1px solid var(--ipc-gold);
	border-radius: 999px;
	color: var(--ipc-gold);
	font-family: var(--ipc-font-body);
	font-size: 0.88rem;
	cursor: pointer;
	transition: var(--ipc-transition);
}

.ipc-privacy-print:hover {
	background: var(--ipc-gold);
	color: #fff;
}

.ipc-privacy-layout {
	align-items: flex-start;
}

/* Distance from the top of the viewport, allowing for the sticky site header.
   The admin bar shifts everything down when it is present. */
.ipc-doc {
	--ipc-toc-top: 96px;
}

body.admin-bar .ipc-doc {
	--ipc-toc-top: 128px;
}

.ipc-privacy-aside {
	/* Without this the column stretches to the full row height and the sticky
	   element has no room left to travel. */
	align-self: flex-start;
}

.ipc-toc {
	position: sticky;
	top: var(--ipc-toc-top);
	align-self: flex-start;
	/* The scrollbar belongs to the sticky element itself, never to an ancestor,
	   and only appears when the list genuinely outgrows the viewport. */
	max-height: calc(100vh - var(--ipc-toc-top) - 24px);
	overflow-y: auto;
	padding: 20px 22px;
	background: var(--ipc-light);
	border: 1px solid var(--ipc-border);
	border-radius: var(--ipc-radius-lg);
}

.ipc-toc-toggle {
	display: none;
	align-items: center;
	gap: 9px;
	width: 100%;
	padding: 0;
	background: none;
	border: 0;
	font-family: var(--ipc-font-heading);
	font-size: 1rem;
	font-weight: 700;
	color: var(--ipc-navy);
	cursor: pointer;
	text-align: start;
}

.ipc-toc-list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.ipc-toc-list li {
	margin: 0;
	padding: 0;
	list-style: none;
}

.ipc-toc-list a {
	display: flex;
	align-items: baseline;
	gap: 10px;
	padding: 8px 10px;
	border-radius: 8px;
	font-size: 0.92rem;
	line-height: 1.6;
	color: var(--ipc-gray);
	border-inline-start: 3px solid transparent;
	transition: var(--ipc-transition);
}

.ipc-toc-list a:hover {
	color: var(--ipc-navy);
	background: #fff;
}

.ipc-toc-list a.is-active {
	color: var(--ipc-navy);
	background: #fff;
	border-inline-start-color: var(--ipc-gold);
	font-weight: 600;
}

.ipc-toc-number {
	flex: 0 0 auto;
	min-width: 22px;
	font-variant-numeric: tabular-nums;
	font-weight: 700;
	color: var(--ipc-gold);
}

.ipc-privacy-content {
	max-width: 820px;
}

.ipc-privacy-intro {
	margin-bottom: 34px;
	padding-bottom: 26px;
	border-bottom: 1px solid var(--ipc-border);
	font-size: 1.03rem;
}

.ipc-privacy-section {
	margin-bottom: 40px;
	scroll-margin-top: calc(var(--ipc-toc-top, 96px) + 8px);
}

.ipc-privacy-heading {
	display: flex;
	align-items: center;
	gap: 14px;
	margin: 0 0 16px;
	font-size: 1.2rem;
	font-weight: 700;
	line-height: 1.6;
	color: var(--ipc-navy);
}

.ipc-privacy-number {
	flex: 0 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background: rgba(var(--ipc-gold-rgb), 0.16);
	border: 1px solid rgba(var(--ipc-gold-rgb), 0.45);
	color: #8a7440;
	font-size: 0.95rem;
	font-variant-numeric: tabular-nums;
}

.ipc-privacy-section .ipc-entry {
	font-size: 1rem;
	line-height: 1.9;
}

.ipc-privacy-section .ipc-entry ul,
.ipc-privacy-section .ipc-entry ol {
	padding-inline-start: 22px;
}

.ipc-privacy-section .ipc-entry li {
	margin-bottom: 8px;
}

.ipc-privacy-table-wrap {
	margin-top: 18px;
}

.ipc-privacy-table tbody tr:nth-child(even) th,
.ipc-privacy-table tbody tr:nth-child(even) td {
	background: var(--ipc-light);
}

.ipc-privacy-table th,
.ipc-privacy-table td {
	font-size: 0.93rem;
	line-height: 1.75;
	vertical-align: top;
}

.ipc-privacy-contact {
	margin-top: 44px;
	padding: 26px 24px;
	background: var(--ipc-light);
	border: 1px solid var(--ipc-border);
	border-inline-start: 4px solid var(--ipc-gold);
	border-radius: var(--ipc-radius-lg);
}

.ipc-privacy-contact-title {
	margin: 0 0 16px;
	font-size: 1.1rem;
	font-weight: 700;
	color: var(--ipc-navy);
}

.ipc-privacy-contact-list {
	margin: 0 0 18px;
	padding: 0;
	list-style: none;
}

.ipc-privacy-contact-list li {
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 0 0 10px;
	font-size: 0.96rem;
	color: var(--ipc-ink);
}

.ipc-privacy-contact-list i {
	flex: 0 0 auto;
	width: 18px;
	color: var(--ipc-gold);
	text-align: center;
}

.ipc-privacy-contact-actions {
	margin: 0;
}

@media (max-width: 991.98px) {
	/* Single column: nothing to stick to, so the panel becomes a plain
	   collapsible block with no height cap and no inner scrollbar. */
	.ipc-toc {
		position: static;
		max-height: none;
		overflow: visible;
		padding: 14px 18px;
	}

	.ipc-toc-toggle {
		display: flex;
	}

	.ipc-toc-list {
		display: none;
		margin-top: 12px;
	}

	.ipc-toc-list.is-open {
		display: block;
	}
}

/* --------------------------------------------------------------------------
 * 17c-2. Information pages — breadcrumb, related strip, shared blocks
 * ----------------------------------------------------------------------- */

.ipc-breadcrumb {
	margin: 0 0 16px;
	font-size: 0.86rem;
}

.ipc-breadcrumb ol {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.ipc-breadcrumb li {
	display: flex;
	align-items: center;
	gap: 8px;
	color: rgba(255, 255, 255, 0.72);
}

.ipc-breadcrumb li + li::before {
	content: "/";
	color: rgba(255, 255, 255, 0.4);
}

.ipc-breadcrumb a {
	color: rgba(255, 255, 255, 0.9);
	text-decoration: underline;
}

.ipc-breadcrumb a:hover {
	color: var(--ipc-gold);
}

.ipc-related {
	margin-top: 44px;
	padding: 24px 22px;
	background: var(--ipc-light);
	border: 1px solid var(--ipc-border);
	border-radius: var(--ipc-radius-lg);
}

/* On a landing page the strip is already a section, so it needs no extra gap. */
.ipc-section-related .ipc-related {
	margin-top: 0;
}

.ipc-related-title {
	margin: 0 0 14px;
	font-size: 1.05rem;
	font-weight: 700;
	color: var(--ipc-navy);
}

.ipc-related-list {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 10px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.ipc-related-list li {
	margin: 0;
	padding: 0;
}

.ipc-related-list a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	padding: 11px 16px;
	background: #fff;
	border: 1px solid var(--ipc-border);
	border-radius: var(--ipc-radius);
	font-size: 0.95rem;
	font-weight: 600;
	color: var(--ipc-navy);
	transition: var(--ipc-transition);
}

.ipc-related-list a:hover {
	border-color: var(--ipc-gold);
	transform: translateY(-2px);
}

.ipc-related-list i {
	font-size: 0.8rem;
	color: var(--ipc-gold);
}

.ipc-relation-tag {
	display: inline-block;
	padding: 4px 12px;
	background: rgba(var(--ipc-gold-rgb), 0.12);
	border: 1px solid rgba(var(--ipc-gold-rgb), 0.35);
	border-radius: 999px;
	font-size: 0.84rem;
	font-weight: 700;
	color: #8a7440;
	white-space: nowrap;
}

.ipc-info-faqs {
	margin-top: 18px;
}

.ipc-shared-certificate,
.ipc-shared-admission,
.ipc-shared-studymode {
	margin-top: 18px;
}

.ipc-shared-recognition {
	margin-top: 18px;
}

.ipc-section-cta.ipc-shared-cta {
	margin-top: 0;
}

/* --------------------------------------------------------------------------
 * 17d. Print — a clean legal document
 * ----------------------------------------------------------------------- */

@media print {
	#header,
	#footer,
	.ipc-consent,
	.ipc-floating,
	.ipc-privacy-aside,
	.ipc-privacy-print,
	.ipc-privacy-contact-actions,
	.ipc-related,
	.ipc-breadcrumb,
	.ipc-section-cta,
	.skip-link {
		display: none !important;
	}

	/* Questions print open: a folded answer is invisible on paper. */
	.ipc-info-faqs .toggle-content {
		display: block !important;
	}

	.ipc-info-faqs .toggle-icon {
		display: none !important;
	}

	body {
		background: #fff !important;
		color: #000 !important;
		font-size: 11pt;
	}

	.ipc-privacy-head {
		padding: 0 0 16pt;
		background: none !important;
		color: #000 !important;
		text-align: start;
		border-bottom: 1pt solid #000;
	}

	.ipc-privacy-title,
	.ipc-privacy-heading,
	.ipc-privacy-contact-title {
		color: #000 !important;
	}

	.ipc-privacy-subtitle {
		color: #000 !important;
	}

	.ipc-privacy-number {
		background: none !important;
		border: 1pt solid #000 !important;
		color: #000 !important;
	}

	.ipc-privacy-content {
		max-width: none;
	}

	.ipc-section,
	.ipc-privacy-body {
		padding: 0 !important;
	}

	.ipc-privacy-section {
		page-break-inside: avoid;
		margin-bottom: 14pt;
	}

	.ipc-table-wrap {
		overflow: visible !important;
		box-shadow: none !important;
	}

	.ipc-table {
		min-width: 0;
		border: 1pt solid #000;
	}

	.ipc-table thead th {
		background: none !important;
		color: #000 !important;
		border-bottom: 1pt solid #000;
	}

	.ipc-table th,
	.ipc-table td {
		border: 0.5pt solid #666;
		background: none !important;
	}

	.ipc-privacy-contact {
		background: none !important;
		border: 1pt solid #000;
	}

	a[href]::after {
		content: " (" attr(href) ")";
		font-size: 9pt;
	}

	a[href^="#"]::after {
		content: "";
	}
}

/* --------------------------------------------------------------------------
 * 18. Animations
 * ----------------------------------------------------------------------- */

.theme-animate,
.theme-animate-up,
.theme-animate-fade,
.theme-animate-zoom {
	opacity: 0;
	transition: opacity 0.6s ease, transform 0.6s ease;
}

.theme-animate,
.theme-animate-up { transform: translateY(30px); }
.theme-animate-zoom { transform: scale(0.96); }

.theme-animate.is-visible,
.theme-animate-up.is-visible,
.theme-animate-fade.is-visible,
.theme-animate-zoom.is-visible {
	opacity: 1;
	transform: translateY(0) scale(1);
}

.theme-animate-delay-1 { transition-delay: 0.1s; }
.theme-animate-delay-2 { transition-delay: 0.2s; }
.theme-animate-delay-3 { transition-delay: 0.3s; }

@media (prefers-reduced-motion: reduce) {
	.theme-animate,
	.theme-animate-up,
	.theme-animate-fade,
	.theme-animate-zoom {
		opacity: 1 !important;
		transform: none !important;
		transition: none !important;
	}

	.ipc-hero-scroll { animation: none; }
	.ipc-card:hover,
	.ipc-floating:hover { transform: none; }
}

/* --------------------------------------------------------------------------
 * 19. Small screens
 * ----------------------------------------------------------------------- */

@media (max-width: 767.98px) {
	:root { --ipc-section-padding: 56px 0; }

	.ipc-form-widget { padding: 24px 18px; }
	.ipc-trust-list { gap: 12px 22px; }
	.ipc-trust-item { font-size: 0.92rem; }
	.ipc-floating { width: 48px; height: 48px; }
}

/*
 * The programme figures table.
 *
 * Two columns of four short rows, so it needs none of the phone stacking the
 * four-column fee table needs: a label and a number fit side by side at 320px.
 * It borrows .ipc-table for its chrome so the two tables on a programme page
 * are recognisably the same object.
 */
.ipc-figures-wrap {
	margin-bottom: 32px;
}

.ipc-figures-table {
	min-width: 0;
	table-layout: fixed;
}

.ipc-figures-caption {
	padding: 14px 18px 0;
	font-size: 0.95rem;
	font-weight: 700;
	color: var(--ipc-navy);
	text-align: start;
	caption-side: top;
	background: #fff;
}

.ipc-figures-table th[scope="row"] {
	width: 60%;
	white-space: normal;
}

.ipc-figures-table td {
	font-weight: 700;
	color: var(--ipc-navy);
	font-variant-numeric: tabular-nums;
}

/* -------------------------------------------------------------------------
 * Two-stage fees and the study path (1.13.0)
 *
 * A stage title sits over each fee table and the computed whole-path line
 * closes the pair. The study path is a numbered list: gold markers joined by
 * a vertical rule, one stage per row, after the design the college supplied.
 * Logical properties throughout, so rtl.css has nothing to add.
 * ----------------------------------------------------------------------- */

.ipc-fees-stage-title {
	margin: 26px 0 12px;
	font-size: 20px;
	color: var(--ipc-navy);
}

.ipc-fees-stage-title:first-child {
	margin-top: 0;
}

.ipc-fees-combined {
	margin-top: 18px;
	padding: 12px 16px;
	background: rgba(var(--ipc-navy-rgb), 0.06);
	border-inline-start: 3px solid var(--ipc-gold);
	font-weight: 700;
	color: var(--ipc-navy);
}

.ipc-path {
	list-style: none;
	margin: 0;
	padding: 0;
}

.ipc-path-step {
	position: relative;
	display: flex;
	align-items: flex-start;
	gap: 18px;
	padding-block-end: 30px;
}

.ipc-path-step:last-child {
	padding-block-end: 0;
}

.ipc-path-step::before {
	content: "";
	position: absolute;
	inset-inline-start: 21px;
	top: 46px;
	bottom: -2px;
	width: 2px;
	background: rgba(var(--ipc-gold-rgb), 0.4);
}

.ipc-path-step:last-child::before {
	display: none;
}

.ipc-path-marker {
	flex: 0 0 44px;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: var(--ipc-gold);
	color: var(--ipc-white);
	font-weight: 700;
	font-size: 18px;
	line-height: 44px;
	text-align: center;
}

.ipc-path-body {
	padding-top: 7px;
}

.ipc-path-title {
	margin: 0 0 4px;
	font-size: 20px;
	color: var(--ipc-navy);
}

.ipc-path-meta {
	margin: 0;
	color: var(--ipc-gray);
}

/* -------------------------------------------------------------------------
 * Curriculum blocks on a two-stage page (1.13.1)
 * ----------------------------------------------------------------------- */

.ipc-curriculum-stage-title {
	margin: 40px 0 8px;
	font-size: 22px;
	color: var(--ipc-navy);
}

.ipc-curriculum-stage-title:first-of-type {
	margin-top: 0;
}

.ipc-curriculum-intro {
	margin: 0 0 22px;
	color: var(--ipc-gray);
}

.ipc-curriculum-contact {
	margin: 0 0 8px;
}

/* -------------------------------------------------------------------------
 * Partner agreement button (1.13.2)
 * ----------------------------------------------------------------------- */

.ipc-partner-agreement {
	margin: 14px 0 0;
}

.ipc-partner-agreement-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 14px;
	border: 1px solid rgba(var(--ipc-gold-rgb), 0.55);
	border-radius: 8px;
	color: var(--ipc-navy);
	font-size: 0.9rem;
	font-weight: 600;
	text-decoration: none;
	transition: var(--ipc-transition);
}

.ipc-partner-agreement-link:hover,
.ipc-partner-agreement-link:focus-visible {
	border-color: var(--ipc-gold);
	color: var(--ipc-gold);
}

.ipc-partner-agreement-link i {
	color: var(--ipc-gold);
}

/* -------------------------------------------------------------------------
 * Partner record agreements (1.14.0)
 *
 * Several labelled buttons per card; they wrap on narrow widths and each
 * stays its own tap target.
 * ----------------------------------------------------------------------- */

.ipc-partner-agreements {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}
