/*
 * SharkMovie - Layout & Grid System
 */

.sm-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

.sm-main-content {
  padding-top: 30px;
  padding-bottom: 60px;
}

.sm-section {
  margin-bottom: 40px;
}

.sm-section-title {
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: var(--sm-text-main);
}

.sm-section-title::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 22px;
  background-color: var(--sm-primary);
  border-radius: 2px;
}

/* Título de widget (sin barra azul, más compacto) */
.sm-widget-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--sm-text-main);
}

/* Home Bottom Grid Layout (3 Column Grid dentro de tarjeta blanca) */
.sm-home-bottom-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr 1fr;
  gap: 30px;
  background-color: var(--sm-surface);
  border: 1px solid var(--sm-border);
  border-radius: var(--sm-radius-lg);
  box-shadow: var(--sm-shadow-sm);
  padding: 25px;
}

@media (max-width: 1024px) {
  .sm-home-bottom-grid {
    grid-template-columns: 1fr;
  }
}
