@charset "UTF-8";
/**
 * Tokgöz Dialogues - Main Stylesheet
 * 
 * @author Benjamin Tokgöz <https://github.com/benjamintokgoez>
 * @created 2025-08-07
 * @updated 2025-08-07
 * @description Custom Jekyll theme with intellectual design, dark/light mode toggle,
 *              AI transparency features, and responsive layout
 * @license MIT
 */
:root {
  --primary-color: #ffffff;
  --secondary-color: #f6f8fa;
  --tertiary-color: #e1e4e8;
  --accent-color: #0366d6;
  --accent-secondary: #6f42c1;
  --text-primary: #24292e;
  --text-secondary: #586069;
  --text-muted: #6a737d;
  --border-color: #e1e4e8;
  --success-color: #28a745;
  --warning-color: #ffc107;
  --error-color: #dc3545;
  --terminal-green: #28a745;
  --code-bg: #f6f8fa;
  --quote-bg: #f1f8ff;
  --shadow-color: rgba(0, 0, 0, 0.1);
  --overlay-bg: rgba(255, 255, 255, 0.9);
}

[data-theme=dark] {
  --primary-color: #0d1117;
  --secondary-color: #21262d;
  --tertiary-color: #30363d;
  --accent-color: #58a6ff;
  --accent-secondary: #7c3aed;
  --text-primary: #f0f6fc;
  --text-secondary: #8b949e;
  --text-muted: #6e7681;
  --border-color: #30363d;
  --success-color: #3fb950;
  --warning-color: #d29922;
  --error-color: #f85149;
  --terminal-green: #00ff00;
  --code-bg: #161b22;
  --quote-bg: #262c36;
  --shadow-color: rgba(0, 0, 0, 0.3);
  --overlay-bg: rgba(13, 17, 23, 0.8);
}

body {
  font-family: "Crimson Text", "Georgia", "Times New Roman", serif;
  background-color: var(--primary-color);
  color: var(--text-primary);
  line-height: 1.8;
  font-size: 18px;
  letter-spacing: 0.01em;
}

code, pre {
  font-family: "Source Code Pro", "SF Mono", Monaco, Inconsolata, monospace;
  font-weight: 400;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Crimson Text", Georgia, serif;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.4;
  margin-top: 2.5rem;
  margin-bottom: 1.2rem;
}

h1 {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 2.2rem;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 0.5rem;
}

h3 {
  font-size: 1.8rem;
  font-style: italic;
}

h4 {
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
}

p {
  max-width: 75ch;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  text-align: justify;
  hyphens: auto;
}

.theme-toggle {
  background: none;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 0.4rem 0.6rem;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-left: 1rem;
  position: relative;
  min-width: 2.5rem;
  height: 2.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.theme-toggle:hover {
  background-color: var(--tertiary-color);
  border-color: var(--accent-color);
}
.theme-toggle .theme-icon {
  font-size: 1.1rem;
  position: absolute;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.theme-toggle .dark-icon {
  opacity: 1;
  transform: rotate(0deg);
}
.theme-toggle .light-icon {
  opacity: 0;
  transform: rotate(180deg);
}
@media screen and (max-width: 600px) {
  .theme-toggle {
    margin-left: 0;
    margin-top: 0.5rem;
  }
}

[data-theme=light] .theme-toggle .dark-icon {
  opacity: 0;
  transform: rotate(180deg);
}
[data-theme=light] .theme-toggle .light-icon {
  opacity: 1;
  transform: rotate(0deg);
}

[data-theme=dark] .theme-toggle .dark-icon {
  opacity: 1;
  transform: rotate(0deg);
}
[data-theme=dark] .theme-toggle .light-icon {
  opacity: 0;
  transform: rotate(180deg);
}

@media screen and (max-width: 600px) {
  [data-theme=light] .site-nav .theme-toggle .dark-icon {
    opacity: 0;
    transform: rotate(180deg);
  }
  [data-theme=light] .site-nav .theme-toggle .light-icon {
    opacity: 1;
    transform: rotate(0deg);
  }
  [data-theme=dark] .site-nav .theme-toggle .dark-icon {
    opacity: 1;
    transform: rotate(0deg);
  }
  [data-theme=dark] .site-nav .theme-toggle .light-icon {
    opacity: 0;
    transform: rotate(180deg);
  }
}
.site-header {
  background-color: var(--secondary-color);
  border-bottom: 1px solid var(--border-color);
  padding: 1rem 0;
  min-height: 55.95px;
  position: relative;
}

.wrapper {
  max-width: 770px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 15px;
  padding-left: 15px;
}
@media screen and (min-width: 800px) {
  .wrapper {
    max-width: 740px;
    padding-right: 30px;
    padding-left: 30px;
  }
}

.wrapper:after {
  content: "";
  display: table;
  clear: both;
}

.site-title {
  color: var(--text-primary) !important;
  text-decoration: none;
  font-weight: 700;
  font-family: "Crimson Text", Georgia, serif;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  float: left;
  font-size: 32px;
  line-height: 54px;
  letter-spacing: -0.5px;
  margin-bottom: 0;
}
.site-title:hover {
  color: var(--accent-color) !important;
}
@media screen and (max-width: 600px) {
  .site-title {
    font-size: 24px;
  }
}

.terminal-prompt {
  color: var(--terminal-green);
  font-family: "Source Code Pro", "JetBrains Mono", monospace;
  font-size: 0.6em;
  font-weight: 400;
}
@media screen and (max-width: 600px) {
  .terminal-prompt {
    font-size: 0.5em;
  }
}

.site-title-text {
  font-weight: 600;
}

.site-nav {
  float: right;
  line-height: 54px;
}
.site-nav .nav-trigger {
  display: none;
}
.site-nav .menu-icon {
  display: none;
}
.site-nav .page-link {
  color: var(--text-secondary);
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  transition: all 0.2s ease;
}
.site-nav .page-link:hover {
  background-color: var(--border-color);
  color: var(--text-primary);
}
.site-nav .page-link:not(:last-child) {
  margin-right: 0;
}
@media screen and (max-width: 600px) {
  .site-nav {
    position: absolute;
    top: 9px;
    right: 15px;
    background-color: var(--secondary-color);
    border: 1px solid var(--border-color);
    border-radius: 5px;
    text-align: right;
    z-index: 1000;
  }
  .site-nav label[for=nav-trigger] {
    display: block;
    float: right;
    width: 36px;
    height: 36px;
    z-index: 1001;
    cursor: pointer;
  }
  .site-nav .menu-icon {
    display: block;
    float: right;
    width: 36px;
    height: 26px;
    line-height: 0;
    padding-top: 10px;
    text-align: center;
  }
  .site-nav .menu-icon > svg {
    fill: var(--text-secondary);
  }
  .site-nav input ~ .trigger {
    clear: both;
    display: none;
  }
  .site-nav input:checked ~ .trigger {
    display: block;
    padding-bottom: 5px;
    box-shadow: 0 4px 12px var(--shadow-color);
  }
  .site-nav .page-link {
    display: block;
    padding: 5px 10px;
    margin-left: 20px;
  }
  .site-nav .page-link:not(:last-child) {
    margin-right: 0;
  }
  .site-nav .theme-toggle {
    display: block;
    margin: 10px 20px 5px 20px;
    width: calc(100% - 40px);
    height: 2.2rem;
    justify-content: center;
    align-items: center;
    position: relative;
  }
  .site-nav .theme-toggle .theme-icon {
    font-size: 1.1rem;
    position: absolute;
    transition: opacity 0.3s ease, transform 0.3s ease;
  }
  .site-nav .theme-toggle .dark-icon {
    opacity: 1;
    transform: rotate(0deg);
  }
  .site-nav .theme-toggle .light-icon {
    opacity: 0;
    transform: rotate(180deg);
  }
}

.intro-section {
  background: linear-gradient(135deg, var(--secondary-color), var(--tertiary-color));
  padding: 3rem 2.5rem;
  border-radius: 12px;
  margin-bottom: 3rem;
  border: 1px solid var(--border-color);
  box-shadow: 0 4px 16px var(--shadow-color);
  position: relative;
  overflow: hidden;
}
.intro-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-color), var(--accent-secondary));
}
.intro-section .intro-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}
@media (max-width: 768px) {
  .intro-section .intro-header {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
}
.intro-section h2 {
  color: var(--text-primary);
  margin-bottom: 0;
  font-weight: 700;
  font-size: 2.2rem;
  letter-spacing: -0.03em;
}
.intro-section .profile-image {
  flex-shrink: 0;
}
.intro-section .profile-image .profile-pic {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--accent-color);
  box-shadow: 0 4px 12px var(--shadow-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.intro-section .profile-image .profile-pic:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px var(--shadow-color);
}
@media (max-width: 768px) {
  .intro-section .profile-image .profile-pic {
    width: 85px;
    height: 85px;
  }
}
.intro-section .hero-quote {
  font-size: 1.25rem;
  font-style: italic;
  font-weight: 400;
  line-height: 1.7;
  text-align: center;
  margin: 1.5rem auto;
  padding: 1rem 1.5rem;
  max-width: 65ch;
  color: var(--text-secondary);
  position: relative;
}
@media (max-width: 768px) {
  .intro-section .hero-quote {
    font-size: 1.1rem;
    padding: 0.8rem 1rem;
    margin: 1rem auto;
  }
}
.intro-section .intro-text {
  font-size: 1.15rem;
  line-height: 1.75;
  margin-bottom: 2rem;
  max-width: 65ch;
  color: var(--text-primary);
  font-weight: 400;
}
.intro-section .about-me {
  background-color: var(--code-bg);
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 4px solid var(--accent-color);
  position: relative;
}
.intro-section .about-me::before {
  content: "💭";
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 1.2rem;
  opacity: 0.6;
}
.intro-section .about-me p {
  margin: 0;
  font-style: italic;
}
.intro-section .about-me strong {
  color: var(--terminal-green);
  font-weight: 600;
}

.tag-filter-section {
  margin-bottom: 2rem;
}
.tag-filter-section h3 {
  color: var(--text-primary);
  margin-bottom: 1rem;
  font-weight: 600;
}

.tag-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
  align-items: center;
}

.tag-btn {
  background-color: var(--secondary-color);
  color: var(--text-secondary);
  border: 1px solid var(--border-color);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 0.9em;
}
.tag-btn:hover {
  background-color: var(--border-color);
  color: var(--text-primary);
}
.tag-btn.active {
  background-color: var(--accent-color);
  color: var(--primary-color);
  border-color: var(--accent-color);
}

.filter-toggle-btn {
  background: transparent;
  border: 1px dashed var(--border-color);
  color: var(--text-muted);
  padding: 0.4rem 0.8rem;
  border-radius: 16px;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-left: 0.3rem;
}
.filter-toggle-btn:hover {
  background: var(--tertiary-color);
  color: var(--text-secondary);
  border-color: var(--accent-color);
  border-style: solid;
}
.filter-toggle-btn:focus {
  outline: 2px solid var(--accent-color);
  outline-offset: 2px;
}
.filter-toggle-btn .filter-toggle-text {
  font-weight: 500;
}

.filter-tags-hidden {
  display: inline;
}
.filter-tags-hidden .tag-btn {
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
}

.posts-section h3 {
  color: var(--text-primary);
  margin-bottom: 2rem;
  font-weight: 700;
  font-size: 1.8rem;
  letter-spacing: -0.02em;
  position: relative;
}
.posts-section h3::after {
  content: "";
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 3rem;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-color), var(--accent-secondary));
}

.post-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.post-item {
  background-color: var(--secondary-color);
  margin-bottom: 2rem;
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px var(--shadow-color);
  position: relative;
}
.post-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.post-item:hover {
  border-color: var(--accent-color);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px var(--shadow-color);
}
.post-item:hover::before {
  opacity: 1;
}

.post-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.post-date {
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-family: "JetBrains Mono", monospace;
  font-weight: 500;
  background: var(--code-bg);
  padding: 0.3rem 0.6rem;
  border-radius: 4px;
  border: 1px solid var(--border-color);
}

.post-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  align-items: center;
}

.tag {
  background: linear-gradient(135deg, var(--code-bg), var(--tertiary-color));
  color: var(--accent-color);
  padding: 0.3rem 0.8rem;
  border-radius: 16px;
  font-size: 0.8rem;
  border: 1px solid var(--border-color);
  font-weight: 500;
  transition: all 0.2s ease;
}
.tag:hover {
  background: var(--accent-color);
  color: var(--primary-color);
  transform: translateY(-1px);
}

.tag-toggle-btn {
  background: transparent;
  border: 1px solid var(--border-color);
  color: var(--text-muted);
  padding: 0.25rem 0.6rem;
  border-radius: 12px;
  font-size: 0.75rem;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-left: 0.2rem;
}
.tag-toggle-btn:hover {
  background: var(--tertiary-color);
  color: var(--text-secondary);
  border-color: var(--accent-color);
}
.tag-toggle-btn:focus {
  outline: 2px solid var(--accent-color);
  outline-offset: 2px;
}
.tag-toggle-btn .toggle-text {
  font-weight: 500;
}

.tags-hidden {
  display: inline;
}
.tags-hidden .tag {
  margin-right: 0.4rem;
  margin-bottom: 0.4rem;
}

.ai-transparency {
  background: linear-gradient(135deg, var(--secondary-color), var(--tertiary-color));
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 1.5rem;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  position: relative;
}
.ai-transparency::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-color), var(--accent-secondary));
  border-radius: 12px 12px 0 0;
}

.ai-transparency-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.ai-transparency-header .ai-icon {
  font-size: 1.2rem;
  filter: grayscale(0.3);
}
.ai-transparency-header .ai-transparency-title {
  font-weight: 600;
  color: var(--text-primary);
  font-size: 1rem;
  letter-spacing: 0.025em;
}

.ai-models {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.ai-model-info {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-secondary);
  font-size: 0.9rem;
}
.ai-model-info strong {
  color: var(--text-primary);
  font-weight: 600;
  min-width: fit-content;
}

.ai-prompts-section {
  border-top: 1px solid var(--border-color);
  padding-top: 1rem;
  margin-top: 1rem;
}

.ai-prompts-toggle {
  background: var(--tertiary-color);
  color: var(--text-primary);
  border: 1px solid var(--border-color);
  padding: 0.75rem 1rem;
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
}
.ai-prompts-toggle:hover {
  background: var(--accent-color);
  color: var(--primary-color);
  transform: translateY(-1px);
}
.ai-prompts-toggle:focus {
  outline: 2px solid var(--accent-color);
  outline-offset: 2px;
}
.ai-prompts-toggle .toggle-icon {
  font-size: 0.8rem;
  transition: transform 0.2s ease;
}

.ai-prompts-content {
  margin-top: 1rem;
  animation: fadeIn 0.3s ease;
}

.ai-prompt {
  background: var(--code-bg);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}
.ai-prompt:last-child {
  margin-bottom: 0;
}

.ai-prompt-header {
  background: var(--tertiary-color);
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.ai-prompt-header strong {
  color: var(--text-primary);
  font-weight: 600;
}
.ai-prompt-header .prompt-model {
  color: var(--text-muted);
  font-size: 0.85rem;
  font-style: italic;
}

.ai-prompt-content {
  padding: 0;
}
.ai-prompt-content pre {
  margin: 0;
  padding: 1rem;
  background: var(--code-bg);
  color: var(--text-secondary);
  font-family: "JetBrains Mono", "Monaco", "Menlo", monospace;
  font-size: 0.85rem;
  line-height: 1.5;
  overflow-x: auto;
  white-space: pre-wrap;
  word-wrap: break-word;
}
.ai-prompt-content pre code {
  background: none;
  padding: 0;
  border-radius: 0;
  font-size: inherit;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Transparency Section Styling */
.transparency-section {
  margin: 3rem 0 2rem 0;
  border-top: 2px solid var(--border-color);
  padding-top: 2rem;
}

.transparency-toggle {
  background: var(--tertiary-color);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1rem 1.25rem;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
}
.transparency-toggle:hover {
  background: var(--accent-color);
  color: var(--primary-color);
  transform: translateY(-1px);
}
.transparency-toggle:focus {
  outline: 2px solid var(--accent-color);
  outline-offset: 2px;
}
.transparency-toggle .toggle-icon {
  font-size: 0.8rem;
  transition: transform 0.2s ease;
}
.transparency-toggle .transparency-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
}
.transparency-toggle .transparency-icon {
  font-size: 1.1rem;
}

.transparency-content {
  margin-top: 1.5rem;
  animation: fadeIn 0.3s ease;
  background: var(--code-bg);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
}

.transparency-subsection {
  margin-bottom: 2rem;
}
.transparency-subsection:last-child {
  margin-bottom: 0;
}
.transparency-subsection h4 {
  color: var(--text-primary);
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.transparency-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.transparency-list li {
  margin-bottom: 1rem;
  padding: 0.75rem;
  background: var(--primary-color);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  line-height: 1.6;
}
.transparency-list li:last-child {
  margin-bottom: 0;
}
.transparency-list li a {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 500;
}
.transparency-list li a:hover {
  text-decoration: underline;
}
.transparency-list li a[target=_blank]:after {
  content: " ↗";
  font-size: 0.8em;
  color: var(--text-muted);
}
.transparency-list li .link-description,
.transparency-list li .ref-description,
.transparency-list li .book-description,
.transparency-list li .study-description {
  color: var(--text-secondary);
  font-style: italic;
}
.transparency-list li .ref-author,
.transparency-list li .book-author,
.transparency-list li .study-authors {
  color: var(--text-muted);
  font-size: 0.9em;
}
.transparency-list li .book-year,
.transparency-list li .study-year {
  color: var(--text-muted);
  font-size: 0.9em;
}
.transparency-list li .book-isbn,
.transparency-list li .study-doi,
.transparency-list li .study-journal {
  color: var(--text-muted);
  font-size: 0.85em;
}

.post-link {
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.3rem;
  line-height: 1.4;
  letter-spacing: -0.01em;
}
.post-link:hover {
  color: var(--accent-color);
}

.post-excerpt {
  color: var(--text-secondary);
  margin-top: 1rem;
  line-height: 1.7;
  font-size: 1rem;
  max-width: 65ch;
}

.post .post-header {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--border-color);
  position: relative;
}
.post .post-header::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 4rem;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-color), var(--accent-secondary));
}
.post .post-title {
  color: var(--text-primary);
  font-family: "Crimson Text", Georgia, serif;
  font-weight: 700;
  margin-bottom: 2rem;
  font-size: 3rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
  max-width: 25ch;
  text-align: left;
}
.post .post-title::after {
  content: "";
  display: block;
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-color), transparent);
  margin-top: 1rem;
}
.post .post-content {
  max-width: 75ch;
  margin: 0 auto;
}
.post .post-content > p:first-of-type {
  font-size: 1.15rem;
  font-weight: 400;
  margin-bottom: 2rem;
}
.post .post-content > p:first-of-type::first-letter {
  font-size: 4rem;
  line-height: 1;
  float: left;
  margin: 0.1rem 0.5rem 0 0;
  font-family: "Crimson Text", Georgia, serif;
  font-weight: 700;
  color: var(--accent-color);
}
.post .post-content h1, .post .post-content h2, .post .post-content h3, .post .post-content h4, .post .post-content h5, .post .post-content h6 {
  color: var(--text-primary);
  margin-top: 3rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.post .post-content h2 {
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 0.75rem;
  font-size: 1.8rem;
}
.post .post-content h3 {
  font-size: 1.4rem;
}
.post .post-content p {
  margin-bottom: 1.5rem;
  line-height: 1.75;
  font-size: 1.05rem;
}
.post .post-content a {
  color: var(--accent-color);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}
.post .post-content a:hover {
  border-bottom-color: var(--accent-color);
}
.post .post-content blockquote {
  background: linear-gradient(135deg, var(--quote-bg), var(--secondary-color));
  border-left: 4px solid var(--accent-color);
  padding: 2rem 2.5rem;
  margin: 2.5rem 0;
  border-radius: 0 8px 8px 0;
  font-style: italic;
  position: relative;
  font-family: "Crimson Text", Georgia, serif;
  font-size: 1.1rem;
  line-height: 1.7;
}
.post .post-content blockquote::before {
  content: '"';
  font-size: 4rem;
  color: var(--accent-color);
  opacity: 0.2;
  position: absolute;
  top: 0.2rem;
  left: 0.5rem;
  font-family: "Crimson Text", serif;
  font-weight: 700;
}
.post .post-content blockquote::after {
  content: '"';
  font-size: 4rem;
  color: var(--accent-color);
  opacity: 0.2;
  position: absolute;
  bottom: -1rem;
  right: 0.5rem;
  font-family: "Crimson Text", serif;
  font-weight: 700;
}
.post .post-content blockquote p:last-child {
  margin-bottom: 0;
}
.post .post-content ul, .post .post-content ol {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}
.post .post-content li {
  margin-bottom: 0.75rem;
  line-height: 1.6;
}
.post .post-content strong + em,
.post .post-content strong:contains("Benjamin:"),
.post .post-content strong:contains("Critical AI:") {
  color: var(--accent-color);
  font-weight: 600;
}
.post .post-content ul, .post .post-content ol {
  margin: 1.5rem 0;
  padding-left: 2rem;
}
.post .post-content ul li {
  margin-bottom: 0.8rem;
}
.post .post-content ul li::marker {
  color: var(--accent-color);
  font-weight: 600;
}
.post .post-content ol li {
  margin-bottom: 0.8rem;
}
.post .post-content ol li::marker {
  color: var(--accent-color);
  font-weight: 600;
}
.post .post-content em {
  font-style: italic;
  color: var(--text-secondary);
}
.post .post-content strong {
  font-weight: 600;
  color: var(--text-primary);
}

pre, code {
  background-color: var(--code-bg);
  border: 1px solid var(--border-color);
  font-family: "JetBrains Mono", monospace;
}

pre {
  padding: 1.5rem;
  border-radius: 8px;
  overflow-x: auto;
  margin: 2rem 0;
  box-shadow: 0 2px 8px var(--shadow-color);
  position: relative;
}
pre::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-color), var(--accent-secondary));
}
pre code {
  background: none;
  border: none;
  padding: 0;
  font-size: 0.9rem;
  line-height: 1.5;
}

code {
  padding: 0.3rem 0.5rem;
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--accent-color);
}

.highlight {
  background-color: var(--code-bg);
  border-radius: 8px;
  box-shadow: 0 2px 8px var(--shadow-color);
}
.highlight pre {
  background: none;
  border: none;
  margin: 0;
  box-shadow: none;
}
.highlight pre::before {
  display: none;
}

.post-navigation {
  display: flex;
  justify-content: space-between;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
}
.post-navigation .prev-post, .post-navigation .next-post {
  flex: 1;
}
.post-navigation .next-post {
  text-align: right;
}
.post-navigation a {
  color: var(--accent-color);
  text-decoration: none;
  padding: 0.5rem 1rem;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  display: inline-block;
  transition: all 0.2s ease;
}
.post-navigation a:hover {
  background-color: var(--secondary-color);
  border-color: var(--accent-color);
}

.site-footer {
  background-color: var(--secondary-color);
  border-top: 1px solid var(--border-color);
  margin-top: 3rem;
  padding: 2rem 0;
  font-size: 0.85rem;
}
.site-footer .footer-col-wrapper {
  display: flex;
  flex-wrap: wrap;
  margin-left: -15px;
  gap: 2rem;
}
@media screen and (max-width: 600px) {
  .site-footer .footer-col-wrapper {
    flex-direction: column;
    gap: 1rem;
  }
}
.site-footer .footer-col {
  flex: 1;
  padding-left: 15px;
}
.site-footer .footer-col.footer-col-1 {
  min-width: 200px;
}
.site-footer .footer-col.footer-col-2 {
  min-width: 150px;
}
.site-footer .footer-col.footer-col-3 {
  min-width: 250px;
}
.site-footer .contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-footer .contact-list li {
  margin-bottom: 0.5rem;
}
.site-footer .contact-list a {
  color: var(--accent-color);
  text-decoration: none;
}
.site-footer .contact-list a:hover {
  text-decoration: underline;
}
.site-footer .social-media-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  /* Custom Bluesky icon styling */
}
@media screen and (max-width: 600px) {
  .site-footer .social-media-list {
    justify-content: center;
  }
}
.site-footer .social-media-list li {
  margin: 0;
}
.site-footer .social-media-list a {
  color: var(--text-secondary);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.3rem 0.5rem;
  border-radius: 4px;
  transition: all 0.2s ease;
  font-size: 0.8em;
}
.site-footer .social-media-list a:hover {
  color: var(--accent-color);
  background-color: var(--border-color);
}
.site-footer .social-media-list .svg-icon {
  width: 16px;
  height: 16px;
  fill: currentColor;
  flex-shrink: 0;
}
.site-footer .social-media-list .bluesky-icon {
  width: 16px;
  height: 16px;
  fill: currentColor;
  flex-shrink: 0;
}
.site-footer .social-media-list span {
  white-space: nowrap;
}
.site-footer .footer-bottom {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
  text-align: center;
}
.site-footer .quote-attribution {
  font-size: 0.85rem !important;
  color: var(--text-muted) !important;
  margin-top: 0.5rem !important;
  margin-bottom: 0 !important;
  font-style: normal !important;
  text-align: right;
}
.site-footer .terminal-style {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.8em;
  color: var(--text-secondary);
}
.site-footer .terminal-style .prompt {
  color: var(--terminal-green);
}
.site-footer .terminal-style .command {
  color: var(--accent-color);
}

.archive-section {
  max-width: 900px;
  margin: 0 auto;
}

.archive-intro {
  background: linear-gradient(135deg, var(--secondary-color), var(--tertiary-color));
  padding: 2rem;
  border-radius: 12px;
  margin-bottom: 3rem;
  border: 1px solid var(--border-color);
  box-shadow: 0 4px 16px var(--shadow-color);
}
.archive-intro p {
  margin: 0;
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.archive-controls {
  background: linear-gradient(135deg, var(--secondary-color), var(--tertiary-color));
  padding: 2rem;
  border-radius: 12px;
  margin-bottom: 3rem;
  border: 1px solid var(--border-color);
  box-shadow: 0 4px 16px var(--shadow-color);
}

.search-input {
  width: 100%;
  padding: 1rem;
  background-color: var(--code-bg);
  border: 2px solid var(--border-color);
  border-radius: 8px;
  color: var(--text-primary);
  font-family: "JetBrains Mono", monospace;
  margin-bottom: 1.5rem;
  font-size: 1rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.search-input:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(88, 166, 255, 0.1);
}
.search-input::placeholder {
  color: var(--text-muted);
  font-style: italic;
}

.archive-filters {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.filter-select {
  padding: 0.75rem 1rem;
  background-color: var(--code-bg);
  border: 2px solid var(--border-color);
  border-radius: 8px;
  color: var(--text-primary);
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
  min-width: 150px;
  cursor: pointer;
  transition: border-color 0.2s ease;
}
.filter-select:focus {
  outline: none;
  border-color: var(--accent-color);
}
.filter-select option {
  background-color: var(--code-bg);
  color: var(--text-primary);
}

.archive-timeline {
  margin-top: 2rem;
}

.year-section {
  margin-bottom: 4rem;
}
.year-section:last-child {
  margin-bottom: 2rem;
}

.year-heading {
  color: var(--accent-color);
  font-size: 2.2rem;
  margin-bottom: 2rem;
  font-weight: 700;
  border-bottom: 3px solid var(--border-color);
  padding-bottom: 0.75rem;
  position: relative;
  letter-spacing: -0.02em;
}
.year-heading::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 4rem;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-color), var(--accent-secondary));
}

.month-section {
  margin-bottom: 2.5rem;
}

.month-heading {
  color: var(--text-secondary);
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.9rem;
}

.archive-posts {
  list-style: none;
  margin: 0;
  padding: 0;
}

.archive-post-item {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, var(--secondary-color), var(--tertiary-color));
  border: 1px solid var(--border-color);
  border-radius: 10px;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px var(--shadow-color);
  position: relative;
}
.archive-post-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.archive-post-item:hover {
  border-color: var(--accent-color);
  transform: translateX(8px);
  box-shadow: 0 8px 24px var(--shadow-color);
}
.archive-post-item:hover::before {
  opacity: 1;
}

.archive-post-date {
  font-family: "JetBrains Mono", monospace;
  color: var(--terminal-green);
  font-weight: 600;
  font-size: 1.2rem;
  min-width: 2.5rem;
  text-align: center;
  background: var(--code-bg);
  padding: 0.5rem;
  border-radius: 6px;
  border: 1px solid var(--border-color);
  height: fit-content;
}

.archive-post-content {
  flex: 1;
}

.archive-post-title {
  margin: 0 0 0.75rem 0;
  font-size: 1.2rem;
  line-height: 1.4;
}
.archive-post-title a {
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.archive-post-title a:hover {
  color: var(--accent-color);
}

.archive-post-tags {
  margin-bottom: 0.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.archive-post-tags .tag {
  background: linear-gradient(135deg, var(--code-bg), var(--tertiary-color));
  color: var(--accent-color);
  padding: 0.25rem 0.6rem;
  border-radius: 12px;
  font-size: 0.8rem;
  border: 1px solid var(--border-color);
  font-weight: 500;
  transition: all 0.2s ease;
}
.archive-post-tags .tag:hover {
  background: var(--accent-color);
  color: var(--primary-color);
  transform: translateY(-1px);
}

.archive-post-excerpt {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 60ch;
}

@media (max-width: 768px) {
  .archive-section {
    max-width: 100%;
    padding: 0 1rem;
  }
  .archive-intro,
  .archive-controls {
    padding: 1.5rem;
  }
  .archive-post-item {
    flex-direction: column;
    gap: 1rem;
    padding: 1.25rem;
  }
  .archive-post-date {
    text-align: left;
    align-self: flex-start;
  }
  .archive-filters {
    flex-direction: column;
  }
  .filter-select {
    width: 100%;
    min-width: unset;
  }
  .year-heading {
    font-size: 1.8rem;
  }
}
@media (max-width: 768px) {
  .intro-section {
    padding: 1.5rem;
  }
  .post-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  .post-navigation {
    flex-direction: column;
    gap: 1rem;
  }
  .post-navigation .next-post {
    text-align: left;
  }
  .tag-filter {
    gap: 0.3rem;
  }
  .tag-btn {
    padding: 0.4rem 0.8rem;
    font-size: 0.8em;
  }
  .filter-toggle-btn {
    padding: 0.3rem 0.6rem;
    font-size: 0.75rem;
    margin-left: 0.2rem;
  }
  .filter-tags-hidden .tag-btn {
    margin-right: 0.3rem;
    margin-bottom: 0.3rem;
  }
  .ai-transparency {
    padding: 1rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
  }
  .ai-models {
    gap: 0.5rem;
  }
  .ai-model-info {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
  }
  .ai-prompts-toggle {
    padding: 0.6rem 0.8rem;
    font-size: 0.85rem;
  }
  .ai-prompt-content pre {
    padding: 0.75rem;
    font-size: 0.8rem;
  }
  .post-tags {
    gap: 0.3rem;
  }
  .tag-toggle-btn {
    padding: 0.2rem 0.5rem;
    font-size: 0.7rem;
    margin-left: 0.1rem;
  }
  .tags-hidden .tag {
    margin-right: 0.3rem;
    margin-bottom: 0.3rem;
  }
}
::selection {
  background-color: var(--accent-color);
  color: var(--primary-color);
}

::-moz-selection {
  background-color: var(--accent-color);
  color: var(--primary-color);
}

button:focus,
input:focus,
textarea:focus,
a:focus {
  outline: 2px solid var(--accent-color);
  outline-offset: 2px;
}

.about-page {
  max-width: 75ch;
  margin: 0 auto;
}

.about-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  margin-bottom: 3rem;
  padding: 2rem 0;
}
@media screen and (max-width: 768px) {
  .about-header {
    text-align: center;
    gap: 1.5rem;
  }
}

.about-intro-section {
  display: flex;
  align-items: center;
  gap: 2rem;
  width: 100%;
  margin-bottom: 2rem;
}
@media screen and (max-width: 768px) {
  .about-intro-section {
    flex-direction: column-reverse;
    text-align: center;
    gap: 1.5rem;
  }
}

.profile-images {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
  width: 100%;
}

.profile-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--accent-color);
  box-shadow: 0 4px 12px var(--shadow-color);
  transition: transform 0.3s ease;
}
.profile-photo:hover {
  transform: scale(1.05);
}
@media screen and (max-width: 768px) {
  .profile-photo {
    width: 100px;
    height: 100px;
  }
}

.dog-photo {
  width: 100%;
  max-width: 75ch;
  height: 200px;
  border-radius: 12px;
  object-fit: cover;
  border: 2px solid var(--text-muted);
  box-shadow: 0 4px 12px var(--shadow-color);
  transition: transform 0.3s ease;
}
.dog-photo:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px var(--shadow-color);
}
@media screen and (max-width: 768px) {
  .dog-photo {
    height: 150px;
  }
}

.about-intro {
  text-align: left;
  flex: 1;
}
.about-intro h1 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-size: 2.5rem;
}
@media screen and (max-width: 768px) {
  .about-intro h1 {
    font-size: 2rem;
    text-align: center;
  }
}
.about-intro .tagline {
  font-size: 1.2rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-bottom: 0;
  font-family: "Crimson Text", Georgia, serif;
}
@media screen and (max-width: 768px) {
  .about-intro .tagline {
    font-size: 1.1rem;
    text-align: center;
  }
}

.profile-photo-solo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--accent-color);
  box-shadow: 0 4px 12px var(--shadow-color);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.profile-photo-solo:hover {
  transform: scale(1.05);
}
@media screen and (max-width: 768px) {
  .profile-photo-solo {
    width: 100px;
    height: 100px;
  }
}

/*# sourceMappingURL=main.css.map */