/* Grid */

.dw-distributors-grid {

  display: grid;

  grid-template-columns: repeat(auto-fit,minmax(300px,1fr));

  gap: 22px;

  align-items: start;

}



/* Card */

.dw-distributor-card {

  background: #fff;

  border-radius: 14px;

  padding: 18px;

  transition: transform .32s ease;

  overflow: hidden;
  height: 100%;

}

.dw-distributor-card:hover {

  transform: translateY(-8px) scale(1.01);

  box-shadow: 0 12px 30px rgba(2,6,23,0.10);

}

.dw-thumb img { 
	width:100%; 
	border-radius:10px; 
	display:block; 
	margin-bottom:12px; 
	min-height: 200px;
    max-height: 200px;
}



/* text */

.dw-title { font-size:18px; margin:4px 0 8px; }

.dw-location { color:#666; font-size:13px; margin-bottom:12px; }



/* Branches */

.dw-branches { margin-top:10px; }

.dw-branch { background:#fbfbfb; padding:10px; border-radius:8px; margin-bottom:10px; transition: background .25s ease; }

.dw-branch:hover { background:#f3f6fb; }

.dw-branch-name { font-size:15px; margin:0 0 6px; }

.dw-branch-address, .dw-branch-phone { font-size:13px; color:#444; }
.dw-branch-phone{
  display: flex;
  align-items: center;
  transition: transform .28s cubic-bezier(.2,.8,.2,1); 
}
.dw-branch-phone i{
  background: #222;
  color: #ffffff;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 10px;
}

/* Social icons */

.dw-social-links { margin-top:8px; display:flex; gap:8px; flex-wrap:wrap; }

.dw-social { width:36px; height:36px; border-radius:50%; display:flex; align-items:center; justify-content:center; color:#fff; text-decoration:none; transition: transform .28s cubic-bezier(.2,.8,.2,1); }

.dw-social i { font-size:14px; }



/* platform colors */

.dw-social.facebook { background:#3b5998; } 

.dw-social.instagram { background: linear-gradient(45deg,#feda75,#d62976); } 

.dw-social.twitter { background:#1da1f2; } 

.dw-social.linkedin { background:#0077b5; } 

.dw-social.youtube { background:#ff0000; }

