/* ========================================
   STORIES Page Styles
   ======================================== */

/* Page Header */
.page-header {
  padding: 120px 0 80px;
  background: #fff;
  text-align: center;
}

.page-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 60px;
  font-weight: 600;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #3B4043;
  margin: 0 0 48px 0;
}

.page-title span {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 0;
  font-size: 28px;
  font-weight: 600;
  color: #3B4043;
  letter-spacing: 0.05em;
  font-family: 'Noto Sans JP', sans-serif;
}

.page-title span::before {
  content: '';
  width: 60px;
  height: 3px;
  background: #3B4043;
}

/* Stories Page Content */
.stories-page-content {
  padding: 0 0 80px;
  background: #fff;
}

.stories-page-intro {
  max-width: 800px;
  margin: 0 auto 60px;
  font-size: 14px;
  line-height: 2;
  color: #3B4043;
  text-align: left;
  padding: 0 24px;
}

/* Stories Grid */
.stories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px 24px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 24px;
}

.stories-grid .story-card {
  flex: none;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

.stories-grid .story-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  opacity: 1;
}

.stories-grid .story-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.stories-grid .story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.stories-grid .story-card:hover .story-image img {
  transform: scale(1.05);
}

.stories-grid .story-text {
  padding: 16px;
  font-size: 13px;
  line-height: 1.7;
  color: #3B4043;
  min-height: 80px;
}

/* Privacy Policy Content */
.privacy-policy-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
  font-size: 14px;
  line-height: 1.8;
  color: #3B4043;
}

.privacy-policy-content h3 {
  font-size: 18px;
  font-weight: 700;
  margin-top: 40px;
  margin-bottom: 16px;
  color: #3B4043;
}

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

.privacy-policy-content ol,
.privacy-policy-content ul {
  margin-bottom: 16px;
  padding-left: 24px;
}

.privacy-policy-content ol li,
.privacy-policy-content ul li {
  margin-bottom: 8px;
}

.privacy-policy-content ul ul {
  margin-top: 8px;
  margin-bottom: 8px;
}

.privacy-policy-footer {
  margin-top: 40px;
  text-align: right;
}

/* Responsive */
@media (max-width: 1024px) {
  .stories-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .page-header {
    padding: 100px 0 60px;
  }

  .page-title {
    font-size: 40px;
  }

  .page-title span {
    font-size: 20px;
  }
  
  .page-title span::before {
    width: 30px;
  }

  .stories-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .stories-page-intro {
    font-size: 13px;
    margin-bottom: 40px;
  }
}

@media (max-width: 425px) {
  .page-title {
    font-size: 28px;
  }
  
  .page-title span {
    font-size: 18px;
    gap: 5px;
  }
  
  .page-title span::before {
    width: 20px;
  }
}
