/* ---------------- Page header ---------------- */
.ct-page-head {
	padding: 50px 0 24px;
	border-bottom: 1px solid #e9ecef;
}
.ct-eyebrow {
	display: inline-block;
	font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
	color: #6c757d;
	margin-bottom: .9rem;
}
.ct-page-head h1 {
	font-size: clamp(1.8rem, 3.2vw, 2.4rem);
	font-weight: 700; letter-spacing: -.015em; line-height: 1.15;
	margin: 0 0 .6rem; color: #1a1d22;
}
.ct-page-head p {
	font-size: 1.02rem; color: #495057; margin: 0; max-width: 720px; line-height: 1.55;
}

/* ---------------- Section heads ---------------- */
.ct-section-head {
	font-size: 1.25rem; font-weight: 700; color: #1a1d22; letter-spacing: -.01em;
	margin: 0 0 .35rem;
}
.ct-section-sub { color: #6c757d; font-size: .92rem; margin: 0 0 1.5rem; }

/* ---------------- Department cards (no icons, clean text) ---------------- */
.ct-dept {
	display: block;
	background: #fff;
	border: 1px solid #e9ecef;
	border-radius: 8px;
	padding: 1.2rem 1.3rem;
	height: 100%;
	text-decoration: none; color: inherit;
	transition: border-color .12s ease, box-shadow .12s ease;
	border-left: 3px solid #6366f1;
}
.ct-dept:hover {
	border-color: #adb5bd;
	border-left-color: #4338ca;
	box-shadow: 0 4px 14px rgba(0,0,0,.04);
	color: inherit;
}
.ct-dept h3 {
	font-size: 1rem; font-weight: 700; color: #1a1d22;
	margin: 0 0 .35rem; line-height: 1.2;
}
.ct-dept p { color: #495057; font-size: .88rem; line-height: 1.5; margin: 0 0 .6rem; }
.ct-dept .reach { font-size: .85rem; font-weight: 600; color: #4338ca; }

/* ---------------- Form card ---------------- */
.ct-form-card {
	background: #fff;
	border: 1px solid #e9ecef;
	border-radius: 10px;
	padding: 1.8rem;
}
.ct-form-card h2 {
	font-size: 1.2rem; font-weight: 700; color: #1a1d22; margin: 0 0 .25rem;
}
.ct-form-card .form-sub { color: #6c757d; font-size: .9rem; margin-bottom: 1.4rem; }

.ct-form-card label {
	display: block;
	font-size: .76rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase;
	color: #495057; margin-bottom: .3rem;
}
.ct-form-card input[type="text"],
.ct-form-card input[type="email"],
.ct-form-card select,
.ct-form-card textarea {
	width: 100%;
	padding: .55rem .75rem;
	border: 1px solid #ced4da;
	border-radius: 6px;
	font-size: .95rem;
	font-family: inherit;
	color: #1a1d22;
	background: #fff;
	transition: border-color .12s ease, box-shadow .12s ease;
}
.ct-form-card input:focus,
.ct-form-card select:focus,
.ct-form-card textarea:focus {
	outline: 0;
	border-color: #6366f1;
	box-shadow: 0 0 0 3px rgba(99,102,241,.12);
}
.ct-form-card textarea { min-height: 130px; resize: vertical; }

.ct-honeypot { position: absolute; left: -10000px; top: auto; width: 1px; height: 1px; overflow: hidden; }

.ct-submit {
	background: #1a1d22;
	color: #fff;
	padding: .7rem 1.6rem;
	border: 0; border-radius: 6px;
	font-size: .92rem; font-weight: 600;
	cursor: pointer;
	transition: background .12s ease;
}
.ct-submit:hover { background: #4338ca; }
.ct-submit:focus { outline: 3px solid rgba(99,102,241,.3); outline-offset: 2px; }

.ct-form-meta { font-size: .82rem; color: #6c757d; margin-top: .8rem; }
.ct-form-meta a { color: #4338ca; }

/* ---------------- Sidebar info ---------------- */
.ct-sidebar {
	background: #fafbfc;
	border: 1px solid #e9ecef;
	border-radius: 10px;
	padding: 1.5rem;
	height: 100%;
}
.ct-sidebar h3 {
	font-size: 1rem; font-weight: 700; color: #1a1d22;
	margin: 0 0 1rem; padding-bottom: .8rem; border-bottom: 1px solid #e9ecef;
}
.ct-sb-block { padding: .65rem 0; border-bottom: 1px solid #f1f3f5; }
.ct-sb-block:last-child { border-bottom: 0; }
.ct-sb-label {
	font-size: .68rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
	color: #6c757d; margin-bottom: .25rem;
}
.ct-sb-val { font-size: .92rem; line-height: 1.4; color: #1a1d22; }
.ct-sb-val a { color: #4338ca; text-decoration: none; }
.ct-sb-val a:hover { text-decoration: underline; }
.ct-sb-meta { font-size: .8rem; color: #6c757d; margin-top: .25rem; }

/* ---------------- Editorial team ---------------- */
.ct-author-card {
	background: #fff;
	border: 1px solid #e9ecef;
	border-radius: 8px;
	padding: 1.2rem 1.3rem;
	height: 100%;
	transition: border-color .12s ease, box-shadow .12s ease;
}
.ct-author-card:hover {
	border-color: #adb5bd;
	box-shadow: 0 4px 14px rgba(0,0,0,.04);
}
.ct-author-head { display: flex; align-items: center; gap: .85rem; margin-bottom: .85rem; }
.ct-author-avatar {
	width: 48px; height: 48px;
	border-radius: 50%;
	background-position: center; background-size: cover;
	flex-shrink: 0;
	display: flex; align-items: center; justify-content: center;
	background-color: #e9ecef;
	color: #495057;
	font-weight: 700;
	font-size: .92rem;
}
.ct-author-name { font-size: 1rem; font-weight: 700; margin: 0; line-height: 1.15; color: #1a1d22; }
.ct-author-beat { font-size: .78rem; color: #6c757d; margin-top: .15rem; }
.ct-author-bio { font-size: .88rem; color: #495057; line-height: 1.5; margin: 0 0 .85rem; }
.ct-author-links { font-size: .85rem; }
.ct-author-links a {
	color: #4338ca;
	text-decoration: none;
	font-weight: 600;
}
.ct-author-links a:hover { text-decoration: underline; }
.ct-author-links span.sep { color: #ced4da; margin: 0 .35rem; }

/* ---------------- Notification ---------------- */
#contact-submit-notification h3,
#contact-submit-notification h4 { color: #4338ca; font-weight: 700; margin: 0 0 .25rem; }

@media (max-width: 767px) {
	.ct-form-card { padding: 1.4rem; }
	.ct-sidebar { padding: 1.4rem; margin-top: 1.5rem; }
}
