/**
 * Scientific Advisory Board — board grid + detail sections.
 * Loaded by rse-sab.php whenever a page contains [rse_sab_members].
 */

/* Board container — caps at 1200 to match theme.json wideSize */
.rse-sab-board { max-width: 1200px; margin: 0 auto; padding: 0 var(--wp--preset--spacing--50, 24px); }

/* Card grid */
.rse-sab-grid { display: grid; grid-template-columns: 1fr; gap: 32px; margin: 48px 0 64px; }
@media (min-width: 600px) { .rse-sab-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .rse-sab-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1100px) { .rse-sab-grid { grid-template-columns: repeat(4, 1fr); } }

.rse-sab-card { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--wp--preset--color--rse-line, #e6e8ec); border-radius: 12px; overflow: hidden; transition: box-shadow .2s ease, transform .2s ease; }
.rse-sab-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,.08); transform: translateY(-2px); }
.rse-sab-card__photo { aspect-ratio: 4/5; overflow: hidden; background: var(--wp--preset--color--rse-blue-soft, #e8f0f8); display: block; }
.rse-sab-card__photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.rse-sab-card__photo.is-empty { display: flex; align-items: center; justify-content: center; color: var(--wp--preset--color--rse-blue, #1a4f8b); font-size: 32px; }
.rse-sab-card__body { padding: 18px 22px 20px; display: flex; flex-direction: column; flex: 1; gap: 10px; }
.rse-sab-card__name { font-size: 1.2rem; font-weight: 700; color: var(--wp--preset--color--rse-text, #2a2a2a); margin: 0; line-height: 1.25; }
.rse-sab-card__affil { font-size: 0.9rem; font-style: italic; color: var(--wp--preset--color--rse-blue, #1a4f8b); margin: 0; line-height: 1.45; }
.rse-sab-card__summary { font-size: 0.92rem; color: var(--wp--preset--color--rse-text, #2a2a2a); margin: 0; line-height: 1.5; }
.rse-sab-card__more { margin-top: auto; padding-top: 6px; font-size: 0.92rem; font-weight: 600; color: var(--wp--preset--color--rse-blue, #1a4f8b); text-decoration: none; align-self: flex-start; }
.rse-sab-card__more:hover { text-decoration: underline; }

/* Role badge — shared by card + detail */
.rse-sab-role { display: inline-block; font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; padding: 4px 10px; border-radius: 999px; align-self: flex-start; line-height: 1.4; }
.rse-sab-role--chair { background: var(--wp--preset--color--rse-yellow, #ffd166); color: #4a3a00; }
.rse-sab-role--member { background: var(--wp--preset--color--rse-blue-soft, #e8f0f8); color: var(--wp--preset--color--rse-blue, #1a4f8b); }
.rse-sab-role--honorary { background: #f0f0f0; color: #555; }

/* Detail sections — true 2-col layout: photo rail | flowing content column */
.rse-sab-detail-list { margin-top: 32px; }
.rse-sab-detail {
	display: grid;
	grid-template-columns: 1fr;
	gap: 24px;
	scroll-margin-top: 100px;
	padding: 48px 0;
	border-top: 1px solid var(--wp--preset--color--rse-line, #e6e8ec);
}
.rse-sab-detail-list .rse-sab-detail:first-child { border-top: 2px solid var(--wp--preset--color--rse-blue, #1a4f8b); padding-top: 56px; }
@media (min-width: 768px) {
	.rse-sab-detail { grid-template-columns: 240px 1fr; gap: 40px; align-items: start; }
}

.rse-sab-detail__photo { aspect-ratio: 4/5; overflow: hidden; border-radius: 12px; background: var(--wp--preset--color--rse-blue-soft, #e8f0f8); }
.rse-sab-detail__photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.rse-sab-detail__photo.is-empty { display: flex; align-items: center; justify-content: center; color: var(--wp--preset--color--rse-blue, #1a4f8b); font-size: 32px; }

/* Right column: stacks meta + bio + video + pubs, fills available width */
.rse-sab-detail__body { display: flex; flex-direction: column; gap: 20px; min-width: 0; }
.rse-sab-detail__meta { display: flex; flex-direction: column; gap: 10px; }
.rse-sab-detail__name { font-size: 1.75rem; font-weight: 700; color: var(--wp--preset--color--rse-text, #2a2a2a); margin: 0; line-height: 1.2; }
.rse-sab-detail__affil { font-size: 1rem; font-style: italic; color: var(--wp--preset--color--rse-blue, #1a4f8b); margin: 0; line-height: 1.45; }
.rse-sab-detail__social { display: flex; gap: 8px; flex-wrap: wrap; list-style: none; margin: 8px 0 0; padding: 0; }
.rse-sab-detail__social li { margin: 0; }
.rse-sab-detail__social a { display: inline-block; font-size: 0.85rem; color: var(--wp--preset--color--rse-blue, #1a4f8b); text-decoration: none; padding: 4px 10px; border: 1px solid var(--wp--preset--color--rse-line, #e6e8ec); border-radius: 999px; line-height: 1.4; }
.rse-sab-detail__social a:hover { background: var(--wp--preset--color--rse-blue-soft, #e8f0f8); }

/* Bio — fills the right column. Slightly larger size + generous line-height keeps wider lines comfortable. */
.rse-sab-detail__bio p { font-size: 1.0625rem; line-height: 1.7; color: var(--wp--preset--color--rse-text, #2a2a2a); margin: 0 0 14px; text-align: left; }
.rse-sab-detail__bio p em { color: var(--wp--preset--color--rse-blue, #1a4f8b); }
.rse-sab-detail__bio ul, .rse-sab-detail__bio ol { font-size: 1.0625rem; line-height: 1.7; color: var(--wp--preset--color--rse-text, #2a2a2a); margin: 0 0 14px; padding-left: 1.5em; }
.rse-sab-detail__bio li { margin-bottom: 6px; }

/* Video — capped at 720px (16:9 looks awkward at larger widths) */
.rse-sab-detail__video { max-width: 720px; position: relative; padding-bottom: min(40.5%, 405px); height: 0; overflow: hidden; border-radius: 8px; }
@media (max-width: 720px) { .rse-sab-detail__video { padding-bottom: 56.25%; } }
.rse-sab-detail__video iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0; }

/* Pubs — fills right column */
.rse-sab-detail__pubs { padding: 18px 22px; background: var(--wp--preset--color--rse-bg-soft, #f7f9fc); border-left: 3px solid var(--wp--preset--color--rse-blue, #1a4f8b); border-radius: 4px; }
.rse-sab-detail__pubs h4 { font-size: 0.95rem; font-weight: 700; margin: 0 0 12px; color: var(--wp--preset--color--rse-text, #2a2a2a); text-transform: uppercase; letter-spacing: 0.06em; }
.rse-sab-detail__pubs ul { list-style: none; margin: 0; padding: 0; }
.rse-sab-detail__pubs li { margin-bottom: 10px; font-size: 0.95rem; line-height: 1.5; }
.rse-sab-detail__pubs li:last-child { margin-bottom: 0; }
.rse-sab-pub__title { display: block; color: var(--wp--preset--color--rse-text, #2a2a2a); }
.rse-sab-pub__link { display: inline-block; margin-top: 2px; color: var(--wp--preset--color--rse-blue, #1a4f8b); text-decoration: none; font-size: 0.88rem; font-weight: 600; }
.rse-sab-pub__link:hover { text-decoration: underline; }

/* "See full board →" link under preview grid */
.rse-sab-board__see-all { margin-top: 24px; text-align: center; }
.rse-sab-board__see-all a { font-size: 1rem; font-weight: 600; color: var(--wp--preset--color--rse-blue, #1a4f8b); text-decoration: none; }
.rse-sab-board__see-all a:hover { text-decoration: underline; }
