/* Taskmaster Landing Page - Custom Styles */

/* Any additional custom styles can be added here */
/* Most styling is now handled via Tailwind classes in the templates */

/* Blog Article Content Styles */
.article-content {
  font-size: 19px;
  line-height: 1.8;
  color: var(--color-foreground, #1a1a1a);
}

.article-content p {
  margin-bottom: 32px;
}

.article-content h1 {
  font-size: 36px;
  font-weight: 700;
  margin-top: 56px;
  margin-bottom: 24px;
  line-height: 1.3;
  color: var(--color-foreground, #1a1a1a);
}

.article-content h2 {
  font-size: 30px;
  font-weight: 700;
  margin-top: 48px;
  margin-bottom: 20px;
  line-height: 1.3;
  color: var(--color-foreground, #1a1a1a);
}

.article-content h3 {
  font-size: 24px;
  font-weight: 600;
  margin-top: 40px;
  margin-bottom: 16px;
  line-height: 1.4;
  color: var(--color-foreground, #1a1a1a);
}

.article-content h4 {
  font-size: 20px;
  font-weight: 600;
  margin-top: 32px;
  margin-bottom: 12px;
  line-height: 1.4;
  color: var(--color-foreground, #1a1a1a);
}

.article-content ul,
.article-content ol {
  margin-bottom: 32px;
  padding-left: 28px;
}

.article-content ul {
  list-style-type: disc;
  list-style-position: outside;
}

.article-content ol {
  list-style-type: decimal;
  list-style-position: outside;
}

.article-content li {
  margin-bottom: 12px;
  line-height: 1.8;
  padding-left: 8px;
}

.article-content li p {
  margin-bottom: 12px;
}

.article-content strong {
  font-weight: 700;
  color: var(--color-foreground, #1a1a1a);
  font-size: 1.05em;
}

.article-content em {
  font-style: italic;
}

.article-content a {
  color: var(--color-primary, #4f46e5);
  text-decoration: underline;
  transition: opacity 0.2s;
}

.article-content a:hover {
  opacity: 0.8;
}

.article-content blockquote {
  border-left: 4px solid var(--color-primary, #4f46e5);
  padding-left: 24px;
  margin: 32px 0;
  font-style: italic;
  color: var(--color-muted-foreground, #6b7280);
}

/* Key Point Callout Boxes */
.article-content .key-point {
  position: relative;
  background: #dbeafe;
  border: 3px solid #1e40af;
  border-radius: 12px;
  padding: 36px 28px 24px 28px;
  margin: 48px 0;
}

.article-content .key-point::before {
  content: "Key Point";
  position: absolute;
  top: -14px;
  left: 24px;
  background: #1e40af;
  color: white;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 6px 16px;
  border-radius: 6px;
}

.article-content .key-point p {
  color: #1e40af;
  font-weight: 600;
  font-size: 1.05em;
  line-height: 1.7;
  margin-bottom: 0;
}

.article-content .key-point p:first-child {
  font-weight: 600;
  font-size: 1.05em;
  margin-bottom: 0;
}

.article-content .key-point strong {
  color: #1e40af;
  font-weight: 700;
  font-size: 1.05em;
}

.article-content .key-point ul,
.article-content .key-point ol {
  margin-top: 16px;
  margin-bottom: 16px;
}

.article-content .key-point li {
  color: #1e40af;
  font-weight: 500;
}

.article-content code {
  background-color: #f3f4f6;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 16px;
  font-family: monospace;
}

.article-content pre {
  background-color: #f3f4f6;
  padding: 20px;
  border-radius: 8px;
  margin: 32px 0;
  overflow-x: auto;
}

.article-content pre code {
  background-color: transparent;
  padding: 0;
  font-size: 15px;
}

.article-content hr {
  border: none;
  border-top: 2px solid #e5e7eb;
  margin: 48px 0;
}

/* Article Images */
.article-content img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  margin: 40px 0;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  display: block;
}
