.saffron-producers-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(48%,1fr));
gap:20px;
}

.saffron-card {
	border: 2px solid #E8E1F0;
  padding: 15px;
  border-radius: 12px;
  background: #fff;
  display: flex;
  align-items: start;
  justify-content: start;
  gap: 10px;
  transition: all 0.3s;
}

.saffron-card:hover {
border-color:#9B7DBD
}

.saffron-card .img-box{
max-width: 15%;
  width: 15%;
}


.img-box img {
	width:50px;object-fit:cover;border-radius:4px;
}
.saffron-card .content-box{
max-width: 85%;
  width: 85%;
}
.content-box-text {
	display: flex;
  align-items: start;
  gap: 15px;
  flex-direction: column;
}
.content-box-text .saffron-country{
margin: 0;
  font-size: 16px;
  font-weight: bold;
  color: #6B0D19;
}

.content-box-text .saffron-description{
margin:5px 0;color:#6A7282;font-size: 14px;
}
.content-box-text  .saffron-production-percentage {
	display: flex;
  align-items: center;
  gap: 5px;
  justify-content: space-between;
  width: 100%;
}

 .saffron-percentage {
display: inline-block;
  background: #fff;
  padding: 3px 20px;
  border-radius: 8px;
  font-size: 13px;
  color: #9B7DBD;
  border: 1px solid #9B7DBD;
  font-weight: 500;
}