/*
Theme Name: Metalico-Custom
Author: Anthony Lowery
Version: 1.0
Description: A custom Wordpress theme designed for Metalico Inc.
*/

/* ============================================================
   GLOBAL BASE STYLES
   Brand: #F72F33 (red) | #145CA1 (blue)
   ============================================================ */
 
:root {
	--sy-red:      #F72F33;
	--sy-blue:     #145CA1;
	--sy-black:    #0e0e0e;
	--sy-steel:    #1c1c1c;
	--sy-offwhite: #f0ece6;
	--sy-mid:      #888;
	--font-display: 'Bebas Neue', sans-serif;
	--font-body:    'Barlow', sans-serif;
}
 
*, *::before, *::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}
 
body {
	font-family: var(--font-body);
	font-size: 1rem;
	line-height: 1.6;
	background: var(--sy-offwhite);
	color: var(--sy-black);
}
 
img {
	max-width: 100%;
	height: auto;
	display: block;
}
 
a {
	color: var(--sy-red);
	text-decoration: none;
}
 
a:hover {
	text-decoration: underline;
}
 
/* ── Page content wrapper ── */
.sy-container {
	max-width: 1340px;
	margin: 0 auto;
	padding: 48px 24px;
}