@charset "utf-8";
/* CSS Document */


.infographics {
	padding: 50px 0 0 0;
}
/* SECTION */
.chart-stats {
  padding: 0 0 50px 0;
}

/* GRID */
.election-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
}

.election-stats-grid .chart-placeholder {
	border: 1px solid #d6d6d6;
	border-radius: 8px;
}

/* CARD */
.chart-card {
  display: flex;
  flex-direction: column;
}

/* TITLE */
.chart-title {
  margin: 0 0 15px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
  color: var(--text);
}

.chart-title span {
  font-size: 14px;
  font-weight: 400;
} 

/* CHART */
.chart-placeholder img {
  display: block;
  width: 100%;
  height: auto;
}

.women-voters {
	background: #aa218d;
	padding: 50px 0;
}

.women-voters .chart-card {
	align-items: center;
}

.women-voters img {
	max-width: 500px;
	width: 100%;
	height: auto;
	display: block;
	border-radius: 8px;
}

.assembly-composition {
	background: #f6f6f6;
	padding: 50px 0;

}

.state-stats {
		display: flex;
	flex-direction: column;
	gap: 30px;
	align-items: center;
}

.state-stats .chart-card {
	background: var(--paper);
	border: 1px solid #d6d6d6;
	border-radius: 8px;
	max-width: 800px;
	width: 100%;
	height: auto;
}

.state-key-facts {
  padding:50px 0;
}

.state-key-facts img {
	max-width: 395px;
	width: 100%;
	height: auto;
	display: block;
	border-radius: 8px;
}

/* SECTION */
.key-facts-section {
  padding: 60px 0;
}

/* GRID */
.key-facts-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 395px));
  justify-content: center;
  gap: 30px;
}

/* CARD */

.key-facts-card {
  width: 100%;
}

/* IMAGE */

.key-facts-card img {
  display: block;
  width: 100%;
  height: auto;
}

@media (max-width: 991px) {

  .election-stats-grid {
    gap: 20px;
	}

}

@media (max-width: 767px) {
.infographics {
	padding: 32px 0 30px;
}
	
	
.election-stats-grid,
	.key-facts-grid {
    grid-template-columns: 1fr;
    justify-items: center;
  }
	
	.state-key-facts img {
		margin: 0 auto;
	}
}