.goldstay-documents-header {
	margin-bottom: 24px;
}

.goldstay-documents-title {
	margin: 0;
	color: #202020;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: .14em;
	line-height: 1.3;
	text-transform: uppercase;
}

.goldstay-documents-description {
	margin-top: 8px;
	color: #667085;
}

.goldstay-documents-description p:last-child {
	margin-bottom: 0;
}

.goldstay-documents {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
	row-gap: 10px;
}

.goldstay-documents.is-list,
.goldstay-documents.is-editorial {
	grid-template-columns: 1fr;
}

.goldstay-document {
	display: flex;
	min-width: 0;
	align-items: center;
	gap: 13px;
	padding: 5px 0;
	background: #fff;
	color: #344054;
	text-decoration: none;
	transition: color .2s ease, background-color .2s ease, box-shadow .2s ease;
}

.goldstay-document-icon {
	display: inline-flex;
	width: 20px;
	height: 20px;
	flex: 0 0 20px;
	align-items: center;
	justify-content: center;
	color: #555;
}

.goldstay-document-icon i {
	font-size: 18px;
}

.goldstay-document-icon svg {
	width: 18px;
	height: 18px;
	fill: currentColor;
}

.goldstay-document-content {
	display: flex;
	min-width: 0;
	flex: 1;
	flex-direction: column;
	gap: 5px;
}

.goldstay-documents.is-editorial .goldstay-document-content {
	display: grid;
	grid-template-columns: minmax(0, 1.5fr) minmax(130px, .85fr) minmax(70px, .3fr);
	align-items: center;
	column-gap: 28px;
}

.goldstay-document-label {
	min-width: 0;
	color: #555;
	font-size: 13px;
	font-weight: 400;
	line-height: 1.3;
}

.goldstay-document-meta {
	display: flex;
	min-width: 0;
	flex-wrap: wrap;
	align-items: center;
	gap: 4px 9px;
	color: #747474;
	font-size: 12px;
}

.goldstay-document-meta span + span::before {
	margin-right: 9px;
	content: "•";
}

.goldstay-document-filename {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.goldstay-document-action {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 4px;
	margin: 0;
	color: #333;
	font-size: 12px;
	font-weight: 500;
}

.goldstay-document-action .dashicons {
	width: 15px;
	height: 15px;
	font-size: 15px;
}

.goldstay-documents.is-buttons .goldstay-document-meta {
	display: none;
}

.goldstay-documents-empty {
	padding: 24px;
	border: 1px dashed #cbd5e1;
	border-radius: 10px;
	text-align: center;
}

@media (max-width: 1024px) {
	.goldstay-documents:not(.is-list):not(.is-editorial) {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 767px) {
	.goldstay-documents:not(.is-list):not(.is-editorial) {
		grid-template-columns: 1fr;
	}

	.goldstay-documents.is-editorial .goldstay-document {
		align-items: flex-start;
	}

	.goldstay-documents.is-editorial .goldstay-document-content {
		grid-template-columns: minmax(0, 1fr) auto;
		row-gap: 6px;
		column-gap: 16px;
	}

	.goldstay-documents.is-editorial .goldstay-document-label {
		grid-column: 1 / -1;
	}
}
