* {
  box-sizing: border-box;
}

/* --- GLOBAL PAGE DEFAULTS (White Theme) --- */
body {
  font-family: Verdana, "Times New Roman", serif, Arial;
  font-size: 16px;
  padding: 0; /* Removed padding to let header fill width */
  background-color: #f0f0f0 !important; /* Light Grey Desk */
  color: #222 !important;
  width: 100% !important;
  margin: 0 !important;
  border: none !important;
  line-height: 1.4;
}

/* --- LINKS --- */
a:link, a:visited {
  color: #000000 !important;
  text-decoration: underline;
}

a:hover {
  color: #b30000 !important; /* News Red */
  text-decoration: none !important;
}

/* --- MAIN LAYOUT CONTAINER (The "Paper") --- */
.widebodyshell {
    max-width: 1100px !important;
    margin: 0 auto !important;
    background-color: #ffffff !important;
    border-left: 1px solid #ccc !important;
    border-right: 1px solid ccc !important;
    min-height: 100vh;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

.widebody, .leftcolumn, .rightcolumn {
    background-color: #ffffff !important;
}

/* --- HEADER SECTION --- */
.header {
    background-color: #ffffff !important;
    background-image: none !important;
    border-bottom: 4px solid #000000 !important; /* Black divider line */
    color: #000 !important;
    padding: 40px 40px !important; /* Breathing room */
    height: auto !important;
    width: 100% !important;
    text-align: left; /* Ensure logo aligns left */
}

.headertext {  
  font-size: 90px;
  text-align: center;
  text-decoration: bolder;
  padding-top:10px;
  padding-bottom: 60px;
  border-style:solid;
  border-width:2px;
  border-color:#ffffff;
}

/* --- LOGO & TAGLINE LAYOUT --- */
.logo-container {
    display: flex !important;
    align-items: center !important;
    flex-wrap: nowrap !important; /* Side-by-side on desktop */
    gap: 30px !important;
}

.logo-container a {
    display: flex !important;
    flex-shrink: 0 !important; /* Prevent logo squishing */
}

/* !!! CHANGE LOGO SIZE HERE !!! */
.logo-container a svg {
    width: 550px !important;   
    height: auto !important;
    margin: 0 !important;
    max-width: 100% !important;
}

.tagline {
    font-family: Arial, sans-serif;
    font-size: 15px !important;
    color: #555 !important; /* Dark Grey */
    font-weight: bold !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 !important;
    border-left: 3px solid #b30000 !important; /* Red Bar */
    padding-left: 20px !important;
    white-space: nowrap !important;
    position: relative;
    top: 2px;
}

/* --- NAVIGATION & BARS --- */
.blackbar_articles {
	color: #FFFFFF !important;
	font-family: arial;
	font-weight: bold;
	padding: 4px;
	margin-left: 10px;
	margin-top: 19px;
	margin-bottom: 0px;
	background-color: #000000 !important; /* Solid Black */
    text-align: center;
}

.blackbarcard {
    color: #ffffff !important;
    font-family: arial;
    font-weight: bold;
    padding: 4px;
    margin-bottom: 0px;
    background-color: #000000 !important; /* Solid Black */
    text-align: center;
    margin-top: 0px;
    border-width: 1px;
    border-style: solid;
}

.bordercard {
	
	padding-left:30px;
	
}

.row {
    margin-top: 0px !important;
}

/* --- COLUMNS & WIDGETS --- */
.leftcolumn {   
  float: left;
  width: 70%;
  padding-right:15px;
}

.rightcolumn {
  float: left;
  width: 26%;
  margin-top:20px;
  padding-left: 8px;
  padding-right:8px;
  border-style: solid;
  border-width: 1px;
}

.rightcolumnin {
  border: none !important;
  margin-top: 19px;
  padding: 10px;
}

.card {
   background-color: white;
   margin-left:10px;
   margin-top: 20px;
   padding: 20px;
   border-style:solid;
   border-width:0px;
   border-color:#000000;
   margin-top:19px;
}

.rowcard {
    width: 95%;
	background-color: white;
    margin-left: 20px;
    margin-top: 20px;
    padding: 20px;
    text-align: center;
    text-decoration: bold;
    border-width: 1px;
    border-style: solid;
}

/* --- MEDIA & IMAGES --- */
.media, .html5media, .vloggie, .instamedia, .flatmedia {
	box-sizing: border-box;
	border-style: solid;
	border-width: 1px;
	border-color: #000000;
	padding: 10px;
	margin-top: 8px;
	width: 95%;
}

.keep_small {
	max-width: 25%;
}

.YouTubeEmbed {
	box-sizing: border-box;
	border-style: solid;
	border-width: 1px;
	border-color: #000000;
	padding: 10px;
	margin-top: 8px;
	width: 75%;
	height: 320px;
}

.YT_wrap {
 width: 90%;
 border-style: solid;
 border-width: 1px;
 padding: 5px; 
}

/* --- FOOTER --- */
.footer {
  padding: 20px;
  text-align: center;
  margin-top: 20px;
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

/* --- MOBILE RESPONSIVENESS (Phone View < 800px) --- */
@media only screen and (max-width: 800px) {
    
    /* Collapse columns */
    .leftcolumn, .rightcolumn {   
        width: 100%;
        padding: 10;
    }
    
    /* Stack Logo and Tagline */
    .logo-container {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 15px !important;
    }

    .logo-container a svg {
        width: 100% !important;
    }
	
	
    
    /* General Mobile Cleanup */
    .header {
        padding: 20px 15px !important;
    }
    
    .keep_small {
       max-width: 10%; 
    }
    
    .widebodyshell, .widebody {
      border-width: 0px;
    }
    
    .card {
       padding-top:10px;
	   margin-top:0px;
	   margin-left: 0px;
    }
    
    .rowcard {
       margin-left: 0px;
    }

	.blackbar_articles {
		color: #FFFFFF !important;
		font-family: arial;
		font-weight: bold;
		margin-left:8px;
		margin-right:0px;
		margin-top: 20px;
		margin-bottom: 0px;
		background-color: #000000 !important; /* Solid Black */
		text-align: center;
}

	.rowcard {
		width: 95%;
		background-color: white;
		margin-left: 8px;
		margin-top: 20px;
		padding: 20px;
		text-align: center;
		text-decoration: bold;
		border-width: 1px;
		border-style: solid;
	}

}

