/* ============================================================
   About Page — styles_about.css

   Scoped to body.about .entry-content so no custom HTML
   wrappers are needed in the WP editor content.

   Color reference (matches theme design tokens):
     Olive green:   #3d5227
     Mid olive:     #4e6a30
     Gold:          #c8961a
     Cream (bg):    #f7f2e8
     Cream (dark):  #ede7d5
     Text dark:     #2a2a1e
     Text light:    #5a5a48
   ============================================================ */


/* ------------------------------------------------------------
   Content area
   ------------------------------------------------------------ */

body.about .entry-content {
	max-width: 860px;
	margin: 0 auto;
	padding: 56px 24px 72px;
}


/* ------------------------------------------------------------
   Typography
   ------------------------------------------------------------ */

body.about .entry-content h2 {
	font-family: "Andada Pro", sans-serif;
	font-size: 1.5rem;
	color: #3d5227;
	margin: 1.75em 0 0.5em;
	padding-top: 1.25em;
	border-top: 2px solid #ede7d5;
}

body.about .entry-content a {
	color: #3d5227;
}

body.about .entry-content a:hover {
	color: #c8961a;
}


/* ------------------------------------------------------------
   Photo — WP alignleft / alignright
   ------------------------------------------------------------ */

body.about .entry-content img.alignleft,
body.about .entry-content .wp-caption.alignleft {
	float: left;
	margin: 0.25em 2em 1em 0;
	border-radius: 4px;
	max-width: 280px;
	width: 100%;
}

body.about .entry-content img.alignright,
body.about .entry-content .wp-caption.alignright {
	float: right;
	margin: 0.25em 0 1em 2em;
	border-radius: 4px;
	max-width: 280px;
	width: 100%;
}

body.about .entry-content .wp-caption-text {
	font-family: "PT Sans", sans-serif;
	font-size: 0.85rem;
	color: #5a5a48;
	text-align: center;
	margin-top: 0.4em;
}


/* ------------------------------------------------------------
   Responsive — tablet (≤ 680px) — drop float before it gets cramped
   ------------------------------------------------------------ */

@media ( max-width: 680px ) {

	body.about .entry-content img.alignleft,
	body.about .entry-content .wp-caption.alignleft,
	body.about .entry-content img.alignright,
	body.about .entry-content .wp-caption.alignright {
		float: none;
		margin: 0 0 1.5em 0;
		max-width: 100%;
	}

}


/* ------------------------------------------------------------
   Responsive — mobile (≤ 600px)
   ------------------------------------------------------------ */

@media ( max-width: 600px ) {

	body.about .entry-content {
		padding: 36px 16px 56px;
	}

}
