:root {
	--sans_family: Avenir, 'Lucida Grande', Lucida, Verdana, sans-serif;
	--serif_family: Palatino, Georgia, serif;
	--fixed_family: Courier, monospace;
	--fancy_family: 'Fabled Flourish', 'Apple Chancery', 'Hoefler Text', 'Lucida Calligraphy',
		'Monotype Corsiva', cursive;
}

body {
	font-size: 18px;
	margin-left: 10%;
	margin-right: 10%;
	margin-top: 80px;
}

.social-links {
	list-style: none;
	margin: 0;
	padding: 0;
}

.social-links li {
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 12px;
	margin-left: 0;
}

.social-links a {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	text-decoration: none;
	font-size: 18px;
	/* line-height: 1.3; */
	padding: 8px 12px;
	border-radius: 10px;
	transition: background-color 0.2s ease, transform 0.2s ease;
}

.social-links a:hover {
	background-color: #f3f4f6;
	transform: translateX(2px);
}

.social-links img {
	width: 36px;
	height: 36px;
	display: block;
}

h1.aladdin,
.preface-footer,
.day-footer {
	color: #3C3B6E; /* US flag blue */
	border-top: 4px solid #B22234; /* US flag red */
	padding-top: 10px;
	margin-top: 20px;
}

.border-top {
	display: inline-flex;
	flex-direction: column;
	border-top: 2px solid #3C3B6E; /* US flag blue */
	padding-top: 10px;
	margin-top: 20px;
}

.aladdin {
	font-family: var(--serif_family);
	font-size: 24px;
}

.book-cover {
	display: inline-block;
	width: auto;
	border: 1px solid #bbb;
	box-shadow: 3px 4px 10px rgba(0, 0, 0, 0.18);
	background: white;
	padding: 20px;
	margin-bottom: 20px;
}

.gray {
	color: gray;
}

.two-col {
	display: inline-grid;
	grid-template-columns: auto 10vw 360px;
	align-items: start;
	max-width: 100%;
}

.two-col-left {
	grid-column: 1;
	min-width: 0;
}

.two-col-right {
	grid-column: 3;
	min-width: 0;
}

img.day {
	display: block;
	width: 350px;
	margin-bottom: 20px;
}
.aladdin-link {
	display: inline-block;
	text-decoration: none;
	color: inherit;
}

a.aladdin-link:hover {
	color: blue;
	text-decoration: underline;
}

ul.flat {
	list-style: none;
	margin: 0;
	padding-left: 0;
}

.row {
	border-top: 2px
	display: flex;
	gap: 24px;
	align-items: flex-start;
	margin-bottom: 24px;
}

.left {
	flex: 1 1 55%;
	display: flex;
	gap: 12px;
	align-items: flex-start;
}

.day {
	font-weight: 700;
	min-width: 2ch;
}

.right {
	flex: 1 1 45%;
}

.right img {
	max-width: 100%;
	height: auto;
	display: block;
}

/* SEE ALSO in detective & Tin Man: interlude, overlay */
.narration {
    font-family: var(--serif_family);
    font-style: italic;
    /* font-size: 1.25rem; */
    margin-top: 25px;
    max-width: 25ch;
}

.book-cover {
	display: inline-block;
	width: auto;
	border: 1px solid #bbb;
	box-shadow: 3px 4px 10px rgba(0, 0, 0, 0.18);
	background: white;
	padding: 20px;
	margin-bottom: 20px;
}

@media (max-width: 1000px) {
    .two-col {
        display: grid;
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .two-col-left,
    .two-col-right {
        grid-column: auto;
    }
}
