/* Schedule hero styles */
.schedule-hero {
	background-image: url("../../images/BG-Jadwal.jpg");
	height: auto;
	min-height: 35rem;
	background-repeat: no-repeat;
	background-size: cover;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	color: #fff;
	gap: 1rem;
}

.schedule-title {
	font-size: 4.5rem;
	margin-bottom: 3rem;
}

.jadwal-subtitle {
	text-align: center;
}

.schedule-subtitle {
	font-size: 2rem;
	font-weight: 300;
}

/* Schedule card styles */
.schedule-card-wrapper {
	padding: 6rem 14rem;
	width: 100%;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2rem;
}

.schedule-card-wrapper .schedule-item {
	/* border: 1px solid magenta; */
	width: 100%;
	max-width: 900px;
	display: flex;
	flex-direction: column;
	background-color: white;
	border-radius: 0.8rem;
	padding: 2rem;
	gap: 2rem;
	border: 1px solid #dbdbdb;
}

.schedule-item .schedule-item__company {
	/* border: 1px solid magenta; */
	/* flex: 1; */
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1.5rem;
}

.schedule-item .schedule-item__company .schedule-item__company-desc {
	display: flex;
	flex-direction: column;
	grid-area: 0.5rem;
}

.schedule-item__company .company-image {
	/* height: 2.2rem; */
	width: 10rem;
}

.schedule-item__company .company-title {
	font-weight: 700;
	text-transform: uppercase;
}

.schedule-item__company .company-close-date {
	color: #979797;
}

.schedule-item .schedule-item__date {
	/* flex: 2; */
	display: flex;
	justify-content: center;
	align-items: center;
}

.schedule-item__date .date-wrapper {
	/* border: 1px solid magenta; */
	display: flex;
	gap: 4rem;
}

.date-wrapper .date-start,
.date-wrapper .date-end {
	/* border: 1px solid magenta; */
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
	gap: 1rem;
}

.date-start .date-start__date,
.date-end .date-end__date {
	font-weight: 700;
}

.date-start .date-start__bubble,
.date-end .date-end__bubble {
	background-color: #f0f0f0;
	padding: 0.4rem 2rem;
	border-radius: 99rem;
	color: #979797;
}

.date-start .date-start__city,
.date-end .date-end__city {
	color: #979797;
	text-transform: uppercase;
}

.schedule-item__date .date-timeline {
	/* border: 1px solid magenta; */
	display: flex;
	justify-content: center;
	flex-direction: column;
	align-items: center;
	color: #979797;
	gap: 0.8rem;
	padding: 0 0.9rem;
}

.date-timeline .date-timeline__line {
	/* border: 1px solid magenta; */
	position: relative;
	display: flex;
	align-items: center;
}

.date-timeline__line .line-bridge {
	height: 0.1rem;
	width: 10rem;
	background-color: #979797;
}

.date-timeline__line .line-start,
.date-timeline__line .line-end {
	width: 0.9rem;
	height: 0.9rem;
	border-radius: 99rem;
	background-color: #979797;
	position: absolute;
}

.date-timeline__line .line-start {
	left: -0.9rem;
	background-color: white;
	border: 1px solid #979797;
}

.date-timeline__line .line-end {
	right: -0.9rem;
	background-color: #979797;
	border: 1px solid #979797;
}

/* Responsive */
@media only screen and (max-width: 1024px) {
	/* responsive schedule */
	.schedule-card-wrapper {
		padding: 6rem 8rem;
		/* width: 100%;
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 2rem; */
	}
}

@media only screen and (max-width: 768px) {
	.schedule-card-wrapper {
		/* padding: 6rem 8rem; */
		/* width: 100%; */
		/* display: grid; */
		grid-template-columns: 1fr;
		/* gap: 2rem; */
	}
}

@media only screen and (max-width: 625px) {

}

@media only screen and (max-width: 425px) {
	.schedule-card-wrapper {
		padding: 6rem 2rem;
		/* width: 100%;
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 2rem; */
	}

	.schedule-title {
		font-size: 3rem;
	}
}

@media only screen and (max-width: 395px) {
	.schedule-item__date .date-wrapper {
		/* border: 1px solid magenta; */
		display: flex;
		flex-direction: column;
		/* gap: 4rem; */
	}
}

@media only screen and (max-width: 320px) {
	/* responsive schedule */
}

@media only screen and (max-width: 280px) {
	/* responsive schedule */
	.schedule-item .schedule-item__company {
		/* border: 1px solid magenta; */
		/* flex: 1; */
		/* display: flex; */
		/* align-items: center; */
		/* justify-content: center; */
		/* gap: 1.5rem; */
		flex-direction: column;
	}
}
