/* ===== Infographic Page Styles ===== */

.infographic-container {
    max-width: 1440px;
    margin: 0 auto; /* center page */
    padding: 20px;
    text-align: center;
    font-family: Arial, sans-serif;
}

.infographic-container h1 {
    margin-bottom: 30px;
	font-family: Mada, sans-serif;
    font-weight: 900;
    font-size: 36px;
}

.infographic-gallery {
    display: flex;
    gap: 20px;
    justify-items: center;
    margin-bottom: 30px;
}

.infographic-gallery img {
    width: 50%;
    height: auto;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.download-btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: white;
    color: #9e2132;
    text-decoration: none;
	font-size: 15px;
    font-weight: bold;
    border-radius: 6px;
    transition: background 0.3s;
}

.download-btn:hover {
	color: #9e2132;
    background-color: #222222;
}

@media screen and (max-width: 767px){
	.infographic-gallery {
   flex-direction: column;
}

.infographic-gallery img {
    width: 100%;
}

}