/* Grid Layout */
.voter-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* Card */
.voter-item {
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 15px;
  text-align: center;
  background: #fff;
  transition: 0.3s ease !important;
}
.voter-item.selected-vote {
    border-color: #f9a21d;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}
.voter-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* Image */
.voter-item img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

/* Title */
.voter-item h3 {
      font-family: "Raleway", Sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.3em;
    color: #252525;
  margin: 20px 0 15px 0;
}

/* Button */
.vote-btn {
  background-color: #1A468C !important;
	font-family: "Raleway", Sans-serif;
	font-size: 16px;
	line-height: 16px;
	font-weight: 600;
	border: none!important;
	border-radius: 50px 50px 50px 50px;
	padding: 16px 24px 16px 24px;
	min-width: 130px;
	color: #fff !important;
  cursor: pointer;
  transition: 0.3s;
}

.vote-btn:hover {
  background: #005177;
}

/* Votes Count */
.project-title {
    margin: 10px 0;
    font-family: "Raleway", Sans-serif;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    color: #1A468C;
}
.project-desc {
  font-family: "Raleway", Sans-serif;
    font-size: 16px !important;
    font-weight: 400;
    line-height: 1.4em !important;
    color: #888888;
  margin-bottom: 10px;
}
.thumb-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}
.play-btn {
    height: 65px;
    width: 65px;
    background: #1a468ccc;
    color: #fff !important;
    font-size: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
}
.voted-label {
   margin-left: 10px;
    font-family: "Raleway", Sans-serif;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    color: #1A468C;
}
/* Responsive */
@media (max-width: 1024px) {
  .voter-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .voter-grid {
    grid-template-columns: 1fr;
  }
}