/* Structural UI Patterns (Brand-Agnostic) */

/* Hero Section */
.bm-hero {
  position: relative;
  padding: 5rem 0;
  background-size: cover;
  background-position: center;
}

.bm-news-ticker {
  background: rgba(0,0,0,0.2);
  padding: 0.8rem;
  border-radius: 4px;
  display: flex;
  align-items: center;
}

/* Card System */
.bm-card {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bm-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.bm-card-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

/* Typography */
.bm-typography h1 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.bm-typography h2 {
  font-size: 2rem;
  margin: 2rem 0 1rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .bm-hero {
    padding: 3rem 0;
  }
  
  .bm-card-grid {
    grid-template-columns: 1fr;
  }
}
