/**
 * Node Title Styling
 * Minimal, clean H1 design in LSC Blue
 */

.node-title-wrapper {
  padding-top: 2rem;
  margin-bottom: 3rem;
}

.node-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #005D92;
  margin: 0;
  line-height: 1.3;
}

/* Responsive */
@media (max-width: 991px) {
  .node-title-wrapper {
    padding-top: 1.5rem;
    margin-bottom: 2.5rem;
  }
  
  .node-title {
    font-size: 2rem;
  }
}

@media (max-width: 767px) {
  .node-title-wrapper {
    padding-top: 1rem;
    margin-bottom: 2rem;
  }
  
  .node-title {
    font-size: 1.75rem;
  }
}