html{
 line-height:15px;
}
p {
  padding: 0 0 5px 0;
  margin: 0;
  } 
br {

  padding: 0 0 0px 0;
  margin: 0;
}
  

ol, ul { 
  list-style-type: disc;   /* plný puntík (výchozí) */ 
  margin-left:12px;
  margin-bottom:5px;
  }
 
h2 {
 margin-top:15px;
 margin-bottom:15px;
 line-height:20px;
}  
h3 {
 margin-top:15px;
 margin-bottom:15px;
}  
.sixcol {
margin:0;
}


.bubble-card {
  display: inline-block;
  position:relative;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;

  /* důležité pro animaci */
  transition: 
    transform 0.35s ease;
    /*transform 0.35s ease,
    box-shadow 0.35s ease;*/
}

.bubble-card img {
  display: block;
  width: 100%;
  height: auto;
}

/* HOVER */
.bubble-card:hover {
  transform: translateY(-8px) scale(1.04);
  /*box-shadow: 
    0 10px 20px rgba(0,0,0,0.15),
    0 20px 40px rgba(0,0,0,0.25);*/
}  
.bubble-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;

  background: linear-gradient(
    120deg,
    rgba(255,255,255,0.25),
    transparent 40%
  );

  opacity: 0;
  transition: opacity 0.35s ease;
}

.bubble-card:hover::after {
  opacity: 1;
}
