/* ==========================================================================
   Access Page
   ========================================================================== */

/* Map */
.access-map__embed {
	position: relative;
	width: 100%;
	padding-bottom: 45%;
	border-radius: 8px;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.12);
}

.access-map__embed iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/* Info Layout */
.access-info {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
}

/* Table */
.access-info__table {
	width: 100%;
	border-collapse: collapse;
}

.access-info__table th,
.access-info__table td {
	padding: 1.25rem 1.5rem;
	border-bottom: 1px solid var(--color-border);
	text-align: left;
}

.access-info__table th {
	width: 35%;
	color: #d45500;
	font-weight: 700;
	font-size: var(--fs-small);
	white-space: nowrap;
}

.access-info__table td {
	color: var(--color-text-sub);
}

/* Directions */
.access-directions__item {
	padding: 1.5rem 0;
	border-bottom: 1px solid var(--color-border);
}

.access-directions__item:first-child {
	padding-top: 0;
}

.access-directions__label {
	color: #d45500;
	font-size: 1rem;
	font-weight: 700;
	margin-bottom: 0.25rem;
}

.access-directions__text {
	color: var(--color-text-sub);
}

/* Responsive */
@media (max-width: 768px) {
	.access-map__embed {
		padding-bottom: 75%;
	}

	.access-info {
		grid-template-columns: 1fr;
		gap: 3rem;
	}

	.access-info__table th,
	.access-info__table td {
		display: block;
		width: 100%;
		padding: 0.75rem 1rem;
	}

	.access-info__table th {
		border-bottom: none;
		padding-bottom: 0.25rem;
	}
}
