@font-face {
    font-family: "Lora";
    src: url('/fonts/lora.woff2') format('woff2');
    font-weight: 100 900;
}

@font-face {
	font-family: "Cinzel"; 
	src: url("/fonts/cinzel.woff2") format('woff2');
	font-weight: 100 900;
}

:root {
    --base-text: #2B121E;
    --muted: #7A6555;
    --links: #71451E;
    /*--background: #F5DEBB;
    --background: #F7E6CA;*/
    --background: #F8E9D0;
    /*--divider: #C9A87A;*/
    --divider: #D4B48C;
   /* --border: #E2C9A8;*/
    --border: #E8D4B8;
    --border-bottom: #C4935A;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html{
	font-size:clamp(13px, 2.5vw, 16px)
}

body{
	max-width:67ch;
	margin:0 auto;
	padding:0 1.5rem;
	font-family:"Lora", Georgia, serif;
	font-size: 1.25rem;
	line-height:1.75;
	background-color: var(--background);
	color:var(--base-text);
}
/*Header*/
header {
	padding-top: 2rem;
}

h1 {
	font-family: "Cinzel", serif;
	font-weight: 200;
	font-size: 3.8rem;
}


body.article h1 {
	font-size: 3rem;
	margin-bottom: .4rem;
}

h1 a {
	color: var(--base-text);
	border-bottom: none;
}

.definition {
	color:var(--muted);
	font-size: 1rem;
	font-style: italic;
	letter-spacing: 0.05rem;
	margin-bottom:1.5rem;
}

hr {
	border: none;
	border-top: 1px solid var(--divider);
	margin: .8rem 0;
}


/* Main */

main {
	padding-top: .5rem;
	padding-bottom: clamp(2.5rem, 2.5vw, 4rem);
}

p {
	margin-bottom: 1.4rem;
}

/* Links */

a {
	color:var(--links);
	text-decoration:none;
}

a:hover {
	color:var(--base-text);
}

main p a {
    border-bottom: 1px solid var(--border-bottom);
}
	
/* Home Page Specific */

.latest {
	font-size: .9rem;
	font-weight: 500;
	letter-spacing: 0.18rem;
	text-transform: uppercase;
	margin-top: 3rem;
	margin-bottom: 1.2rem;
	color: var(--muted);
}

.latest-posts {
	list-style: none;
	padding: 0;
	margin-bottom: 1rem;
}

ul.latest-posts li {
	padding: 0.55rem 0;
	border-bottom: 1px solid var(--border);
}

ul.latest-posts li:first-child {
	border-top: 1px solid var(--border);
}

.latest-posts a {
	font-size: 1rem;
}

.see-all {
	font-size: 1rem;
	color: var(--muted);
	font-style: italic;
	padding-top: 0.8rem;
}

.see-all:hover {
	color: var(--links);
}

/* Article  Specific */

h2 {
	font-size: 2rem;
	font-weight: 500;
	line-height: 1.3;
	margin-bottom: 1rem;
	margin-top: .4rem;
}

.date {
	font-size: .9rem;
	font-weight: 200;
	font-family: monospace;
	margin-bottom: 1rem;
}

h3 {
	font-size: 1.6rem;
	font-weight: 500;
	margin-bottom: 1rem;
}

/*Site Pages Specific */

.site-page-title{
	font-size: 2rem;
	font-weight: 200;
	letter-spacing: 0.3rem;
	text-transform: uppercase;
	margin-top: .3rem;
	margin-bottom: 1rem;
	color: var(--muted);
}

body.article .latest-posts a {
	font-size: 1.1rem;
}

main.collections .latest-posts a {
	font-size: 1.6rem;
	font-weight: 400;
	letter-spacing: .2rem;
}

main.collections .site-page-title{
	margin-bottom: 2rem;
	letter-spacing: .2rem;
}

main.collections p {
	font-size: 1rem;
}

main.collections h3 {
	margin-bottom: .5rem;
}

main.collections .date {
	font-size: .8rem;
	margin-bottom: .5rem;
}

tab { 
       display:inline-block; 
       margin-left: 2.5rem; 
}

/* Footer */

footer {
	padding: 1.5rem 0 3rem;
	font-size: .8rem;
	color: var(--muted);
	font-style: italic;
}

footer a {
	color: var(--muted);
	text-decoration:none;
}

#mobile-wrap {
	display: none;
}

#mobile-delete {
	display: inline;
}

@media (max-width: 50ch) { 
	#mobile-wrap { display: inline; }
	#mobile-delete {display: none;}
}

