/* 
Foundation-6 CSS overrides for: 
The RRR Model
Author: Rodney Johnstone
Copyright all rights reserved 2026
*/
h1,h2,h3,h4 {
color:#074AA5;	
}

ul.arrw {
  list-style-type: none; /* Remove default marker */
}

ul.arrw li {
  position: relative; /* Essential for positioning the arrow relative to the list item */
  padding-left: 25px; /* Further padding for text alignment */
}

ul.arrw li::before {
  content: "\25BA"; /* Use a right-pointing triangle Unicode character followed by a space */
  position: absolute; /* Position the arrow precisely */
  left: 0; /* Place it at the start of the padding */
  color: #54a92f; /* Change the arrow color */
  font-size: 1.125em; /* Adjust size */
}

.footstyle {
	min-height: 17em;
	background: #4169E1;
}