/* ==========================================================================
   OSBC main-design2 — webinars.css (webinars 전용)
   Page Title(화이트 좌정렬 밴드) / Resource Grid(패턴 A 3×3 카드)
   Pagination(지니언스식 원형 화살표 + 숫자)
   ========================================================================== */

/* --------------------------------------------------------------------------
   Page Title — 화이트 좌정렬 밴드 (company-about과 동일 패턴, 배경 장식 없음)
   -------------------------------------------------------------------------- */
.page-head {
	background: var(--c-bg);
	padding: 84px 0 56px;
}

.page-head-title {
	font-size: 48px;
	font-weight: 800;
	letter-spacing: -0.02em;
	line-height: 1.2;
	color: var(--c-ink);
}

.page-head-desc {
	margin-top: 18px;
	font-size: 20px; /* 페이지 타이틀 서브 일관 (2026-06-10 사용자 조정) */
	color: var(--c-ink);
	max-width: 720px;
}

/* --------------------------------------------------------------------------
   Resource Grid — 패턴 A. 3×3 카드 (썸네일 틴트 슬롯 + 타이틀 + 요약 + 날짜)
   -------------------------------------------------------------------------- */
.section-resources {
	padding: 8px 0 120px;
}

/* 지니언스 회사소식 리스트의 상단 굵은 룰 차용 — 타이틀 밴드와 목록 구분 */
.resources-rule {
	border: 0;
	border-top: 2px solid var(--c-ink);
	margin-bottom: 44px;
}

.resources-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px 24px;
}

/* 카드 — 보더 호버 룰(common .card)만, 리프트·그림자 금지 */
.resource-card {
	display: flex;
	flex-direction: column;
	height: 100%;
	padding: 14px 14px 24px;
}

/* 썸네일 슬롯 — 틴트 박스 16:10 (다크 박스 금지) */
.resource-thumb {
	display: flex;
	align-items: center;
	justify-content: center;
	aspect-ratio: 16 / 10;
	background: var(--c-tint);
	border: 1px solid var(--c-tint-2);
	border-radius: var(--radius-sm);
}

.resource-thumb-label {
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.04em;
	color: var(--c-text-mute);
}

.resource-title {
	margin: 18px 8px 0;
	font-size: 19px;
	font-weight: 700;
	line-height: 1.4;
	color: var(--c-ink);
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.resource-summary {
	margin: 8px 8px 0;
	font-size: 14.5px;
	line-height: 1.6;
	color: var(--c-text-sub);
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

/* 날짜 — 카드 하단 고정 (행 내 카드 높이 차이 흡수) */
.resource-date {
	display: block;
	margin: auto 8px 0;
	padding-top: 16px;
	font-size: 13px;
	color: var(--c-text-mute);
}

/* --------------------------------------------------------------------------
   Pagination — 지니언스식. 좌우 원형 화살표 + 숫자(활성 ink 700 / 비활성 mute)
   -------------------------------------------------------------------------- */
.pagination {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 28px;
	margin-top: 72px;
}

.page-arrow {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border: 1px solid var(--c-border);
	border-radius: var(--radius-pill);
	color: var(--c-text-sub);
	transition: border-color 0.2s ease, color 0.2s ease;
}

.page-arrow:hover {
	border-color: var(--c-primary-deep);
	color: var(--c-primary-deep);
}

/* 첫 페이지에서 이전 화살표 비활성 */
.page-arrow.is-disabled {
	border-color: var(--c-border-soft);
	color: var(--c-text-mute);
	pointer-events: none;
}

.page-nums {
	display: flex;
	align-items: center;
	gap: 6px;
}

.page-num {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 38px;
	height: 38px;
	font-size: 15px;
	font-weight: 600;
	font-variant-numeric: tabular-nums;
	color: var(--c-text-mute);
	transition: color 0.15s ease;
}

.page-num:hover {
	color: var(--c-ink);
}

.page-num.is-active {
	color: var(--c-ink);
	font-weight: 700;
}
