.offme-report-detail-main {
	width: min(900px, calc(100% - 32px));
}

.offme-report-detail-hero h1 {
	overflow-wrap: anywhere;
	text-wrap: wrap;
	word-break: keep-all;
}

.offme-report-standard-title,
.offme-report-editorial-title {
	display: block;
}

.offme-report-standard-title {
	font-size: .82em;
}

.offme-report-editorial-title {
	margin-top: 8px;
	color: #555;
	font-size: .62em;
	font-weight: 700;
	line-height: 1.5;
}

.offme-report-kicker {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	margin: 0 0 8px;
	color: #666;
	font-size: 12px;
	font-weight: 700;
}

.offme-report-event-tag {
	display: inline-flex;
	align-items: center;
	min-height: 24px;
	padding: 2px 10px;
	border-radius: 2px;
	background: var(--event-tag, #ec6ba2);
	color: #fff !important;
	font-size: 11px;
	font-weight: 700;
	line-height: 1.35;
}

.offme-report-event-tag.offme-category {
	margin: 0;
}

.offme-custom-event-style .offme-report-event-tag.offme-category {
	background: var(--event-tag, #ec6ba2) !important;
}

.offme-report-event-tag:hover,
.offme-report-event-tag:focus-visible {
	color: #fff;
}

.offme-report-featured-image {
	margin: 0 0 18px;
	overflow: hidden;
	border-radius: 4px;
	background: #f4f4f4;
}

.offme-report-featured-image img {
	display: block;
	width: 100%;
	height: auto;
}

.offme-report-summary {
	margin-bottom: 6px;
}

.offme-report-overview .offme-info-table th {
	width: 24%;
}

.offme-report-organizer-names {
	overflow-wrap: anywhere;
}

#report-article.offme-report-body {
	min-width: 0;
	padding-top: 0;
}

.offme-report-content {
	width: 100%;
	max-width: 100%;
	overflow-x: auto;
	padding: 0 0 8px;
	-webkit-overflow-scrolling: touch;
}

.offme-report-content > :first-child {
	margin-top: 0;
}

.offme-report-content img,
.offme-report-content video,
.offme-report-content canvas,
.offme-report-content svg {
	max-width: 100%;
	height: auto;
}

.offme-report-content iframe {
	max-width: 100%;
}

.offme-report-content table {
	margin-right: 0;
	margin-left: 0;
}

.offme-report-content a {
	overflow-wrap: anywhere;
}

.offme-report-content h2,
.offme-report-content h3,
.offme-report-content h4 {
	overflow-wrap: anywhere;
}

.offme-report-content .wp-caption {
	max-width: 100%;
}

.offme-report-video p {
	margin: 9px 0 0;
	text-align: center;
}

.offme-video-frame {
	position: relative;
	height: 0;
	overflow: hidden;
	padding-bottom: 56.25%;
	background: #111;
}

.offme-video-frame iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

.offme-report-primary-link {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	margin-top: 14px;
	padding: 10px 18px;
	border-radius: 4px;
	background: #0f7a5c;
	color: #fff !important;
	font-weight: 800;
	text-align: center;
}

.offme-report-primary-link:hover,
.offme-report-primary-link:focus-visible {
	background: #095b44;
	text-decoration: none !important;
}

.offme-report-organizers {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
	gap: 10px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.offme-report-organizers li {
	display: flex;
	min-width: 0;
	align-items: center;
	gap: 11px;
	padding: 10px;
	border: 1px solid #ddd;
	border-radius: 4px;
	background: #fff;
	font-weight: 700;
}

.offme-report-organizers img {
	width: 52px;
	height: 52px;
	flex: 0 0 52px;
	border-radius: 50%;
	object-fit: cover;
}

.offme-report-organizers a,
.offme-report-organizers span {
	min-width: 0;
	overflow-wrap: anywhere;
}

.offme-report-related-links {
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.offme-report-line-cta {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: center;
	gap: 2px 18px;
	margin-top: 32px;
	padding: 18px 20px;
	border-radius: 6px;
	background: #eefbf2;
	border: 2px solid #21b34b;
}

.offme-report-line-cta strong {
	color: #136c2c;
	font-size: 17px;
}

.offme-report-line-cta span {
	color: #555;
	font-size: 12px;
}

.offme-report-line-cta a {
	grid-column: 2;
	grid-row: 1 / span 2;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	padding: 8px 16px;
	border-radius: 4px;
	background: #16b93d;
	color: #fff;
	font-weight: 800;
	white-space: nowrap;
}

.offme-report-line-cta a:hover,
.offme-report-line-cta a:focus-visible {
	background: #0d8e2c;
	text-decoration: none;
}

@media (max-width: 640px) {
	.offme-report-detail-main {
		width: 100%;
	}

	.offme-report-detail-hero h1 {
		font-size: clamp(18px, 5.4vw, 21px);
		line-height: 1.42;
	}

	.offme-report-standard-title {
		font-size: 1em;
	}

	.offme-report-editorial-title {
		font-size: .68em;
	}

	.offme-report-kicker {
		align-items: flex-start;
	}

	.offme-report-overview .offme-info-table th {
		width: 100%;
	}

	.offme-report-content {
		font-size: 13px;
	}

	.offme-report-content p {
		font-size: 14px;
	}

	.offme-report-content h2 {
		font-size: 18px;
	}

	.offme-report-content h3 {
		font-size: 17px;
		line-height: 1.35;
	}

	.offme-report-content td,
	.offme-report-content th {
		min-width: 76px;
		padding-right: 6px;
		padding-left: 6px;
		font-size: 11px;
	}

	.offme-report-organizers {
		grid-template-columns: 1fr;
	}

	.offme-report-related-links {
		grid-template-columns: 1fr;
	}

	.offme-report-line-cta {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.offme-report-line-cta a {
		grid-column: 1;
		grid-row: auto;
		margin-top: 10px;
		white-space: normal;
	}
}

@media (max-width: 375px) {
	.offme-report-detail-hero h1 {
		font-size: 20px;
	}

	.offme-report-standard-title {
		font-size: 1em;
	}

	.offme-report-editorial-title {
		font-size: 14px;
	}

	.offme-report-kicker {
		font-size: 11px;
	}

	.offme-share a {
		flex: 1 1 0;
		width: auto;
		min-width: 0;
	}

	.offme-report-content td,
	.offme-report-content th {
		min-width: 68px;
	}
}
