/**
 * Theme Name: DCP
 * Description: Blocksy Child theme
 * Author: team A design
 * Version: 1.0.0
 * Template: blocksy
 * Text Domain: blocksy
 */
 
 .project-streaming-links, .project-laurels, .project-accolades {
	 margin-top: 60px;
 }
 
 .project-accolade {
	 font-size: 28px;
 }

/* Distributors and the trailer button share a left-aligned row under the page header. */
.project-header-row {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	flex-wrap: wrap;
	gap: 20px;
}

/* Trailer video popup: button opens a modal that autoplays the embed. */
.project-trailer-trigger {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	padding: 14px 28px;
	border: 0;
	border-radius: 999px;
	background: #fff;
	color: #111;
	cursor: pointer;
	transition: background 0.2s ease, color 0.2s ease;
}

.project-trailer-play-icon {
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 8px 0 8px 13px;
	border-color: transparent transparent transparent #111;
	transition: border-color 0.2s ease;
}

.project-trailer-trigger-label {
	font-weight: 600;
}

.project-trailer-trigger:hover,
.project-trailer-trigger:focus-visible {
	background: var(--theme-link-hover-color, #e0301e);
	color: #fff;
}

.project-trailer-trigger:hover .project-trailer-play-icon,
.project-trailer-trigger:focus-visible .project-trailer-play-icon {
	border-color: transparent transparent transparent #fff;
}

.project-trailer-modal {
	position: fixed;
	inset: 0;
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
}

.project-trailer-modal[hidden] {
	display: none;
}

.project-trailer-modal-backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.85);
}

.project-trailer-modal-dialog {
	position: relative;
	width: 100%;
	max-width: 960px;
}

.project-trailer-modal-close {
	position: absolute;
	top: -44px;
	right: 0;
	width: 36px;
	height: 36px;
	border: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.15);
	color: #fff;
	font-size: 22px;
	line-height: 1;
	cursor: pointer;
}

.project-trailer-modal-close:hover,
.project-trailer-modal-close:focus-visible {
	background: rgba(255, 255, 255, 0.3);
}

.project-trailer-modal-embed {
	position: relative;
	aspect-ratio: 16 / 9;
	width: 100%;
	overflow: hidden;
	background: #000;
}

.project-trailer-modal-embed iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

html.project-trailer-modal-open,
html.project-trailer-modal-open body {
	overflow: hidden;
}

/* Press quotes grid: 3 columns desktop, 2 tablet, 1 mobile (Blocksy's own breakpoints). */
.press-quotes-grid {
	--press-grid-columns: 3;
	display: grid;
	grid-template-columns: repeat(var(--press-grid-columns), 1fr);
	gap: var(--grid-columns-gap, 30px);
}

@media (max-width: 999.98px) {
	.press-quotes-grid {
		--press-grid-columns: 2;
	}
}

@media (max-width: 689.98px) {
	.press-quotes-grid {
		--press-grid-columns: 1;
	}
}

.press-quote {
	padding: 0;
}
.press-quotation {
	margin-bottom: 0;
}
.press-attribution {
	font-weight: 600;
}
.press-publication {
	font-style: italic;
}
.press-publication a {
	color:#fff;
	text-decoration: underline;
}

.single-project .post-navigation {
	border-top:1px solid rgba(255,255,255,.2);
}

.project-streaming-links h2 {
	text-transform: uppercase;
	margin-bottom: 0;
}

.streaming-links-list {
	list-style: none;
	padding: 0;
}
.streaming-links-list li {
	display: inline-block;
	max-width: 160px;
	margin-right: 30px;
}

.distributors-list img {
	max-height: 60px;
}