@charset "utf-8";

/* DAY TAB */
.dayTab {
	justify-content: center;
	gap: 2rem;
	margin-bottom: 8rem;
}

.dayTab a {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 220px;
	height: 60px;
	border-radius: 10px;
	background: #04d1ac;
	color: #ffffff;
	font-family: "Lato", sans-serif;
	font-size: 3rem;
	font-weight: 900;
	line-height: 1;
	transition: all 0.2s;
}

.dayTab a.is-current {
	background: #00856d;
	pointer-events: none;
}

.dayTab a .arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	right: 2rem;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 6px 0 6px 8px;
	border-color: transparent transparent transparent #ffffff;
}

@media screen and (min-width: 769px) {
	.dayTab a:not(.is-current):hover {
		background: #00856d;
	}
}

/* SECTION HEAD (badge + heading), shared by every content box */
.secHead {
	display: flex;
	align-items: center;
	gap: 2rem;
	padding-bottom: 3rem;
	margin-bottom: 2rem;
	border-bottom: 2px solid #00856d;
}

.secHead .badge {
	flex-shrink: 0;
	display: inline-block;
	background: #00856d;
	color: #ffffff;
	font-weight: bold;
	font-size: 2.2rem;
	line-height: 1;
	padding: 1rem 2rem;
	border-radius: 5px;
	white-space: nowrap;
}

.secHead h3 {
	color: #00856d;
	font-size: 2.8rem;
	font-weight: bold;
	line-height: 1.4;
}

/* PERSON CARD (photo + name + org), shared base */
.personCard {
	display: flex;
	gap: 2rem;
	padding: 2.5rem;
	border: 2px solid #dddddd;
	border-radius: 10px;
}

.personCard .photo {
	flex-shrink: 0;
	width: 150px;
	height: 180px;
	border-radius: 5px;
}

.personCard .photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	border-radius: 8px;
}

.personCard .name {
	font-size: 2rem;
	font-weight: bold;
	line-height: 1.4;
}

.personCard .org {
	font-size: 1.4rem;
	color: #666666;
	margin-top: 0.5rem;
	line-height: 1.4;
}

@media screen and (max-width: 1024px) {
    .secHead h3 {
    	font-size: 2.4rem;
    }

    .secHead .badge {
    	font-size: 1.8rem;
    }

    .dayTab a {
    	font-size: 2rem;
    }
}

@media screen and (max-width: 768px) {
	.dayTab {
		gap: 1rem;
		margin-bottom: 5rem;
	}

	.dayTab a {
		min-width: 0;
		flex: 1;
		padding: 1.5rem 1rem;
		font-size: 1.6rem;
		width: 27vw;
		max-width: 220px;
	}

	.dayTab a .arrow {
		right: 1rem;
	}

	.secHead {
		gap: 1rem;
		margin-bottom: 2rem;
	}

	.secHead .badge {
		font-size: 1.3rem;
		padding: 0.8rem 1.2rem;
	}

	.secHead h3 {
		font-size: min(5.5vw, 2rem);
	}

	.personCard {
		flex-wrap: wrap;
		padding: 2rem;
	}

	.personCard .photo {
		width: 120px;
		height: 144px;
	}

	.personCard .info {
		width: calc(100% - 120px - 2rem);
	}
}
