
/* JOIA Blocks Front Styles - Responsive, Grid/Flex, Microinteractions, JOIA Brand */
.joia-block-quote {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: #b87333;
  border-left: 4px solid #b87333;
  padding-left: 1.2rem;
  margin: 1.5rem 0;
  background: rgba(26,26,26,0.5);
  border-radius: 0.7rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.10);
  transition: box-shadow 0.22s;
}
.joia-block-quote:hover {
  box-shadow: 0 4px 24px #e6a06a33;
}
.joia-block-audio {
  background: rgba(26,26,26,0.7);
  border-radius: 1rem;
  padding: 1rem;
  color: #f3f3f3;
  margin: 1.2rem 0;
  box-shadow: 0 2px 12px rgba(0,0,0,0.10);
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.joia-block-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 0.7em;
  margin: 1.2rem 0;
}
.joia-block-gallery img {
  max-width: 120px;
  border-radius: 0.5em;
  box-shadow: 0 1px 6px rgba(0,0,0,0.10);
  transition: box-shadow 0.22s;
}
.joia-block-gallery img:hover {
  box-shadow: 0 4px 24px #e6a06a33;
}
.joia-block-stat {
  display: flex;
  align-items: baseline;
  font-size: 1.5rem;
  font-weight: 600;
  margin: 1.2rem 0;
  gap: 0.5em;
}
.joia-block-stat .stat-value {
  color: #fff;
  background: #b87333;
  border-radius: 0.4em;
  padding: 0.1em 0.5em;
  font-variant-numeric: tabular-nums;
}
.joia-block-stat .stat-label {
  margin-left: 0.5em;
  color: #b87333;
  font-size: 1rem;
  font-weight: 400;
}
@media (max-width: 480px) {
  .joia-block-quote { font-size: 1.1rem; padding-left: 0.7rem; }
  .joia-block-gallery img { max-width: 70px; }
}
