/* --------------------------------
	GO BACK BUTTON
---------------------------------- */
article a {
	margin-top: 3rem;
	font-size: 1.3rem;
	text-decoration: none;
	color: #3498DB;
	font-weight: bold;
	display: inline-block; /* needed for transition */
	transition: transform 0.2s ease;
}

article a::before {
	content: "← ";
	font-weight: bold;
}

article a:hover {
	transform: translateX(-5px);
}

/* --------------------------------
	ARTICLE CONTENT BASIC LAYOUT
---------------------------------- */
article {
	width: 90%;
	max-width: 1250px;
	margin: auto;
}

.article-header {
	text-align: center;
	margin: 5rem 0 3rem;
}

.article-header h1 {
	margin-bottom: 2rem;
	font-size: clamp(2.5rem, 5vw, 3rem);
}

article h2, h3 {
	text-align: center;
	padding-bottom: 2rem;
}

.article-header p {
	font-style: italic;
	line-height: 2.5rem;
}

article .separator {
	width: 30%;
	height: 5px;
	background-color: #3498DB;
	border-radius: 5px;
	margin: 0 auto;
}

.article-text-box {
	margin: 3rem 0;
	text-align: center;
}

/* --------------------------------
	HIGHLIGHT BOX LAYOUT
---------------------------------- */
.highlight-box {
	background: linear-gradient(135deg, #e4ecf2, #d5dfe7);
	padding: 5rem 5rem;
	border-radius: 5px;
	margin-bottom: 3rem;
}

.highlight-box ul {
	list-style-position: inside;
}

.highlight-box li {
	margin-bottom: 1.5rem; /* space between bullet points */
}

article .row {
	align-items: flex-start;
	gap: 4rem;
	margin: 0 auto;
}

.highlight-box-col {
	flex-basis: 50%;
}

/* --------------------------------
	CAROUSEL(REUSE FROM STYLE.CSS)
---------------------------------- */
.carousel-container {
	width: 80%;
	margin: auto;
}

.carousel {
	margin-top: 5rem;
	grid-auto-columns: 100%; /* one card per slide */
}

.card img {
	aspect-ratio: 6 / 4;
}

.carousel-pagination {
	margin-bottom: 7rem;
}

/* ===============================
	MEXICO SPECIFIC CONTENT
================================ */
.activities-container {
	text-align: center;
	margin-top: 2rem;
}

.activities-container ul {
	list-style: none;
}

.row.mexico-singing {
	margin: 4rem 0;
}

.mexico-singing-col iframe {
	border-radius: 5px;
	width: clamp(300px, 40vw, 500px);
	height: clamp(300px, 40vw, 500px);
}

.mexico-singing-col p {
	text-align: left;
	line-height: 2.5rem;
}

/* ===============================
	DOMINICAN REPUBLIC CONTENT
================================ */
.testimonies-row1 {
	margin-bottom: 3.5rem;
	text-align: center;
}

.testimonies-col {
	text-align: center;
}

/* ===============================
	SAN LUIS CONTENT
================================ */
.day-label {
	padding: 2rem 0 0;
}

.row.san-luis-singing {
	align-items: center;
}

.highlight-box-col iframe {
	border-radius: 5px;
	width: clamp(300px, 40vw, 500px);
	height: clamp(300px, 40vw, 500px);
}

.highlight-box-text {
	text-align: left;
}

/* ===============================
	ADJUSTING FOR SMALLER SCREENS
================================ */
@media(max-width: 1200px) {
	/* San Luis Article */
	.san-luis-singing {
		flex-direction: column;
	}
}

@media(max-width: 800px) {
	/* General */
	.highlight-box {
		padding: 5rem 3rem;
	}

	.highlight-box ul {
		text-align: center;
	}

	article .row {
		gap: 3rem;
	}

	/* Mexico Article */
	.activities-container ul {
		list-style: disc; /* order matters, list-style (when set, defaults list-style-position: outside) needs to be first for list-style-position to override it */
		list-style-position: inside;
	}

	.activities-container {
		margin-top: 3rem;
	}
}

@media(max-width: 550px) {
	/* San Luis Article */
	.san-luis-pagination {
		gap: 0.3rem;
	}

	.san-luis-pagination .carousel-dot {
		width: 8px;
		height: 8px;
	}
}


