.office-address {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	align-items: center;
	justify-content: space-between;
	column-gap: 48px;
	row-gap: 8px;
	background: #fff;
	padding-left: 20px;
	padding-top: 12px;
	padding-right: 20px;
	padding-bottom: 12px;
	border-radius: 20px;
	border: 1px solid #EEEEEE;
}

@media (min-width: 1024px) {
	.office-address {
		width: 440px;
	}
}

.office-address .office-address-value {
	font-size: 16px;
	font-weight: bold;
	line-height: 1.2em;
}

.office-address .office-address-schedule {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	max-width: 100%;
	font-size: 13px;
	white-space: nowrap;
	line-height: 1.2em;
	text-overflow: ellipsis;
	overflow: hidden;
}

