/* ====================================================================
   Season (時候の挨拶) - Tool-Specific Styles
   ピンクテーマ: var(--tool-primary) を使用
   ==================================================================== */

/* Current Season Notice */
.current-season-notice {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
  background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
  padding: 24px;
}

.notice-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #333333;
  margin-bottom: 8px;
}

.notice-text {
  font-size: 0.9375rem;
  color: #555555;
  line-height: 1.6;
  margin: 0;
}

/* Month Button Overrides (pink instead of blue) */
.month-btn:hover {
  border-color: var(--tool-primary);
  background: #fff5f7;
  color: var(--tool-primary);
}

.month-btn.active {
  background: linear-gradient(135deg, #f093fb 0%, var(--tool-primary) 100%);
  color: white;
  border-color: var(--tool-primary);
}

/* Season Content */
.season-content-section {
  margin-bottom: 40px;
}

.season-header {
  text-align: center;
  margin-bottom: 32px;
}

.season-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #333333;
  margin-bottom: 8px;
}

.season-subtitle {
  font-size: 1rem;
  color: #666666;
  font-style: italic;
}

/* Period Section */
.period-section {
  margin-bottom: 32px;
}

.period-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.125rem;
  font-weight: 700;
  color: #333333;
  margin-bottom: 16px;
}

.period-icon {
  font-size: 1.5rem;
}

.kigo-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 16px;
}

.kigo-item {
  padding: 16px;
  background: #f9fafb;
  border-radius: 8px;
  border-left: 3px solid var(--tool-primary);
}

.kigo-item-title {
  font-size: 1rem;
  font-weight: 700;
  color: #333333;
  margin-bottom: 4px;
}

.kigo-item-kigo {
  font-size: 0.875rem;
  color: #666666;
  font-style: italic;
}

.kigo-item-description {
  font-size: 0.8125rem;
  color: #999999;
  margin-top: 8px;
}

/* Loading State */
.loading-state {
  text-align: center;
  padding: 40px 20px;
}

.loading-spinner {
  border-top-color: var(--tool-primary);
}

/* Example Box */
.example-box {
  padding: 16px;
  background: #f0f9ff;
  border-left: 3px solid #1a73e8;
  border-radius: 4px;
  margin-top: 12px;
}

.example-box p {
  margin: 8px 0;
  font-size: 0.9375rem;
}

.highlight {
  background: #fff3cd;
  padding: 2px 4px;
  border-radius: 2px;
  font-weight: 600;
}

/* Guide Content Overrides */
.guide-content {
  font-size: 0.9375rem;
  line-height: 1.8;
  color: #666666;
}

.guide-content h3 {
  margin-top: 24px;
}

.guide-content h3:first-child {
  margin-top: 0;
}

.guide-content p {
  margin-bottom: 16px;
}

.guide-content ul {
  margin-left: 20px;
  margin-bottom: 16px;
}

.guide-content ul li {
  margin-bottom: 12px;
  line-height: 1.8;
}

.guide-content strong {
  color: #333333;
  font-weight: 700;
}

/* Utilities */
.mt-24 {
  margin-top: 24px !important;
}

/* Tool Meta Override (pink border) */
.tool-meta .card {
  border-left-color: var(--tool-primary);
}

.tool-meta p {
  font-size: 0.875rem;
  color: #666;
  margin: 0;
  line-height: 1.8;
}

.tool-meta a {
  color: #1a73e8;
  text-decoration: underline;
}

.tool-meta a:hover {
  color: #165db5;
}

/* Information Gain Section borders */
.seasonal-knowledge .section-heading,
.haiku-kigo .section-heading,
.seasonal-health .section-heading {
  padding-bottom: 12px;
  border-bottom: 2px solid #f5f7fa;
}

/* Responsive */
@media screen and (max-width: 768px) {
  .current-season-notice {
    flex-direction: column;
    text-align: center;
  }

  .season-title {
    font-size: 1.375rem;
  }

  .kigo-list {
    grid-template-columns: 1fr;
  }
}
