/* Ghid Bănci & Credite Ilfov — pagina pilon */

/* ── Reset & container ───────────────────────────────────────────── */
.ghid-banci-page {
	--gb-blue:    #1a56db;
	--gb-blue-dk: #1341b5;
	--gb-green:   #057a55;
	--gb-gray-50: #f9fafb;
	--gb-gray-100:#f3f4f6;
	--gb-gray-200:#e5e7eb;
	--gb-gray-700:#374151;
	--gb-gray-900:#111827;
	--gb-radius:  10px;
	--gb-shadow:  0 2px 12px rgba(0,0,0,.08);
	font-family: inherit;
}

.gb-container {
	max-width: 1140px;
	margin: 0 auto;
	padding: 0 20px;
}

.gb-section {
	padding: 56px 0;
}

/* ── Hero ────────────────────────────────────────────────────────── */
.gb-hero {
	background: linear-gradient(135deg, #0f2460 0%, #1a56db 60%, #1e6fcf 100%);
	padding: 56px 0 48px;
	color: #fff;
}

.gb-breadcrumb {
	font-size: 13px;
	color: rgba(255,255,255,.7);
	margin-bottom: 24px;
	display: flex;
	align-items: center;
	gap: 6px;
}

.gb-breadcrumb a {
	color: rgba(255,255,255,.8);
	text-decoration: none;
}

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

.gb-hero__title {
	font-size: clamp(26px, 4.5vw, 44px);
	font-weight: 800;
	line-height: 1.2;
	margin: 0 0 16px;
	letter-spacing: -.02em;
}

.gb-hero__title span {
	color: #93c5fd;
}

.gb-hero__sub {
	font-size: clamp(15px, 2vw, 18px);
	color: rgba(255,255,255,.85);
	max-width: 680px;
	line-height: 1.65;
	margin: 0 0 36px;
}

/* Stats bar */
.gb-stats-bar {
	display: flex;
	gap: 0;
	background: rgba(255,255,255,.12);
	border: 1px solid rgba(255,255,255,.2);
	border-radius: var(--gb-radius);
	overflow: hidden;
	width: fit-content;
}

.gb-stat {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 14px 28px;
	border-right: 1px solid rgba(255,255,255,.15);
}

.gb-stat:last-child { border-right: none; }

.gb-stat__num {
	font-size: 28px;
	font-weight: 800;
	line-height: 1;
	color: #fff;
}

.gb-stat__lbl {
	font-size: 12px;
	color: rgba(255,255,255,.7);
	text-transform: uppercase;
	letter-spacing: .06em;
	margin-top: 4px;
}

/* ── Buttons ─────────────────────────────────────────────────────── */
.gb-btn {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 10px 20px;
	border-radius: 8px;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	transition: background .15s, color .15s, transform .1s;
	white-space: nowrap;
}

.gb-btn--primary {
	background: var(--gb-blue);
	color: #fff;
}

.gb-btn--primary:hover {
	background: var(--gb-blue-dk);
	color: #fff;
	transform: translateY(-1px);
}

.gb-btn--ghost {
	background: var(--gb-gray-100);
	color: var(--gb-gray-700);
	border: 1px solid var(--gb-gray-200);
}

.gb-btn--ghost:hover {
	background: var(--gb-gray-200);
	color: var(--gb-gray-900);
}

.gb-btn--outline {
	background: transparent;
	color: var(--gb-blue);
	border: 2px solid var(--gb-blue);
}

.gb-btn--outline:hover {
	background: var(--gb-blue);
	color: #fff;
}

.gb-btn--lg {
	padding: 14px 28px;
	font-size: 16px;
}

/* ── Director card ───────────────────────────────────────────────── */
.gb-section--director {
	background: var(--gb-gray-50);
	border-bottom: 1px solid var(--gb-gray-200);
}

.gb-director-card {
	background: #fff;
	border: 1px solid var(--gb-gray-200);
	border-radius: 16px;
	overflow: hidden;
	box-shadow: var(--gb-shadow);
}

.gb-director-card__body {
	display: flex;
	gap: 24px;
	align-items: flex-start;
	padding: 32px;
	border-bottom: 1px solid var(--gb-gray-200);
}

.gb-director-card__icon {
	font-size: 40px;
	flex-shrink: 0;
	margin-top: 4px;
}

.gb-director-card__content h2 {
	font-size: 22px;
	font-weight: 700;
	color: var(--gb-gray-900);
	margin: 0 0 10px;
}

.gb-director-card__content p {
	font-size: 15px;
	color: var(--gb-gray-700);
	line-height: 1.6;
	margin: 0 0 18px;
}

.gb-director-card__links {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.gb-director-card__banks {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	padding: 20px 32px;
	background: var(--gb-gray-50);
}

.gb-bank-chip {
	display: inline-block;
	padding: 5px 14px;
	border-radius: 20px;
	border: 2px solid var(--chip-color, #333);
	color: var(--chip-color, #333);
	font-size: 13px;
	font-weight: 700;
	text-decoration: none;
	transition: background .15s, color .15s;
}

.gb-bank-chip:hover {
	background: var(--chip-color, #333);
	color: #fff;
}

/* ── Cluster sections ────────────────────────────────────────────── */
.gb-cluster {
	border-bottom: 1px solid var(--gb-gray-200);
}

.gb-cluster:nth-child(even) {
	background: var(--gb-gray-50);
}

.gb-cluster__header {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	margin-bottom: 28px;
}

.gb-cluster__icon {
	font-size: 32px;
	flex-shrink: 0;
	line-height: 1;
	margin-top: 2px;
}

.gb-cluster__title {
	font-size: 22px;
	font-weight: 700;
	color: var(--gb-gray-900);
	margin: 0 0 6px;
}

.gb-cluster__desc {
	font-size: 14px;
	color: #6b7280;
	margin: 0;
}

/* Articles grid */
.gb-articles-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 20px;
}

.gb-article-card {
	background: #fff;
	border: 1px solid var(--gb-gray-200);
	border-radius: var(--gb-radius);
	overflow: hidden;
	transition: box-shadow .18s, transform .18s;
	display: flex;
	flex-direction: column;
}

.gb-article-card:hover {
	box-shadow: 0 6px 24px rgba(0,0,0,.1);
	transform: translateY(-2px);
}

.gb-article-card__thumb {
	display: block;
	aspect-ratio: 16/9;
	overflow: hidden;
}

.gb-article-card__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .3s;
}

.gb-article-card:hover .gb-article-card__thumb img {
	transform: scale(1.04);
}

.gb-article-card__body {
	padding: 18px;
	display: flex;
	flex-direction: column;
	flex: 1;
}

.gb-article-card__title {
	font-size: 15px;
	font-weight: 600;
	line-height: 1.4;
	margin: 0 0 8px;
}

.gb-article-card__title a {
	color: var(--gb-gray-900);
	text-decoration: none;
}

.gb-article-card__title a:hover {
	color: var(--gb-blue);
}

.gb-article-card__excerpt {
	font-size: 13px;
	color: #6b7280;
	line-height: 1.6;
	margin: 0 0 12px;
	flex: 1;
}

.gb-article-card__cta {
	font-size: 13px;
	font-weight: 600;
	color: var(--gb-blue);
	text-decoration: none;
	margin-top: auto;
}

.gb-article-card__cta:hover { text-decoration: underline; }

.gb-cluster__more {
	margin-top: 24px;
	text-align: center;
}

/* ── CTA final ───────────────────────────────────────────────────── */
.gb-cta-final {
	background: linear-gradient(135deg, #0f2460, #1a56db);
	padding: 64px 0;
}

.gb-cta-final__inner {
	text-align: center;
	color: #fff;
}

.gb-cta-final__inner h2 {
	font-size: clamp(22px, 3.5vw, 34px);
	font-weight: 800;
	margin: 0 0 12px;
	color: #fff;
}

.gb-cta-final__inner p {
	font-size: 17px;
	color: rgba(255,255,255,.85);
	margin: 0 0 28px;
	max-width: 560px;
	margin-left: auto;
	margin-right: auto;
	line-height: 1.6;
}

.gb-cta-final .gb-btn--primary {
	background: #fff;
	color: var(--gb-blue);
	font-size: 16px;
	padding: 14px 32px;
	border-radius: 10px;
	box-shadow: 0 4px 16px rgba(0,0,0,.2);
}

.gb-cta-final .gb-btn--primary:hover {
	background: #f0f7ff;
	transform: translateY(-2px);
}

/* ── Responsive ──────────────────────────────────────────────────── */
@media (max-width: 768px) {
	.gb-stats-bar {
		width: 100%;
		display: grid;
		grid-template-columns: repeat(2, 1fr);
	}

	.gb-stat {
		border-right: none;
		border-bottom: 1px solid rgba(255,255,255,.15);
	}

	.gb-stat:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.15); }
	.gb-stat:nth-last-child(-n+2) { border-bottom: none; }

	.gb-director-card__body {
		flex-direction: column;
		padding: 20px;
	}

	.gb-director-card__icon { font-size: 28px; }

	.gb-director-card__links {
		flex-direction: column;
	}

	.gb-btn { justify-content: center; }

	.gb-director-card__banks { padding: 16px 20px; }

	.gb-articles-grid {
		grid-template-columns: 1fr;
	}

	.gb-cluster__header { flex-direction: column; gap: 10px; }
	.gb-section { padding: 36px 0; }
}

@media (max-width: 480px) {
	.gb-hero { padding: 36px 0 32px; }
	.gb-stats-bar { grid-template-columns: repeat(2, 1fr); }
	.gb-stat { padding: 12px 16px; }
	.gb-stat__num { font-size: 22px; }
}
