/* =========================================================
   ART AND ARTIFICE
   CLEANED MASTER STYLESHEET
   AUGUST 16 2026
========================================================= */


/* =========================================================
   BOX SIZING
========================================================= */

*,
*::before,
*::after {
	box-sizing: border-box;
}


/* =========================================================
   RESET
========================================================= */

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
menu,
nav,
section {
	margin: 0;
	padding: 0;
	border: 0;
}


/* =========================================================
   GLOBAL
========================================================= */

body {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 100%;
	line-height: 1.65;
	color: #2e2e2e;
	background: #ece9e4;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
	border: 0;
}


/* =========================================================
   GENERAL UTILITIES
========================================================= */

.floatright {
	float: right;
	margin-left: 10px;
}

.floatover {
	float: right;
}

.clearboth {
	clear: both;
}

.clearfix::after {
	content: "";
	display: block;
	clear: both;
}


/* =========================================================
   MAIN LAYOUT
========================================================= */

#pagewrap {
	width: 1080px;
	max-width: 95%;
	margin: 0 auto;
}

#content {
	width: 620px;
	float: left;
	margin: 10px 0 30px;
	padding: 25px 35px;
	background: #ffffff;
	color: #2e2e2e;
	border-radius: 8px;
	box-shadow: 0 1px 3px rgba(0, 0, 0, .18);
}

#sidebar {
	width: 380px;
	float: right;
	margin: 10px 0 30px;
}

.widget {
	background: #f4f2ee;
	margin-bottom: 40px;
	padding: 15px 20px;
	border-radius: 8px;
	box-shadow: 0 1px 3px rgba(0, 0, 0, .12);
}

#whiteboxlarge {
	background-color: #ffffff;
	padding: 10px;
	border-radius: 8px;
}


/* =========================================================
   TYPOGRAPHY
========================================================= */

h1 {
	font-size: 200%;
	line-height: 1.2;
	color: #1f2933;
	margin-bottom: 20px;
	font-weight: bold;
}

.h1white {
	font-size: 200%;
	line-height: 1.2;
	color: #ffffff;
	margin-bottom: 20px;
	font-weight: bold;
}

h2 {
	font-size: 160%;
	line-height: 1.4;
	color: #1f2933;
	margin-bottom: 15px;
	font-weight: bold;
}

h3,
h4,
h5,
h6 {
	color: #8b6b2e;
	line-height: 1.4;
	margin-bottom: 15px;
}

p {
	margin-bottom: 1.3em;
}

.titlewhite,
.justwhite,
#whitetitle {
	color: #ffffff;
}


/* =========================================================
   LINKS
========================================================= */

a {
	color: #2f6fa3;
	text-decoration: none;
	outline: none;
}

a:hover {
	color: #1f2933;
	text-decoration: underline;
}


/* =========================================================
   LISTS
========================================================= */

ul,
ol {
	margin: 1em 0 1.5em 24px;
	line-height: 1.5;
}

li {
	margin-bottom: .5em;
}


/* =========================================================
   HORIZONTAL RULES
========================================================= */

hr {
	border: 0;
	height: 1px;
	margin: 40px 0;
	background: linear-gradient(
		to right,
		rgba(139, 107, 46, 0),
		rgba(139, 107, 46, .45),
		rgba(139, 107, 46, 0)
	);
}


/* =========================================================
   TOP NAVIGATION
========================================================= */

.topnav2 {
	overflow: hidden;
	background-color: #1f2933;
	position: relative;
	box-shadow: 0 2px 6px rgba(0, 0, 0, .35);
	margin-bottom: 0;
}

.topnav2 #myLinks {
	display: none;
	background-color: #2b3742;
}

.topnav2 a {
	color: #ffffff;
	padding: 20px 18px;
	text-decoration: none;
	font-family: Arial, Helvetica, sans-serif;
	letter-spacing: 1px;
	font-size: 130%;
	display: block;
	transition:
		background-color .25s ease,
		color .25s ease;
}

.topnav2 a:hover {
	background-color: #b89b5e;
	color: #1f2933;
	text-decoration: none;
}

.topnav2 .active {
	background-color: #2b3742;
	color: #ffffff;
	font-weight: bold;
}


/* Hamburger button */

.topnav2 a.icon {
	background: #1f2933;
	display: flex;
	align-items: center;
	gap: 6px;
	position: absolute;
	right: 0;
	top: 0;
	min-height: 64px;
	padding: 0 18px;
}

.topnav2 a.icon:hover {
	background-color: #b89b5e;
}

.topnav2 a.icon img {
	width: 34px;
	height: 34px;
	display: block;
	object-fit: contain;
}

.menu-label {
	font-size: 12px;
	font-weight: bold;
	letter-spacing: 1px;
	color: #ffffff;
}

.topnav2 a.icon:hover .menu-label {
	color: #1f2933;
}


/* Search form inside opened navigation */

.topnav2 form {
	padding: 15px;
	background: #24313d;
}

.topnav2 input[type="text"] {
	width: 70%;
	padding: 8px;
	border: 1px solid #999;
	border-radius: 4px;
	font-size: 14px;
}

.topnav2 input[type="submit"] {
	padding: 8px 12px;
	border: 0;
	background: #b89b5e;
	color: #1f2933;
	font-weight: bold;
	border-radius: 4px;
	cursor: pointer;
}

.topnav2 input[type="submit"]:hover {
	background: #d3b67a;
}


/* Remove unwanted gap immediately beneath navigation */

.topnav2 + p,
.topnav2 + img,
.topnav2 + div,
.topnav2 + figure {
	margin-top: 0;
}

#fatimagetop,
#mainfotofudge {
	margin-top: 0;
	padding-top: 0;
}


/* =========================================================
   TWO-COLUMN IMAGE ROWS
========================================================= */

.image-row {
	display: flex;
	width: 100%;
	max-width: 100%;
	margin: 20px auto;
	gap: 20px;
	align-items: flex-start;
	flex-wrap: nowrap;
}

.image-col {
	flex: 1 1 0;
	width: 0;
	min-width: 0;
}

.image-col a {
	display: block;
	max-width: 100%;
}

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

.image-col p {
	width: 100%;
	max-width: 100%;
	overflow-wrap: break-word;
	word-wrap: break-word;
}


/* =========================================================
   BLOCKQUOTES
========================================================= */

blockquote {
	background: #f9f9f9;
	border-left: 10px solid #ccc;
	margin: 1.5em 10px;
	padding: .5em 10px;
	font-size: 120%;
	line-height: 175%;
	quotes: "\201C" "\201D" "\2018" "\2019";
}

blockquote::before {
	color: #ccc;
	content: open-quote;
	font-size: 4em;
	line-height: .1em;
	margin-right: .25em;
	vertical-align: -.4em;
}

blockquote p {
	display: inline;
}


/* =========================================================
   ARCHIVE BUTTON EFFECT
========================================================= */

.archive-button-wrap {
	text-align: center;
	margin: 30px 0;
}

.archive-button {
	display: inline-block;
	transition:
		transform .35s ease,
		box-shadow .35s ease,
		filter .35s ease;

	animation: archiveFloat 5s ease-in-out infinite;
}

.archive-button img {
	display: block;
	border-radius: 6px;
}

.archive-button:hover {
	transform: scale(1.025);
	filter: brightness(1.03);
	box-shadow: 0 8px 28px rgba(0, 0, 0, .22);
	animation-play-state: paused;
}

@keyframes archiveFloat {

	0% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(-4px);
	}

	100% {
		transform: translateY(0);
	}
}


/* =========================================================
   FOOTER
========================================================= */

#footer {
	clear: both;
	font-size: 85%;
	color: #777;
	padding: 30px 0;
}

#footer a {
	color: #8b6b2e;
}


/* =========================================================
   BOTTOM SEARCH / HOME / ARCHIVES SECTION
========================================================= */

.site-bottom-section {
	clear: both;
	width: 100%;
	margin-top: 35px;
	padding: 30px 35px 35px;
	background: #;
	border-radius: 8px;
	box-shadow: 0 1px 3px rgba(0, 0, 0, .18);
}

.site-bottom-section h1 {
	margin: 0 0 20px;
}


/* Search + buttons row */

.site-search-tools {
	display: flex;
	align-items: center;
	gap: 20px;
	flex-wrap: wrap;
	margin: 0;
}


/* Search form */

.site-search-form {
	display: flex;
	align-items: stretch;
	margin: 0;
}

.site-search-form input[type="text"] {
	width: 260px;
	height: 46px;
	padding: 0 15px;
	font-size: 16px;
	color: #252c34;
	background: #ffffff;
	border: 1px solid #aeb5bc;
	border-right: none;
	border-radius: 6px 0 0 6px;
	outline: none;
	transition:
		border-color .2s,
		box-shadow .2s;
}

.site-search-form input[type="text"]:focus {
	border-color: #29323c;
	box-shadow: 0 0 0 2px rgba(41, 50, 60, .12);
}

.site-search-form input[type="text"]::placeholder {
	color: #888;
}


/* Search submit button */

.search-submit {
	height: 46px;
	padding: 0 19px;
	border: 0;
	border-radius: 0 6px 6px 0;
	background: #29323c;
	color: #ffffff;
	font-size: 15px;
	font-weight: 600;
	cursor: pointer;
	transition: background .2s;
}

.search-submit:hover {
	background: #45515d;
}


/* Home and Archives buttons */

.utility-button {
	width: 126px;
	height: 72px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	background: #29323c;
	color: #ffffff;
	border-radius: 4px;
	text-decoration: none;
	font-size: 15px;
	font-weight: 600;
	transition:
		background .2s,
		transform .15s;
}

.utility-button svg {
	width: 27px;
	height: 27px;
	fill: #ffffff;
	flex-shrink: 0;
}

.utility-button:hover {
	background: #45515d;
	color: #ffffff;
	text-decoration: none;
	transform: translateY(-1px);
}


/* =========================================================
   SITE CREDIT PILL
========================================================= */

.site-credit {
	display: table;
	margin: 38px auto 0;
	padding: 10px 22px;
	background: #29323c;
	color: #ffffff;
	border-radius: 999px;
	font-size: 14px;
	line-height: 1.4;
	text-align: center;
	box-shadow: 0 1px 3px rgba(0, 0, 0, .18);
}

.site-credit a {
	color: #ffffff;
	font-weight: bold;
	text-decoration: none;
}

.site-credit a:hover {
	color: #d8c28f;
	text-decoration: none;
}


/* =========================================================
   TABLET / NARROW DESKTOP
========================================================= */

@media screen and (max-width: 980px) {

	#content,
	#sidebar {
		width: 100%;
		float: none;
	}

	#content {
		padding: 20px;
	}

	#sidebar {
		margin-top: 0;
	}

}


/* =========================================================
   MOBILE
========================================================= */

@media screen and (max-width: 650px) {

	#pagewrap {
		max-width: 94%;
	}

	#content {
		padding: 18px;
		margin: 10px 0 25px;
	}

	#sidebar {
		margin: 0 0 25px;
	}


	/* Navigation */

	.topnav2 a {
		font-size: 110%;
		padding: 12px 14px;
	}


	/* Typography */

	h1 {
		font-size: 170%;
	}

	h2 {
		font-size: 145%;
	}


	/* Image columns stack only on phones */

	.image-row {
		flex-direction: column;
		gap: 20px;
	}

	.image-col {
		width: 100%;
	}


	/* Bottom section */

	.site-bottom-section {
		padding: 22px 20px 28px;
		margin-top: 25px;
	}

	.site-search-tools {
		gap: 12px;
	}

	.site-search-form {
		width: 100%;
	}

	.site-search-form input[type="text"] {
		width: auto;
		flex: 1;
		min-width: 0;
	}

	.utility-button {
		width: calc(50% - 6px);
		height: 62px;
	}

	.site-credit {
		margin-top: 28px;
	}

}