@font-face {
	font-family: 'Outfit';
	src: url('fonts/Outfit-Regular.woff2') format('woff2');
	font-weight: 400; 
	font-style: normal;
}

@font-face {
	font-family: 'Outfit';
	src: url('fonts/Outfit-Bold.woff2') format('woff2');
	font-weight: 700; 
	font-style: normal;
}

@font-face {
	font-family: 'Azeret Mono';
	src: url('fonts/AzeretMono-VariableFont_wght.woff2') format('woff2');
	font-weight: 400;
	font-style: normal;
}

body {
	font-family: 'Outfit', Helvetica, Arial, sans-serif;
	max-width: 750px;
	margin: 20px auto;
	padding: 0 20px;
	line-height: 1.6;
	background-color: #FFF1E5;
	color: #3A2E2E;
	font-size: 20px;
}

img { max-width: 100%; }

h1 {
	font-size: 1.4em;
}

h2 {
	margin-top: 1em;
	font-size: 1.2em;
}

h3 {
	font-size: 1.1em;
}

input, textarea, button, select {
	font-size: 16px;
	margin: 5px 0;
	padding: 8px;
	width: 100%;
	box-sizing: border-box;
	font-family: Verdana, Helvetica, Arial, sans-serif; /* Verdana for all form fields */
}

input[type="checkbox"] {
	width: auto;           /* Prevents stretching to 100% */
	margin: 0;             /* Removes default margin */
	padding: 0;            /* Keeps it tight */
}

label {
	display: flex;         /* Flexbox for alignment */
	align-items: center;   /* Vertically centers checkbox and text */
	justify-content: flex-start; /* Ensures left alignment */
	gap: 8px;             /* Small gap between checkbox and text */
	margin: 5px 0;        /* Matches other form elements' spacing */
	padding: 0;           /* Removes default padding */
}

textarea {
	font-size: 16px;       /* Larger text */
	line-height: 1.5;      /* Better spacing */
	padding: 15px;         /* Roomier input area */
	width: 100%;           /* Full width */
	height: 300px;         /* Taller for writing */
	border: 1px solid #ccc; /* Subtle border */
	border-radius: 4px;    /* Soft edges */
	resize: vertical;      /* Allow vertical resize only */
}

button {
	background: #A76A40;
	color: white;
	border: none;
	cursor: pointer;
}

button:hover {
	background: #805131;
}

a {
	color: #990F3C;
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

ul {
	/* list-style: none; */
	/* padding: 0; */
}

li {
	margin: 10px 0;
}

p {
	margin: 10px 0;
}

small {
	color: #666;
}

header {
	font-size: 1.3em;
	font-weight: bold;
	margin-bottom: 1em;
}
footer {
	margin-top: 1.1em;
}

pre.list-dates {
	font-family: 'Azeret Mono', monospace;
	color: #555;
	background-color: #F2DFCE;
	padding: 2px 6px;
	margin-right: 10px;
	font-size: .8em;
	text-transform: uppercase;
}

/* hr { margin: 1.5em 0 0 0; } */
hr { border: 1px dotted #888; }

p.alert {
	background-color: #F2DFCE;
	padding: 6px 10px;
	margin-bottom: 1.5em;
	border-radius: 4px;
	line-height: 1.4;
}

.preview-body {
	margin-top: .5em;
	border-top: 1px dotted #000;
}
.subscribe-form {
	margin: 1em 0;
}