
/******************** Footer Styles *************************/

#newsfooter {
	background-color: #003976;
    color: #fff;
	padding: 2rem;
	border-radius: 0.5rem;
	font-size: 1rem;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
	display: inline-flex;
	height: 250px;
	padding-top: 2%;
	padding-bottom: 2%;
}

.col1 {
	width: 75%;
	
}
.col2 {width: 50%;
       padding-left: 5%;
       padding-right: 5%;
       padding-top: 3%;
	   
	    
}

#learn-more a{color: #8dc2e9;}
 

.footer .footer-content {
  max-width: 1240px;
  margin: 0 auto;
}



.footer-header {
  font-size: 2rem ;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0.5em;
  letter-spacing: 0.1em;
  border-bottom: 1px solid #ccc;
  padding-bottom: 0.2em;
}

.footer .footer-text {
  font-size: 1rem;
  margin-bottom: 1em;
}

.footer .footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.footer .footer-links .link {
  font-size: 1rem;
  margin: 0 0.5em;
  color: var(--link-color);
  text-decoration: none;
}

.footer .footer-links .link:hover {
  color: var(--link-hover-color);
}

.image-container {
      
        background-image: url("../img/CTA.png");
	background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        padding: 2%;
       
        width: 95%;
        height: 95%;
	
}
.col2.centered {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  
}

Responsive Styles */
@media (max-width: 768px) {
     #newsTitle {
    font-size: 1.8rem;
  }
	.footer .footer-content {
    padding: 1em;
  }
  .footer .footer-links {
    flex-direction: column;
  }
  .footer .footer-links .link {
    margin-bottom: 0.5em;
  }
}

@media (max-width: 480px) {
      
	 #newsTitle {
    font-size: 1.5rem;
  }
	.footer {
    padding: 1em;
  }
  .footer .footer-header {
    font-size: 1.2rem;
  }
  .footer .footer-text {
    font-size: 0.9rem;
  }
}

/* A11y Styles */
.footer .footer-header {
  role: heading;
  aria-level: 2;
}

.footer .footer-links {
  role: navigation;
}

.footer .footer-links .link {
  role: link;
	
}


