/* ═══════════════════════════════════════════════════════════
   STEERING COMMITTEE — Roles & Responsibilities section
   Used on: application/views/network/committee.php
   ═══════════════════════════════════════════════════════════ */

.rr-section {
	background: linear-gradient(180deg, #f3f7f4 0%, #ffffff 100%);
	padding-top: 5rem;
	padding-bottom: 6rem;
}

.rr-heading {
	text-align: center;
	margin-bottom: 3rem;
}

.rr-heading h2 {
	font-size: clamp(1.75rem, 3.2vw, 2.6rem);
	font-weight: 800;
	letter-spacing: 0.04em;
	color: #1a1a1a;
	margin: 0 auto;
	text-transform: uppercase;
}

.rr-heading-rule {
	display: block;
	width: 72px;
	height: 4px;
	border-radius: 4px;
	background: linear-gradient(90deg, var(--green-600), var(--green-500));
	margin: 1rem auto 0;
}

.rr-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2.25rem;
	align-items: start;
}

.rr-card {
	position: relative;
	background: #ffffff;
	border-radius: 22px;
	padding: 2.25rem 2rem 2rem;
	box-shadow: 0 22px 50px rgba(15, 40, 25, 0.10);
	border: 1px solid rgba(23, 68, 41, 0.06);
	transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.rr-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 30px 60px rgba(15, 40, 25, 0.14);
}

.rr-card-head {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-bottom: 1rem;
}

.rr-card-icon {
	width: 64px;
	height: 64px;
	min-width: 64px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.rr-card-title {
	font-size: 1.5rem;
	font-weight: 700;
	color: #1a1a1a;
	margin: 0;
	line-height: 1.25;
}

.rr-card-lead {
	color: #4b5563;
	line-height: 1.7;
	font-size: 0.98rem;
	margin: 0 0 1.5rem;
}

/* --- Obligations (solid green block) --- */
.rr-obligation {
	background: linear-gradient(180deg, #2f6142 0%, #27553a 100%);
	border-radius: 16px;
	padding: 1.4rem 1.5rem 1.5rem;
	box-shadow: 0 14px 28px rgba(39, 85, 58, 0.22);
	color: #ffffff;
	margin-bottom: 1.25rem;
}

.rr-obligation-head {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin-bottom: 0.85rem;
}

.rr-obligation-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.rr-obligation h4 {
	margin: 0;
	color: #ffffff;
	font-size: 1.2rem;
	font-weight: 700;
	letter-spacing: 0.06em;
}

.rr-obligation ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.rr-obligation ul li {
	position: relative;
	padding-left: 1.25rem;
	margin-bottom: 0.55rem;
	color: rgba(255, 255, 255, 0.95);
	line-height: 1.6;
	font-size: 0.95rem;
}

.rr-obligation ul li:last-child {
	margin-bottom: 0;
}

.rr-obligation ul li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0.55em;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #ffffff;
}

/* --- Accordion (Duties / Requirements) --- */
.rr-accordion {
	border: 1.5px solid rgba(23, 68, 41, 0.22);
	border-radius: 14px;
	margin-bottom: 0.9rem;
	background: #ffffff;
	overflow: hidden;
	transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.rr-accordion:last-child {
	margin-bottom: 0;
}

.rr-accordion[open] {
	border-color: rgba(23, 68, 41, 0.35);
	box-shadow: 0 10px 24px rgba(23, 68, 41, 0.08);
}

.rr-accordion summary {
	list-style: none;
	display: flex;
	align-items: center;
	gap: 0.85rem;
	padding: 1rem 1.1rem;
	cursor: pointer;
	user-select: none;
}

.rr-accordion summary::-webkit-details-marker {
	display: none;
}

.rr-acc-icon {
	display: inline-flex;
	width: 28px;
	height: 28px;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.rr-acc-label {
	flex: 1;
	font-weight: 600;
	color: var(--green-900);
	font-size: 1rem;
	line-height: 1.35;
}

.rr-acc-chevron {
	display: inline-flex;
	transition: transform 0.3s ease;
	color: var(--green-900);
	flex-shrink: 0;
}

.rr-accordion[open] .rr-acc-chevron {
	transform: rotate(180deg);
}

.rr-accordion ul {
	list-style: none;
	padding: 0 1.4rem 1.25rem 2.85rem;
	margin: 0;
}

.rr-accordion ul li {
	position: relative;
	padding-left: 1.1rem;
	margin-bottom: 0.6rem;
	color: #4b5563;
	line-height: 1.65;
	font-size: 0.95rem;
}

.rr-accordion ul li:last-child {
	margin-bottom: 0;
}

.rr-accordion ul li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0.6em;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--green-500);
}

.rr-acc-sub {
	color: #4b5563;
	line-height: 1.55;
	font-size: 0.92rem;
	margin: -0.4rem 1.4rem 0.75rem 2.85rem;
}

@media (max-width: 900px) {
	.rr-grid {
		grid-template-columns: 1fr;
		gap: 1.75rem;
	}

	.rr-card {
		padding: 1.75rem 1.4rem 1.5rem;
	}

	.rr-card-icon {
		width: 52px;
		height: 52px;
		min-width: 52px;
	}

	.rr-card-icon svg {
		width: 46px;
		height: 46px;
	}

	.rr-card-title {
		font-size: 1.25rem;
	}

	.rr-accordion ul,
	.rr-acc-sub {
		padding-left: 2.25rem;
		margin-left: 0;
	}

	.rr-acc-sub {
		margin-right: 1.1rem;
	}
}
