@import url("/static/dgst/css/pages/communication.css");

.relatedSiteContentsContainer {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	row-gap: 1rem;
	width: 100%;
	height: auto;
}
.relatedSiteContentsItem {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	row-gap: 1rem;
	min-width: unset;
	width: 100%;
	height: auto;
	padding-top: 1.5rem;
	padding-bottom: 1.5rem;
	border-bottom: 1px solid var(--grey-color);
}
.relatedSiteContentsImage {
	display: inline-block;
	width: 100%;
	height: 13.625rem;
	background-color: rgba(0, 0, 0, 0.03);
	border-radius: 0.5rem;
	overflow: hidden;
}
.relatedSiteContentsImage img {
	width: 100%;
	height: 100%;
}
.relatedSiteInformationList {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	row-gap: 0.625rem;
	width: 100%;
	height: auto;
}
.relatedSiteInformationItem {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: flex-start;
	align-items: flex-start;
	column-gap: 0;
	width: 100%;
	height: auto;
}
.relatedSiteInformationLabel {
	display: inline-block;
	max-width: 5rem;
	width: 100%;
	color: var(--text-color);
	font-size: 1rem;
	font-weight: var(--font-weight-semi-bold);
	line-height: 1.4;
	text-align: left;
}
.relatedSiteInformationValue {
	flex: 1;
	display: -webkit-box;
	width: auto;
	height: auto;
	color: var(--text-color);
	font-size: 1rem;
	font-weight: var(--font-weight-regular);
	line-height: 1.4;
	text-align: left;
	overflow: hidden;
	word-break: break-word;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

.relatedSiteInformationValue a {
	justify-content: flex-start;
	font-weight: var(--font-weight-regular);
	text-align: left;
	text-decoration: underline;
}

@media screen and (min-width: 768px) {
	.relatedSiteContentsItem {
		flex-direction: row;
		flex-wrap: nowrap;
		column-gap: 1.5rem;
		flex: calc(50% - 2rem);
	}
	.relatedSiteContentsImage {
		max-width: 11.25rem;
		height: 7.5rem;
	}
}

@media screen and (min-width: 1024px) {
	.relatedSiteContentsContainer {
		flex-direction: row;
		flex-wrap: wrap;
		justify-content: space-between;
		align-items: stretch;
		column-gap: 1.5rem;
	}

	.relatedSiteContentsItem {
		max-width: 50%;
	}
}

@media screen and (min-width: 1440px) {
}
