/* Custom CSS for SCC WordPress Theme */

/* Column Detail Entry Content Styles */
.column-content {
  font-family: 'Noto Sans JP', sans-serif;
  color: #374151;
  line-height: 1.8;
}
.column-content h2 {
  font-family: 'Noto Serif JP', serif;
  font-weight: 700;
  color: #0F2044;
  font-size: 1.35rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(15, 32, 68, 0.15);
}
.column-content h3 {
  font-family: 'Noto Serif JP', serif;
  font-weight: 700;
  color: #0F2044;
  font-size: 1.15rem;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}
.column-content h4 {
  font-family: 'Noto Serif JP', serif;
  font-weight: 700;
  color: #0F2044;
  font-size: 1rem;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}
.column-content p {
  color: #374151;
  line-height: 1.8;
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
}
.column-content ul,
.column-content ol {
  margin-top: 0.5rem;
  margin-bottom: 1.25rem;
  padding-left: 1.5rem;
  color: #374151;
}
.column-content ul li {
  list-style-type: disc;
  margin-bottom: 0.4rem;
  line-height: 1.7;
}
.column-content ol li {
  list-style-type: decimal;
  margin-bottom: 0.4rem;
  line-height: 1.7;
}
.column-content blockquote {
  border-left: 4px solid #B91C1C;
  background-color: #F8F7F4;
  padding: 1rem 1.25rem;
  margin: 1.5rem 0;
  color: #4B5563;
}
.column-content a {
  color: #B91C1C;
  text-decoration: underline;
  transition: color 0.2s;
}
.column-content a:hover {
  color: #991818;
}
.column-content strong,
.column-content b {
  font-weight: 700;
  color: #0F2044;
}
.column-content img {
  max-width: 100%;
  height: auto;
  margin: 1.5rem auto;
  display: block;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
.column-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.875rem;
}
.column-content th,
.column-content td {
  border: 1px solid #E5E7EB;
  padding: 0.75rem;
  text-align: left;
}
.column-content th {
  background-color: #0F2044;
  color: #ffffff;
  font-weight: 600;
}

/* Additional Utilities for Tailwind compatibility */
.line-clamp-1 {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.line-clamp-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
