main {
	align-self: self-end;
	align-content: space-between;
}

h1 {
	font-family: var(--cursive);
	font-size: var(--fs-xl);
	font-weight: var(--fw-rg);
	color: var(--heading-1);

	margin-bottom: 24px;
}

h2 {
	font-size: var(--fs-lg);
	color: var(--text-secondary);
	margin-bottom: 16px;
}

section > p {
	margin-bottom: 24px;
}

p span {
	font-family: var(--cursive);
	font-size: var(--fs-lg);
	color: var(--heading-1);
}

ul {
    list-style-type: none;
    display: flex;
    flex-direction: column;
    gap: 0;
 }

li a {
	text-decoration: none;
	color: var(--text-primary);
	display: block;
	padding: 12px 0;
	transition: opacity 0.15s ease-out;
}

@media (hover: hover) and (pointer: fine) {
    ul:hover a {
    	opacity: 0.4;
    }

    ul:hover a:hover {
    	opacity: 1;
    }

    ul:hover a:hover .divider {
    	background-color: var(--text-tertiary);
    	opacity: 0.75;
    }
    ul:hover a:hover .date {
    	color: var(--text-secondary);
    	opacity: 1;
    }
}

li a > div {
	display: flex;
	gap: .5rem;
	justify-content: space-between;
	align-items: baseline;
}

.separator {
	flex: 1 1 3rem;
	min-width: 3rem;
	margin: 0 0.25rem;
    height: 0.5px;
    background-color: var(--border);
}

@media only screen and (max-width: 560px) {
	li a > div {
		flex-direction: column;
		gap: 0;
	}

	.separator {
		display: none;
	}
}