
/* follows
// $citylight_bootstrap_css 
// https://blocks.citylightstudio.net/_citylight_start_v09.css
// https://blocks.citylightstudio.net/_citylight_start_v10.css
// https://blocks.citylightstudio.net/_blocks_css.css
*/



/* corner callout */

.corner-callout { 
  position: fixed;
  z-index: 1001;
  left: 0;
  bottom: 0;
  width: 100%;
  max-width:440px;
  padding: 1rem 1rem 1.5rem 1.5rem;
  overflow: hidden;
  box-shadow: 0 0 24px rgba(0,0,0,.2);
  opacity: 0;
  animation: fadeIn 0.5s ease-in forwards;
  animation-delay: 0.95s; /* Optional: delay before fade starts */
  background-color:white;
  color:inherit;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

/* Respect user's motion preferences */
@media (prefers-reduced-motion: reduce) {
  .corner-callout {
    animation: none;
    opacity: 1;
  }
}

.corner-callout-headline { font-weight:600; font-size:1.1rem; margin-bottom:0.5rem; text-wrap:balance; }
.corner-callout-text { font-weight:400; font-size:0.9rem; margin-bottom:0.5rem; text-wrap:balance; }
.corner-callout-cta { margin-bottom:0; }

.corner-dismiss { 
  position:absolute; 
  top:10px; 
  right:10px;
  display:block; 
  margin:0; padding:0; border: none;
  width:30px; height:30px; 
  text-align:center; 
  background-color:inherit; 
  color:inherit; 
  font-size:22px; 
  line-height:30px; 
}

