/* Container */
.eah-container {
  background: #f9fafb;
  border-radius: 16px;
  padding: 24px;
  max-width: 880px;
  margin: 20px auto;
  font-family: 'Inter', sans-serif;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

/* Section */
.eah-section {
  margin-bottom: 28px;
  padding: 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.eah-section h2 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #1e3a8a;
}

/* Buttons */
.eah-btn {
  display: inline-block;
  width: 100%;
  padding: 12px 16px;
  background: #2563eb;
  color: #fff;
  font-weight: 600;
  text-align: center;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.25s, transform 0.1s;
}
.eah-btn:hover { background: #1d4ed8; transform: translateY(-1px); }

/* Share grid */
.eah-share-grid {
  display: flex;
  gap: 12px;
}
.eah-share-grid .eah-btn { flex: 1; }

/* Counter */
#eah-counter {
  font-size: 1.1rem;
  font-weight: 500;
  color: #111827;
  text-align: center;
}

/* Responsive */
@media (max-width: 640px) {
  .eah-container { padding: 16px; }
  .eah-section { padding: 16px; }
  .eah-section h2 { font-size: 1.1rem; }
}
