/* Container & Global Typography */
.notebook-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 850px;
  margin: 0 auto;
  padding: 1rem;
  background-color: transparent;
  box-sizing: border-box;
  font-family: cursive;
  color: #ffffff;
}

/* Fluid Typography using clamp() */
.notebook-definition {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  line-height: 1.6;
  text-align: center;
  color: var(--c-cyan);
  margin-bottom: 1.2rem;
  width: 100%;
}

.notebook-example {
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  line-height: 1.5;
  text-align: center;
  color: #ffffff;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
  width: 100%;
}

.notebook-highlight {
  color: var(--c-pink);
  font-weight: bold;
}

/* SVG Layout Wrapper */
.notebook-svg-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.notebook-svg {
  width: 100%;
  height: auto;
  max-width: 800px;
}
