/* Capsule Block Styling */
.capsule, .tile, .viewer-access {
  background-color: #1a1a1a;
  color: #f5f5f5;
  padding: 24px;
  border-radius: 10px;
  margin-bottom: 24px;
  box-shadow: 0 0 12px rgba(0,0,0,0.35);
  transition: background 0.3s ease, transform 0.2s ease;
}

.capsule:hover {
  background-color: #2a2a2a;
  transform: translateY(-2px);
}

/* Typography */
.capsule h3 {
  font-size: 1.6em;
  margin-bottom: 12px;
  font-weight: 600;
}

.capsule p {
  font-size: 1.05em;
  line-height: 1.7;
  margin-bottom: 12px;
}

/* Call-to-Action Button */
.cta-button {
  display: inline-block;
  background: #0055ff;
  color: #fff;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s ease;
}
/* Capsule Modal Styling */
.capsule-modal {
  display: none;
  position: fixed;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #ffffff;
  border: 2px solid #eaeaea;
  padding: 24px;
  width: 320px;
  z-index: 1000;
  box-shadow: 0 10px 15px rgba(0,0,0,0.15);
  border-radius: 12px;
  font-family: 'Inter', sans-serif;
  color: #333;
}

.capsule-modal h3 {
  margin-top: 0;
  font-size: 1.2em;
}

.capsule-modal ul {
  list-style: none;
  padding: 0;
}

.capsule-modal li {
  margin-bottom: 12px;
}

/* Pricing Note Styling */
.pricing-note {
  font-size: 0.9em;
  color: #555;
  margin-top: 20px;
  text-align: center;
}

/* Modal Trigger Button */
.capsule-pricing-trigger {
  display: block;
  margin: 20px auto;
  padding: 10px 20px;
  background-color: #0052ff;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
  text-align: center;
}

.capsule-pricing-trigger:hover {
  background-color: #003bbf;
}

.cta-button:hover {
  background: #0033aa;
}