/* assets/css/teachers-profile.css */

/* Container */
.teacher-profile-meta {
	margin: 2rem 0;
	padding: 0;
}

/* Section 
.teacher-section {
	margin: 0 0 1.5rem;
	padding: 1.25rem;
	border: 1px solid rgba(0, 0, 0, 0.08);
	background: #fff;
	border-radius: 0.5rem;
} */

/* Remove extra spacing on last section */
.teacher-section:last-child {
	margin-bottom: 0;
}

/* Section titles 
.teacher-section h2 {
	margin: 0 0 0.75rem;
	padding: 0;
	font-size: 1.125rem;
	line-height: 1.3;
	font-weight: 600;
	color: #111;
} */

/* Paragraph spacing inside sections */
.teacher-section p {
	margin: 0 0 0.75rem;
}

.teacher-section p:last-child {
	margin-bottom: 0;
}

/* Lists inside sections */
.teacher-section ul,
.teacher-section ol {
	margin: 0.5rem 0 0.75rem 1.25rem;
	padding: 0;
}

.teacher-section li {
	margin: 0 0 0.35rem;
}

.teacher-section a:hover,
.teacher-section a:focus {
	text-decoration-thickness: 0.15em;
}

/* Specific sections (kept minimal; useful hooks for future overrides) */
.teacher-degrees,
.teacher-status,
.teacher-research,
.teacher-publications,
.teacher-links {
	/* Intentionally minimal to stay theme-agnostic */
}

/* Related courses list (generated by ss_teachers_get_related_courses_html) */
.ss-teacher-courses {
	margin-top: 0.25rem;
}

.ss-teacher-courses ul {
	margin-left: 1.25rem;
}

/* Contact button wrapper */
.ss-teacher-contact {
	margin: 0.75rem 0 0;
}

/* Button styling: neutral and visible, without relying on theme */
.ss-teacher-contact .button,
.ss-teacher-contact a.button {
	display: inline-block;
	padding: 0.75rem 1rem;
	border: 1px solid rgba(0, 0, 0, 0.25);
	border-radius: 0.5rem;
	background: #f5f5f5;
	color: #111;
	font-size: 1rem;
	line-height: 1.2;
	font-weight: 600;
	text-decoration: none;
}

.ss-teacher-contact .button:hover,
.ss-teacher-contact a.button:hover,
.ss-teacher-contact .button:focus,
.ss-teacher-contact a.button:focus {
	background: #eee;
	border-color: rgba(0, 0, 0, 0.35);
	color: #000;
}

/* Mobile-first: ensure good spacing on small screens */
@media (max-width: 40rem) {
	.teacher-section {
		padding: 1rem;
	}

	.teacher-section h2 {
		font-size: 1.0625rem;
	}
}

/* Hide theme meta line ("Écrit par …", "dans …") on single Teachers pages */
.single-teachers .entry-meta,
.single-teachers .wp-block-post-author,
.single-teachers .wp-block-post-date,
.single-teachers .wp-block-post-terms,
.single-teachers .byline,
.single-teachers .posted-by,
.single-teachers .posted-on {
	display: none !important;
}