/* Summer Storyboard Stylesheet */
/* Vertical stacked storyboard layout */

@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:wght@400;500;700&display=swap');

/* Header */
.storyboard-header {
  text-align: center;
  padding: 2rem 1rem;
  margin-bottom: 1rem;
}

.storyboard-header h1 {
  font-family: 'EB Garamond', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  margin: 0 0 1rem 0;
}

.storyboard-header nav a {
  font-family: 'EB Garamond', serif;
  color: #1465b7;
  text-decoration: none;
  font-size: 1rem;
  padding: 0.5em 1em;
  border: 1px solid #1465b7;
  border-radius: 4px;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.storyboard-header nav a:hover {
  background-color: #1465b7;
  color: #fff;
}

/* Storyboard Container - vertical stack */
main.storyboard-container {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0 2rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  border: none;
}

/* Storyboard Panel */
.storyboard-panel {
  width: 100%;
  max-width: 900px;
  border-left: 3px solid #333;
  border-right: 3px solid #333;
  background: #fff;
}

.storyboard-panel:first-child {
  border-top: 3px solid #333;
}

.storyboard-panel:last-child {
  border-bottom: 3px solid #333;
}

.storyboard-panel img {
  width: 100%;
  height: auto;
  display: block;
}

.storyboard-caption {
  padding: 1rem 1.5rem;
  border-top: 1px solid #ddd;
  background: #fafafa;
}

.storyboard-caption p {
  font-family: 'EB Garamond', serif;
  font-size: 1.1rem;
  line-height: 1.5;
  color: #333;
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .storyboard-header h1 {
    font-size: 2rem;
  }

  main.storyboard-container {
    padding: 0 1rem 1rem;
  }

  .storyboard-panel {
    max-width: 100%;
  }

  .storyboard-caption {
    padding: 0.75rem 1rem;
  }
}
