/**
 * ACMS Core front-end styles.
 *
 * Everything here is scoped under a wrapper class (.acms-events-upcoming,
 * .acms-events-rail, .acms-people, .acms-profile-tabs, .acms-event-past) —
 * no bare element selectors, no .et_pb_* overrides, no !important without a
 * documented reason. Enqueued after Divi's own stylesheet so colours and
 * typography are inherited, not redeclared. Fonts/colours below are the
 * site's own values (Open Sans body / Gotham Book headings; navy #155a7a,
 * yellow #f7cc45, grey #595959, teal #00b0b4 — read live from the theme's
 * Divi global-colours option, not invented here).
 */

.acms-events-upcoming,
.acms-events-rail,
.acms-past-grid,
.acms-people,
.acms-profile-tabs {
	--acms-navy: #155a7a;
	--acms-yellow: #f7cc45;
	--acms-teal: #00b0b4;
	--acms-grey: #595959;
	--acms-wash: #f5f5f5;
	/* #6b6b6b on white is ~4.9:1 — comfortably clears the 4.5:1 body-text minimum */
	--acms-muted: #6b6b6b;
	--acms-hairline: #e4e4e4;
	font-family: inherit;
}

/* ---------- Buttons (shared: upcoming list, add-to-calendar trigger) ---------- */

.acms-btn {
	display: inline-block;
	font-family: inherit;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.02em;
	text-align: center;
	text-decoration: none;
	padding: 8px 16px;
	border-radius: 4px;
	border: 1px solid transparent;
	cursor: pointer;
	white-space: nowrap;
}

.acms-btn--primary {
	background: var( --acms-navy );
	color: #ffffff;
}
.acms-btn--primary:hover,
.acms-btn--primary:focus-visible {
	background: #0f435c;
	color: #ffffff;
}

.acms-btn--secondary {
	background: transparent;
	color: var( --acms-navy );
	border-color: var( --acms-navy );
}
.acms-btn--secondary:hover,
.acms-btn--secondary:focus-visible {
	background: var( --acms-navy );
	color: #ffffff;
}

/* ---------- Upcoming list ---------- */

.acms-events-upcoming__heading {
	font-family: inherit;
	margin: 0 0 16px;
}

.acms-events-upcoming__empty {
	color: var( --acms-grey );
}

.acms-upcoming__list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.acms-upcoming__row {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 18px 0;
	border-bottom: 1px solid var( --acms-hairline );
}
.acms-upcoming__row:first-child {
	padding-top: 0;
}

.acms-upcoming__date {
	flex: 0 0 56px;
	text-align: center;
	line-height: 1.1;
}
.acms-upcoming__day {
	display: block;
	font-size: 22px;
	font-weight: 700;
	color: var( --acms-navy );
}
.acms-upcoming__month {
	display: block;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.06em;
	color: var( --acms-muted );
}

.acms-upcoming__body {
	flex: 1 1 auto;
	min-width: 0;
}
.acms-upcoming__title {
	display: block;
	font-weight: 600;
	text-decoration: none;
	color: inherit;
}
.acms-upcoming__title:hover,
.acms-upcoming__title:focus-visible {
	text-decoration: underline;
}
.acms-upcoming__meta {
	font-size: 13px;
	color: var( --acms-muted );
	margin-top: 4px;
}

.acms-upcoming__actions {
	flex: 0 0 auto;
	display: flex;
	align-items: center;
	gap: 8px;
}

.acms-events-upcoming__viewall {
	display: inline-block;
	margin-top: 16px;
	font-weight: 600;
	color: var( --acms-navy );
}

.acms-past-label {
	display: inline-block;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: var( --acms-muted );
}

/* ---------- Add-to-calendar dropdown ---------- */

.acms-a2c {
	position: relative;
}
.acms-a2c__menu {
	position: absolute;
	right: 0;
	top: calc( 100% + 6px );
	z-index: 20;
	min-width: 200px;
	background: #ffffff;
	border: 1px solid var( --acms-hairline );
	border-radius: 6px;
	box-shadow: 0 8px 24px rgba( 0, 0, 0, 0.12 );
	padding: 6px;
}
.acms-a2c__item {
	display: block;
	padding: 8px 10px;
	font-size: 13px;
	color: inherit;
	text-decoration: none;
	border-radius: 4px;
}
.acms-a2c__item:hover,
.acms-a2c__item:focus-visible {
	background: var( --acms-wash );
}

/* ---------- Sticky rail ---------- */

/*
 * Divi's own Position -> Sticky (sticky_position="top" on the column) is set
 * per the brief, but confirmed live (2026-08-03) not to actually stick on
 * this site at all — same non-functional behaviour found on the site's own
 * fixed header, so it's a pre-existing site-wide issue, not something wrong
 * with this markup. This CSS sticky fallback replaces it.
 *
 * Two real structural bugs already found and fixed here (2026-08-03):
 * 1. Sticky must live on the .et_pb_column itself, not on our own
 *    .acms-events-rail wrapper nested three levels deeper inside it (column
 *    > .et_pb_code module > .et_pb_code_inner > our div) — that inner div's
 *    own immediate parent is exactly as tall as the rail itself, giving
 *    position:sticky no properly-bounded containing block to stop at, and
 *    the rail floated over the archive grid section further down the page.
 * 2. The row needed make_equal="on" (matching the pattern already used by
 *    the existing archive-grid row) so the column stretches to the taller
 *    "Upcoming" column's height — without that there's no room for the
 *    sticky effect to do anything useful, and no properly-bounded box for
 *    it to stop at either.
 *
 * 3. Real user report (2026-08-04): after fix #1/#2 above, the rail still
 *    floated over the archive grid on a real scroll test. Root cause: the
 *    column's own `sticky_position="top"` Divi attribute was still present
 *    alongside our CSS — Divi's native sticky JS doesn't bound itself to the
 *    row either (same class of bug we were fixing, just via Divi's own
 *    mechanism instead of ours), so the two were fighting/compounding. Fixed
 *    by removing `sticky_position` from the column entirely and giving it a
 *    real `module_class="acms-rail-column"` instead of the earlier `:has()`
 *    selector, so there's exactly one sticky mechanism in play and it's
 *    scoped with a plain, universally-supported class selector.
 */
.acms-events-rail {
	display: flex;
	flex-direction: column;
	gap: 32px;
}

.acms-rail-column {
	position: sticky;
	top: 24px;
	align-self: flex-start;
}

@media ( max-width: 980px ) {
	.acms-rail-column {
		position: static;
	}
}

.acms-mini-cal__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 10px;
}
.acms-mini-cal__label {
	font-weight: 700;
}
.acms-mini-cal__nav {
	font-size: 20px;
	line-height: 1;
	text-decoration: none;
	color: var( --acms-navy );
	padding: 2px 8px;
}
.acms-mini-cal__jump {
	display: none;
	margin-bottom: 10px;
}
.acms-mini-cal__jump-select {
	width: 100%;
	padding: 8px;
	border-radius: 4px;
	border: 1px solid var( --acms-hairline );
}
.acms-mini-cal__weekdays {
	display: grid;
	grid-template-columns: repeat( 7, 1fr );
	text-align: center;
	font-size: 11px;
	font-weight: 700;
	color: var( --acms-muted );
	margin-bottom: 4px;
}
.acms-mini-cal__grid {
	display: grid;
	grid-template-columns: repeat( 7, 1fr );
	gap: 2px;
}
.acms-mini-cal__cell {
	position: relative;
	aspect-ratio: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 12px;
	background: none;
	border: none;
	border-radius: 4px;
	cursor: default;
	color: inherit;
}
.acms-mini-cal__cell--empty {
	visibility: hidden;
}
.acms-mini-cal__cell--has-event {
	cursor: pointer;
	font-weight: 600;
}
.acms-mini-cal__cell--has-event::after {
	content: '';
	position: absolute;
	bottom: 3px;
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background: var( --acms-teal );
}
.acms-mini-cal__cell--has-event:hover,
.acms-mini-cal__cell--has-event:focus-visible,
.acms-mini-cal__cell--selected {
	background: var( --acms-navy );
	color: #ffffff;
}
.acms-mini-cal__cell--today {
	box-shadow: inset 0 0 0 1px var( --acms-navy );
}
.acms-mini-cal__cell.acms-event-past {
	color: var( --acms-muted );
}

.acms-events-filters__legend {
	font-weight: 700;
	padding: 0;
	margin-bottom: 8px;
}
.acms-events-filters__item {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	padding: 4px 0;
	cursor: pointer;
}

.acms-subscribe__heading {
	margin: 0 0 6px;
}
.acms-subscribe__intro {
	font-size: 13px;
	color: var( --acms-muted );
	margin: 0 0 10px;
}
.acms-subscribe__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 6px;
}
.acms-subscribe__list a {
	font-weight: 600;
	color: var( --acms-navy );
	text-decoration: none;
}
.acms-subscribe__list a:hover,
.acms-subscribe__list a:focus-visible {
	text-decoration: underline;
}

@media ( max-width: 980px ) {
	.acms-mini-cal__weekdays,
	.acms-mini-cal__grid {
		display: none;
	}
	.acms-mini-cal__jump {
		display: block;
	}
}

/* ---------- Past events (shared: upcoming list, mini calendar, Blog module grid, single templates) ---------- */

.acms-event-past .acms-upcoming__title,
.acms-event-past .acms-upcoming__meta,
.et_pb_post.acms-event-past .entry-title,
.et_pb_post.acms-event-past .post-meta,
.et_pb_post.acms-event-past .post-content {
	color: var( --acms-muted );
}

.et_pb_post.acms-event-past a.entry-featured-image-url img {
	filter: grayscale( 1 );
	opacity: 0.75;
	transition: filter 0.2s ease, opacity 0.2s ease;
}
.et_pb_post.acms-event-past:hover a.entry-featured-image-url img,
.et_pb_post.acms-event-past:focus-within a.entry-featured-image-url img {
	filter: grayscale( 0 );
	opacity: 1;
}

/* ---------- Single event template (Task 2b) ---------- */

.acms-event-chips {
	--acms-navy: #155a7a;
	--acms-teal: #00b0b4;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 8px;
	margin: 16px 0;
}
.acms-event-chip {
	display: inline-block;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	text-decoration: none;
	color: var( --acms-navy );
	background: rgba( 21, 90, 122, 0.08 );
	border-radius: 20px;
	padding: 5px 14px;
}
.acms-event-chip:hover,
.acms-event-chip:focus-visible {
	background: var( --acms-navy );
	color: #ffffff;
}

.acms-event-details {
	--acms-navy: #155a7a;
	--acms-muted: #6b6b6b;
	--acms-hairline: #e4e4e4;
	max-width: 780px;
	margin: 0 auto 40px;
	padding: 24px 28px;
	border: 1px solid var( --acms-hairline );
	border-radius: 8px;
}
.acms-event-details__list {
	margin: 0 0 20px;
}
.acms-event-details__row {
	display: flex;
	gap: 12px;
	padding: 8px 0;
	border-bottom: 1px solid var( --acms-hairline );
}
.acms-event-details__row:last-child {
	border-bottom: none;
}
.acms-event-details__row dt {
	flex: 0 0 90px;
	font-weight: 700;
	color: var( --acms-muted );
}
.acms-event-details__row dd {
	margin: 0;
	flex: 1 1 auto;
}

.acms-past-banner {
	display: inline-block;
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: var( --acms-muted );
	background: var( --acms-wash, #f5f5f5 );
	border-radius: 4px;
	padding: 10px 16px;
}

.acms-back-to-events {
	display: block;
	text-align: center;
	margin: 20px 0 40px;
	font-weight: 600;
	color: var( --acms-navy );
	text-decoration: none;
}
.acms-back-to-events:hover,
.acms-back-to-events:focus-visible {
	text-decoration: underline;
}

/*
 * Past events on the single template: image only goes grayscale — body copy
 * (abstract, details) stays fully legible, unlike the archive grid/list
 * treatment which also mutes the text. `body.acms-event-past` comes from a
 * body_class filter (Divi's fullwidth image module can't take a per-post
 * conditional class directly), gating this to just the one image module the
 * single-event template uses for its featured image.
 */
body.acms-event-past.single-tribe_events .et_pb_section:first-of-type .et_pb_fullwidth_image img {
	filter: grayscale( 1 );
	opacity: 0.85;
	transition: filter 0.2s ease, opacity 0.2s ease;
}
body.acms-event-past.single-tribe_events .et_pb_section:first-of-type .et_pb_fullwidth_image:hover img,
body.acms-event-past.single-tribe_events .et_pb_section:first-of-type .et_pb_fullwidth_image:focus-within img {
	filter: grayscale( 0 );
	opacity: 1;
}

/* ---------- Past events grid (replaces the old Blog module, links to the new single-event pages) ----------
 * Client request (2026-08-04): reuse the ORIGINAL .blogy-blog-layout-19 CSS the
 * old Blog module relied on, rather than a fresh design. Restored verbatim from
 * layouts/_backup/events-body-layout-23817490-pre-task2.json below, plus two
 * small additions of our own clearly marked at the end: a clearfix (the
 * original relied on a Divi-internal flex wrapper our markup doesn't have) and
 * a current-page pagination indicator style.
 */

.blogy-blog-layout-19 .pagination a {
	font-weight: 600;
	color: #000000 !important;
}
.blogy-blog-layout-19 .et_pb_post {
	/* Not part of the original CSS — this was always Divi's own base style for
	 * .et_pb_post, generated only when an actual et_pb_blog module is present
	 * on the page. Confirmed live (2026-08-04): with the Blog module replaced
	 * by our own markup, .et_pb_post computed position:static, so the
	 * absolutely-positioned .entry-title and a.more-link below had no
	 * containing block of their own and were anchoring to some ancestor far
	 * outside the card (title stretched to 2x its card's width, the "Read
	 * More" button for card #1 rendering ~1500px below its own card) — this
	 * is what "very very wonky" was. */
	position: relative;
	clear: none;
	float: left;
	margin-bottom: 6%;
	width: 48%;
}
.blogy-blog-layout-19 .et_pb_no_thumb a.more-link {
	position: unset;
	transform: unset;
	width: max-content;
	float: right;
}
.blogy-blog-layout-19 .et_pb_no_thumb .post-content-inner p {
	margin-bottom: 20px;
}
.blogy-blog-layout-19 .et_pb_no_thumb .entry-title {
	position: unset;
}
.blogy-blog-layout-19 .et_pb_post:nth-child( odd ) {
	margin-right: 4%;
}
.blogy-blog-layout-19 .entry-title {
	padding: 10px 20px;
	position: absolute;
	top: 0;
	width: 100%;
	background: rgba( 255, 255, 255, 0.8 );
	box-shadow: 0px 0px 18px -6px rgba( 0, 0, 0, 0.3 );
}
.blogy-blog-layout-19 .post-meta {
	margin-bottom: 15px;
	padding: 15px 20px;
}
.blogy-blog-layout-19 .post-content {
	margin-top: 10px;
}
.blogy-blog-layout-19 a.more-link {
	text-transform: capitalize;
	background: rgb( 247, 204, 69 );
	padding: 5px 10px;
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY( -50% );
	border-radius: 50px 0 0 50px;
}
.blogy-blog-layout-19 a.entry-featured-image-url {
	margin-bottom: 0;
}
.blogy-blog-layout-19 .et_pb_post a.entry-featured-image-url img {
	height: 350px;
	object-fit: cover;
}
@media ( max-width: 1280px ) {
	.blogy-blog-layout-19 .et_pb_post a.entry-featured-image-url img {
		height: 300px;
	}
}
@media ( max-width: 980px ) {
	.blogy-blog-layout-19 .et_pb_post {
		margin: 30px auto;
		width: 100%;
	}
	.blogy-blog-layout-19 .et_pb_post:nth-child( odd ) {
		margin-right: 0;
	}
}

/* --- our additions --- */

/*
 * Clearfix — the original relied on a Divi-internal flex wrapper our markup
 * doesn't have.
 */
.blogy-blog-layout-19.acms-past-grid::after {
	content: '';
	display: table;
	clear: both;
}

/*
 * Typography — none of this was ever in the "custom CSS" code block; it came
 * from the old et_pb_blog module's OWN attributes (header_font_size="20px",
 * header_line_height="1.4em", header_letter_spacing="1px", header_font="|600|...",
 * header_text_color="#000000", meta_text_color="#333333", text_orientation="center",
 * read_more_*, pagination_*), which generated their own dynamic CSS that's gone
 * now the module is too. Confirmed live (2026-08-04): without this, .entry-title
 * rendered at the theme's default 51px heading size instead of 20px, wrapping a
 * long title into 8+ lines and stretching to 713px tall — well past its own
 * 300px-tall image, which is what "the entire height of the image" was.
 */
.blogy-blog-layout-19 {
	text-align: center;
}
.blogy-blog-layout-19 .entry-title {
	margin: 0;
	font-size: 20px;
	font-weight: 600;
	letter-spacing: 1px;
	line-height: 1.4em;
	color: #000000;
}
.blogy-blog-layout-19 .entry-title a {
	color: inherit;
	text-decoration: none;
}
.blogy-blog-layout-19 .post-meta {
	color: #333333;
}
.blogy-blog-layout-19 a.more-link {
	color: #000000;
	letter-spacing: 1px;
	line-height: 1.8em;
}

.acms-past-grid__page-current {
	font-weight: 600;
	padding: 0 4px;
}
.acms-past-grid__empty {
	text-align: center;
	color: var( --acms-muted, #6b6b6b );
}

/* ---------- Contributors + Related work (Task 3, single post/event sidebar) ---------- */

.acms-contributors {
	margin-bottom: 32px;
}
.acms-contributors__heading {
	margin: 0 0 14px;
}
.acms-contributors__list {
	list-style: none;
	margin: 0 0 14px;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 14px;
}
.acms-contributors__item {
	display: grid;
	grid-template-columns: 44px 1fr;
	column-gap: 12px;
	align-items: center;
}
.acms-contributors__photo {
	grid-row: 1 / 3;
	display: block;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	overflow: hidden;
}
.acms-contributors__photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.acms-contributors__name {
	font-weight: 600;
	color: inherit;
	text-decoration: none;
}
.acms-contributors__name:hover,
.acms-contributors__name:focus-visible {
	text-decoration: underline;
}
.acms-contributors__role {
	display: block;
	font-size: 12px;
	color: var( --acms-muted, #6b6b6b );
}
.acms-contributors__profiles-link {
	font-weight: 600;
	font-size: 13px;
	color: var( --acms-navy, #155a7a );
	text-decoration: none;
}
.acms-contributors__profiles-link:hover,
.acms-contributors__profiles-link:focus-visible {
	text-decoration: underline;
}

.acms-related-work {
	max-width: 1200px;
	margin: 40px auto;
	padding: 0 20px;
}
.acms-related-work__heading {
	text-align: center;
	margin: 0 0 24px;
}
.acms-related-work__list {
	display: grid;
	grid-template-columns: repeat( 3, 1fr );
	gap: 24px;
}
.acms-related-work__item {
	display: block;
	color: inherit;
	text-decoration: none;
}
.acms-related-work__thumb {
	display: block;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	border-radius: 6px;
	margin-bottom: 10px;
}
.acms-related-work__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.acms-related-work__title {
	display: block;
	font-weight: 600;
}
.acms-related-work__item:hover .acms-related-work__title,
.acms-related-work__item:focus-visible .acms-related-work__title {
	text-decoration: underline;
}

/*
 * Collapse the sidebar column to nothing and let the content column take the
 * full row when there's no contributor data to show (2026-08-04) — scoped to
 * our own module_class selectors, not Divi's positional `_tb_body` classes,
 * since those numbers aren't guaranteed unique across different Theme
 * Builder layouts on the same page (header/body/footer each have their own
 * "column 0"). body.acms-no-sidebar is added by
 * acms_add_no_sidebar_body_class() in contributors.php.
 */
body.acms-no-sidebar .acms-rail-column {
	display: none;
}
body.acms-no-sidebar .acms-content-column {
	width: 100% !important;
	max-width: 100% !important;
}

@media ( max-width: 767px ) {
	.acms-related-work__list {
		grid-template-columns: 1fr;
	}
}

/* ---------- Profile content tabs (Task 4) ---------- */

.acms-profile-tabs {
	max-width: 1200px;
	margin: 0 auto 40px;
	padding: 0 20px;
}

.acms-profile-tabs__heading {
	margin: 0 0 20px;
}

/* No-JS baseline: panels are plain stacked <section>s, spaced apart. Once JS
 * inserts .acms-tabs__tablist and starts hiding non-active panels, this
 * spacing/border still applies to whichever single panel is visible. */
.acms-profile-tabs__panel {
	padding: 32px 0;
	border-top: 1px solid var( --acms-hairline, #e4e4e4 );
}
.acms-profile-tabs__panel:first-of-type {
	border-top: none;
	padding-top: 0;
}
/* Real bug found live (2026-08-04): the browser's own default `[hidden] {
 * display: none }` UA rule was losing to some author CSS elsewhere on the
 * page that sets `display: block` on this element (Divi's own builder CSS,
 * not ours) — JS was correctly toggling the `hidden` attribute/aria-selected/
 * focus/hash the whole time, but every panel still rendered at full height
 * regardless, stacked on top of each other. Confirmed via computed-style
 * check, not just the DOM attribute. This explicit rule wins outright. */
.acms-profile-tabs__panel[hidden] {
	display: none !important;
}

.acms-tabs__tablist {
	display: flex;
	flex-wrap: wrap;
	gap: 4px;
	border-bottom: 1px solid var( --acms-hairline, #e4e4e4 );
	margin-bottom: 8px;
}
.acms-tabs__tab {
	font-family: inherit;
	font-size: 14px;
	font-weight: 600;
	color: var( --acms-muted, #6b6b6b );
	background: none;
	border: none;
	border-bottom: 3px solid transparent;
	padding: 12px 16px;
	cursor: pointer;
	margin-bottom: -1px;
}
.acms-tabs__tab:hover,
.acms-tabs__tab:focus-visible {
	color: var( --acms-navy, #155a7a );
}
.acms-tabs__tab[aria-selected="true"] {
	color: var( --acms-navy, #155a7a );
	border-bottom-color: var( --acms-navy, #155a7a );
}
/* Once JS builds the tablist, panels take the tablist's border instead of
 * their own — avoids a doubled-up rule under the tab strip. */
.acms-profile-tabs[data-js-tabs-ready] .acms-profile-tabs__panel {
	border-top: none;
	padding-top: 32px;
}

.acms-tab-subheading {
	font-size: 15px;
	margin: 24px 0 12px;
}
.acms-tab-subheading:first-child {
	margin-top: 0;
}

/* ---- Publications list ---- */

.acms-pub-list {
	list-style: none;
	margin: 0;
	padding: 0;
}
.acms-pub-row {
	display: flex;
	align-items: baseline;
	gap: 16px;
	padding: 14px 0;
	border-bottom: 1px solid var( --acms-hairline, #e4e4e4 );
}
.acms-pub-row:first-child {
	padding-top: 0;
}
.acms-pub-row__year {
	flex: 0 0 48px;
	font-weight: 700;
	color: var( --acms-navy, #155a7a );
}
.acms-pub-row__body {
	flex: 1 1 auto;
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 2px;
}
.acms-pub-row__title {
	font-weight: 600;
	color: inherit;
	text-decoration: none;
}
.acms-pub-row__title:hover,
.acms-pub-row__title:focus-visible {
	text-decoration: underline;
}
.acms-pub-row__venue {
	font-size: 13px;
	font-style: italic;
	color: var( --acms-muted, #6b6b6b );
}
.acms-pub-row__chip {
	flex: 0 0 auto;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.04em;
	color: var( --acms-teal, #00b0b4 );
	background: rgba( 0, 176, 180, 0.1 );
	border-radius: 4px;
	padding: 4px 8px;
	white-space: nowrap;
}

/* ---- News/media + Projects lists ---- */

.acms-tab-list {
	list-style: none;
	margin: 0;
	padding: 0;
}
.acms-tab-list__row {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 14px 0;
	border-bottom: 1px solid var( --acms-hairline, #e4e4e4 );
}
.acms-tab-list__row:first-child {
	padding-top: 0;
}
.acms-tab-list__thumb {
	flex: 0 0 64px;
	display: block;
	aspect-ratio: 1;
	border-radius: 4px;
	overflow: hidden;
}
.acms-tab-list__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.acms-tab-list__body {
	flex: 1 1 auto;
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 2px;
}
.acms-tab-list__title {
	font-weight: 600;
	color: inherit;
	text-decoration: none;
}
.acms-tab-list__title:hover,
.acms-tab-list__title:focus-visible {
	text-decoration: underline;
}
.acms-tab-list__date {
	font-size: 13px;
	color: var( --acms-muted, #6b6b6b );
}
.acms-tab-list__viewall {
	display: inline-block;
	margin-top: 16px;
	font-weight: 600;
	color: var( --acms-navy, #155a7a );
	text-decoration: none;
}
.acms-tab-list__viewall:hover,
.acms-tab-list__viewall:focus-visible {
	text-decoration: underline;
}
