/* Styles, specific to the excerpt popup. It extends the regular popup component, so most of the base styles come from there */
.excerpt-popup .inner {
	max-width: 1126px;
	padding: 60px;
	align-items: flex-start;
}

.excerpt-popup .inner .popup-title {
	display: block;
	color: #231F20;
	text-transform: uppercase;
	margin-bottom: 30px;
}

.excerpt-popup .inner .excerpt-field {
	display: block;
	width: 100%;
	height: 160px;
	resize: none;
	border: 1px solid #59595980;
	border-radius: 5px;
	margin-bottom: 30px;
}

.excerpt-popup .inner .job-item-previews-wrap {
	display: flex;
	padding: 35px 25px;
	column-gap: 47px;
	background-color: var(--color-background-grey);
	border-radius: 5px;
	margin-bottom: 60px;
}

.excerpt-popup .inner .job-item-previews-wrap .inner-left,
.excerpt-popup .inner .job-item-previews-wrap .inner-right {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.excerpt-popup .inner .job-item-previews-wrap .preview-name {
	font-size: 16px;
	color: var(--color-text);
	margin-bottom: 10px;
}

.excerpt-popup .inner .action-buttons-wrap {
	justify-content: flex-end;
	column-gap: 43px;
}

/* Small */
@media screen and (max-width: 950px) {
	.excerpt-popup {
		overflow: auto;
	}

	.excerpt-popup .inner .popup-title {
		font-size: 16px;
		text-transform: none;
		text-align: left;
	}

	.excerpt-popup .inner .job-item-previews-wrap {
		flex-direction: column;
		row-gap: 25px;
	}

	.excerpt-popup .inner .job-item-previews-wrap .preview-name {
		font-size: 12px;
	}
}