.iba-rh-header {
	background: var(--iba-navy);
	color: #ffffff;
	padding: 36px 24px 32px;
}

.iba-rh-header-inner {
	max-width: 1200px;
	margin: 0 auto;
}

.iba-rh-eyebrow {
	margin: 0 0 10px;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #b9cddc;
}

.iba-rh-header h1 {
	margin: 0;
	font-size: 28px;
	font-weight: 700;
	letter-spacing: -0.01em;
}

.iba-rh-page {
	padding: 32px 24px 64px;
}

.iba-rh-wrap {
	max-width: 1200px;
	margin: 0 auto;
}

/* Top-level intro */

.iba-rh-intro {
	margin-bottom: 40px;
}

.iba-rh-intro p {
	font-size: 16px;
	line-height: 1.65;
	color: var(--iba-text-muted);
	margin: 0 0 14px;
}

.iba-rh-intro p:last-child {
	margin-bottom: 0;
}

/* Group sections */

.iba-rh-group {
	margin-bottom: 48px;
}

.iba-rh-group:last-child {
	margin-bottom: 0;
}

.iba-rh-group-head {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 16px;
	border-bottom: 1px solid var(--iba-border);
	padding-bottom: 12px;
	margin-bottom: 18px;
}

.iba-rh-group-head h2 {
	margin: 0;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: var(--iba-navy);
}

.iba-rh-group-count {
	font-size: 12px;
	color: var(--iba-text-muted);
	white-space: nowrap;
}

.iba-rh-group-desc {
	margin: 0 0 22px;
}

.iba-rh-group-desc p {
	font-size: 14.5px;
	line-height: 1.6;
	color: var(--iba-text-muted);
	margin: 0 0 12px;
}

.iba-rh-group-desc p:last-child {
	margin-bottom: 0;
}

.iba-rh-group-desc em {
	font-style: italic;
}

/* Cards */

.iba-rh-cards {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
	gap: 18px;
}

.iba-rh-card {
	display: flex;
	flex-direction: column;
	gap: 12px;
	background: var(--iba-bg);
	border: 1px solid var(--iba-border);
	border-radius: var(--iba-radius-lg);
	padding: 22px;
	transition: box-shadow 0.15s ease, transform 0.15s ease;
}

.iba-rh-card:hover {
	box-shadow: 0 8px 22px rgba(31, 58, 82, 0.12);
	transform: translateY(-2px);
}

.iba-rh-card-tag {
	display: inline-flex;
	align-self: flex-start;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.03em;
	text-transform: uppercase;
	color: var(--iba-blue);
	background: var(--iba-blue-light);
	border-radius: 4px;
	padding: 3px 8px;
}

.iba-rh-card h3 {
	margin: 0;
	font-size: 17px;
	font-weight: 700;
	color: var(--iba-text);
	line-height: 1.35;
}

.iba-rh-card p {
	margin: 0;
	font-size: 14px;
	line-height: 1.55;
	color: var(--iba-text-muted);
	flex-grow: 1;
}

.iba-rh-card-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	align-self: flex-start;
	margin-top: 4px;
	padding: 9px 16px;
	font-size: 13px;
	font-weight: 600;
	color: #ffffff;
	background: var(--iba-navy);
	border-radius: 6px;
	text-decoration: none;
	cursor: pointer;
}

.iba-rh-card-link:hover {
	background: var(--iba-navy-dark);
}

.iba-rh-card-link:focus-visible {
	outline: 2px solid var(--iba-blue);
	outline-offset: 2px;
}

.iba-rh-card-link svg {
	transition: transform 0.15s ease;
}

.iba-rh-card-link:hover svg {
	transform: translateX(2px);
}

/* Disclaimer */

.iba-rh-disclaimer {
	background: #fdf4dc;
	border: 1px solid #e7cd88;
	border-radius: var(--iba-radius-lg);
	padding: 20px 24px;
	margin-bottom: 32px;
}

.iba-rh-disclaimer h2 {
	margin: 0 0 10px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: #7a5c00;
}

.iba-rh-disclaimer p {
	margin: 0 0 12px;
	font-size: 13px;
	line-height: 1.6;
	color: #5c4a1a;
}

.iba-rh-disclaimer p:last-child {
	margin-bottom: 0;
}

/* Footer */

.iba-rh-footer {
	max-width: 1200px;
	margin: 40px auto 0;
	padding-top: 20px;
	border-top: 1px solid var(--iba-border);
	font-size: 12px;
	color: var(--iba-text-muted);
	text-align: center;
}

/* Mobile */

@media (max-width: 560px) {
	.iba-rh-group-head {
		flex-direction: column;
		align-items: flex-start;
		gap: 4px;
	}
}

/* Reduced motion */

@media (prefers-reduced-motion: reduce) {
	.iba-rh-card,
	.iba-rh-card-link,
	.iba-rh-card-link svg {
		transition: none;
	}
}
