.dealerCardX21 {
  max-width: 1100px;
  margin: 40px auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  background: #FFF;
  display: flex;
  flex-direction: column;
}

/* Header */
.dealerHeaderX21 {
  background: linear-gradient(135deg, #DE0000, #FC0000);
  color: #FFF;
  text-align: center;
  padding: 20px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
}

/* Body Grid */
.dealerBodyX21 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding: 24px;
}
.dealerMapsX21 iframe {
  width: 100%;
  height: 100%;
  min-height: 350px;
  border: none;
  border-radius: 14px;
}
.dealerKontakX21 h3 {
  margin-bottom: 12px;
  font-weight: 700;
  color: #333;
}
.dealerKontakX21 p {
  margin-bottom: 10px;
  font-size: 15px;
  line-height: 1.6;
  color: #333;
}
.btnDealerX21 {
  background: #DE0000;
  color: #fff;
  padding: 12px 20px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  margin-top: 12px;
  transition: 0.3s;
}
.btnDealerX21:hover {
  background: #004AAD;
  transform: translateY(-2px);
}

/* Footer Social */
.dealerFooterSocialX21 {
  background: #DE0000;
  text-align: center;
  padding: 16px;
  font-size: 15px;
  font-weight: 500;
}
.dealerFooterSocialX21 a {
  margin: 0 12px;
  font-size: 24px;
  color: #FFF;
  transition: transform 0.2s ease, color 0.2s ease;
}
.dealerFooterSocialX21 a:hover {
  transform: scale(1.2);
  color: #007AFF;
}

/* Responsive */
@media (max-width: 768px) {
  .dealerBodyX21 { grid-template-columns: 1fr; }
  .dealerMapsX21 iframe { min-height: 250px; }
  .dealerHeaderX21 { font-size: 20px; }
}