* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: #1f2937;
  background-color: #ffffff;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme=light]) body {
    color: #f3f4f6;
    background-color: #1d212f;
  }
}
[data-theme=dark] body {
  color: #f3f4f6;
  background-color: #1d212f;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

a {
  color: #3b82f6;
  text-decoration: none;
  transition: color 0.2s ease;
}
a:hover {
  color: #0b63f3;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  margin-bottom: 2rem;
}
header h1 {
  font-size: 1.5rem;
  font-weight: bold;
}
header h1 a {
  color: #1f2937;
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme=light]) header h1 a {
    color: #f3f4f6;
  }
}
[data-theme=dark] header h1 a {
  color: #f3f4f6;
}

.main-site-link {
  display: flex;
  align-items: center;
}
.main-site-link a {
  color: #3b82f6;
  text-decoration: none;
  padding: 10px;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}
.main-site-link a:hover {
  background-color: #f0f0f0;
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme=light]) .main-site-link a {
    color: #9dc0fa;
  }
  :root:not([data-theme=light]) .main-site-link a:hover {
    background-color: rgba(59, 130, 246, 0.2);
  }
}
[data-theme=dark] .main-site-link a {
  color: #9dc0fa;
}
[data-theme=dark] .main-site-link a:hover {
  background-color: rgba(59, 130, 246, 0.2);
}
@media (max-width: 768px) {
  .main-site-link a {
    display: block;
    text-align: center;
    padding: 15px;
  }
  .main-site-link a span {
    display: block;
    text-align: center;
  }
}

#theme-toggle {
  background: none;
  border: none;
  cursor: pointer;
  color: #1f2937;
  padding: 0.5rem;
  border-radius: 0.375rem;
  transition: background-color 0.2s ease;
}
#theme-toggle:hover {
  background-color: rgba(31, 41, 55, 0.1);
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme=light]) #theme-toggle {
    color: #f3f4f6;
  }
  :root:not([data-theme=light]) #theme-toggle:hover {
    background-color: rgba(243, 244, 246, 0.1);
  }
}
[data-theme=dark] #theme-toggle {
  color: #f3f4f6;
}
[data-theme=dark] #theme-toggle:hover {
  background-color: rgba(243, 244, 246, 0.1);
}
#theme-toggle .sun {
  display: none;
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme=light]) #theme-toggle .moon {
    display: none;
  }
  :root:not([data-theme=light]) #theme-toggle .sun {
    display: inline;
  }
}
[data-theme=dark] #theme-toggle .moon {
  display: none;
}
[data-theme=dark] #theme-toggle .sun {
  display: inline;
}

.welcome {
  text-align: center;
  margin-bottom: 3rem;
}
.welcome .avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin-bottom: 1rem;
}
.welcome h2 {
  font-size: 2.25rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}
.welcome p {
  color: #6b7280;
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto;
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme=light]) .welcome p {
    color: #9ca3af;
  }
}
[data-theme=dark] .welcome p {
  color: #9ca3af;
}

.posts {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.post-card {
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  overflow: hidden;
  transition: box-shadow 0.2s ease;
}
.post-card:hover {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme=light]) .post-card {
    border-color: #374151;
  }
}
[data-theme=dark] .post-card {
  border-color: #374151;
}
.post-card img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}
.post-card .post-content {
  padding: 1.5rem;
}
.post-card .post-content p {
  color: #6b7280;
  font-size: 1rem;
  line-height: 1.6;
  margin-top: 0.75rem;
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme=light]) .post-card .post-content p {
    color: #9ca3af;
  }
}
[data-theme=dark] .post-card .post-content p {
  color: #9ca3af;
}
.post-card h2 {
  font-size: 1.7rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}
.post-card h2 a {
  color: #1f2937;
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme=light]) .post-card h2 a {
    color: #f3f4f6;
  }
}
[data-theme=dark] .post-card h2 a {
  color: #f3f4f6;
}
.post-card .post-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  color: #6b7280;
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme=light]) .post-card .post-meta {
    color: #9ca3af;
  }
}
[data-theme=dark] .post-card .post-meta {
  color: #9ca3af;
}
.post-card .category {
  background-color: #3b82f6;
  color: white;
  padding: 0.25rem 0.5rem;
  border-radius: 9999px;
  font-weight: 500;
  font-size: 0.7rem;
}
.post-card p {
  color: #6b7280;
  font-size: 1rem;
  line-height: 1.5;
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme=light]) .post-card p {
    color: #9ca3af;
  }
}
[data-theme=dark] .post-card p {
  color: #9ca3af;
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
}
.pagination button {
  background-color: transparent;
  border: 1px solid #e5e7eb;
  color: #1f2937;
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  cursor: pointer;
  font-size: 0.875rem;
  transition: all 0.2s ease;
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme=light]) .pagination button {
    border-color: #374151;
    color: #f3f4f6;
  }
}
[data-theme=dark] .pagination button {
  border-color: #374151;
  color: #f3f4f6;
}
.pagination button:hover:not(:disabled) {
  background-color: #3b82f6;
  border-color: #3b82f6;
  color: white;
}
.pagination button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.pagination button.active {
  background-color: #3b82f6;
  border-color: #3b82f6;
  color: white;
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin: 2rem 0;
}
.pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.5rem;
  height: 2.5rem;
  padding: 0.5rem;
  border: 1px solid #e5e7eb;
  border-radius: 0.375rem;
  color: #1f2937;
  font-size: 0.875rem;
  text-decoration: none;
  transition: all 0.2s ease;
}
.pagination .page-numbers.prev, .pagination .page-numbers.next {
  padding: 0.5rem 1rem;
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme=light]) .pagination .page-numbers {
    border-color: #374151;
    color: #f3f4f6;
  }
}
[data-theme=dark] .pagination .page-numbers {
  border-color: #374151;
  color: #f3f4f6;
}
.pagination .dots {
  color: #6b7280;
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme=light]) .pagination .dots {
    color: #9ca3af;
  }
}
[data-theme=dark] .pagination .dots {
  color: #9ca3af;
}

.back-link {
  display: inline-flex;
  align-items: center;
  margin-bottom: 1.5rem;
  color: #1f2937;
  font-weight: 500;
  transition: color 0.2s ease;
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme=light]) .back-link {
    color: #f3f4f6;
  }
}
[data-theme=dark] .back-link {
  color: #f3f4f6;
}
.back-link:hover {
  color: #3b82f6;
}
.back-link svg {
  margin-right: 0.5rem;
}

.post {
  max-width: 800px;
  margin: 0 auto;
}
.post h1 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
}
.post .post-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
  color: #6b7280;
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme=light]) .post .post-meta {
    color: #9ca3af;
  }
}
[data-theme=dark] .post .post-meta {
  color: #9ca3af;
}
.post img {
  width: 100%;
  height: auto;
  border-radius: 0.5rem;
  margin-bottom: 1.5rem;
}
.post .post-content {
  font-size: 1.1rem;
}
.post .post-content h2 {
  font-size: 1.875rem;
  font-weight: bold;
  margin-top: 2rem;
  margin-bottom: 1rem;
}
.post .post-content h3 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}
.post .post-content p {
  margin-bottom: 1.25rem;
  line-height: 1.75;
}
.post .post-content ul, .post .post-content ol {
  margin-bottom: 1.25rem;
  padding-left: 1.5rem;
}
.post .post-content ul li, .post .post-content ol li {
  margin-bottom: 0.5rem;
}

footer {
  text-align: center;
  padding: 2rem 0;
  color: #6b7280;
  font-size: 0.875rem;
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme=light]) footer {
    color: #9ca3af;
  }
}
[data-theme=dark] footer {
  color: #9ca3af;
}

@media (min-width: 768px) {
  .post-card {
    display: flex;
  }
  .post-card img {
    width: 200px;
    height: auto;
  }
  .post-card .post-content {
    flex: 1;
  }
}
@media (max-width: 768px) {
  header h1 {
    font-size: 1.25rem;
  }
  .post-card h2 {
    font-size: 1.5rem;
  }
  .post-card h3 {
    font-size: 1.5rem;
  }
  .post h1 {
    font-size: 1.5rem;
  }
  .post .post-content {
    font-size: 1rem;
  }
  .post .post-content h2 {
    font-size: 1.25rem;
  }
  .post .post-content h3 {
    font-size: 1.125rem;
  }
  .post .post-meta {
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-start;
  }
}
/**
* Bootstrap Alerts
*/
.alert {
  position: relative;
  padding: 0.75rem 1.25rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: 0.25rem;
}

.alert-heading {
  color: inherit;
}

.alert-link {
  font-weight: 700;
}

.alert-dismissible {
  padding-right: 4rem;
}

.alert-dismissible .close {
  position: absolute;
  top: 0;
  right: 0;
  padding: 0.75rem 1.25rem;
  color: inherit;
}

.alert-primary {
  color: #004085;
  background-color: #cce5ff;
  border-color: #b8daff;
}

.alert-primary hr {
  border-top-color: #9fcdff;
}

.alert-primary .alert-link {
  color: #002752;
}

.alert-secondary {
  color: #383d41;
  background-color: #e2e3e5;
  border-color: #d6d8db;
}

.alert-secondary hr {
  border-top-color: #c8cbcf;
}

.alert-secondary .alert-link {
  color: #202326;
}

.alert-success {
  color: #155724;
  background-color: #d4edda;
  border-color: #c3e6cb;
}

.alert-success hr {
  border-top-color: #b1dfbb;
}

.alert-success .alert-link {
  color: #0b2e13;
}

.alert-info {
  color: #0c5460;
  background-color: #d1ecf1;
  border-color: #bee5eb;
}

.alert-info hr {
  border-top-color: #abdde5;
}

.alert-info .alert-link {
  color: #062c33;
}

.alert-warning {
  color: #856404;
  background-color: #fff3cd;
  border-color: #ffeeba;
}

.alert-warning hr {
  border-top-color: #ffe8a1;
}

.alert-warning .alert-link {
  color: #533f03;
}

.alert-danger {
  color: #721c24;
  background-color: #f8d7da;
  border-color: #f5c6cb;
}

.alert-danger hr {
  border-top-color: #f1b0b7;
}

.alert-danger .alert-link {
  color: #491217;
}

.alert-light {
  color: #818182;
  background-color: #fefefe;
  border-color: #fdfdfe;
}

.alert-light hr {
  border-top-color: #ececf6;
}

.alert-light .alert-link {
  color: #686868;
}

.alert-dark {
  color: #1b1e21;
  background-color: #d6d8d9;
  border-color: #c6c8ca;
}

.alert-dark hr {
  border-top-color: #b9bbbe;
}

.alert-dark .alert-link {
  color: #040505;
}

.main-site-link {
  display: block;
  text-align: center;
  padding: 15px;
}

.main-site-link a {
  color: #0073aa;
  text-decoration: none;
  padding: 10px;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}
.main-site-link a:hover {
  background-color: #f0f0f0;
}
@media (max-width: 768px) {
  .main-site-link a {
    display: block;
    text-align: center;
    padding: 15px;
  }
}

.error-404 {
  text-align: center;
  padding: 5rem 1rem;
}

.error-404 h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.error-404 p {
  font-size: 1.25rem;
  color: #6b7280;
}

.hero-section {
  margin-bottom: 4rem;
}

.hero-card {
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 1rem;
  padding: 2.5rem;
  margin-bottom: 2rem;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.3s ease;
}
.hero-card:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme=light]) .hero-card {
    background-color: #232838;
    border-color: #374151;
  }
}
[data-theme=dark] .hero-card {
  background-color: #232838;
  border-color: #374151;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
@media (min-width: 768px) {
  .hero-content {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    gap: 2rem;
  }
}

.hero-avatar {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 1.5rem;
  border: 4px solid #3b82f6;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
@media (min-width: 768px) {
  .hero-avatar {
    margin-bottom: 0;
  }
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme=light]) .hero-avatar {
    border-color: #6ca1f8;
  }
}
[data-theme=dark] .hero-avatar {
  border-color: #6ca1f8;
}

.hero-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  background: linear-gradient(135deg, #3b82f6 0%, #84b1f9 100%);
  color: white;
  border: 1px solid #3b82f6;
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .hero-badge {
    margin: 0;
  }
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme=light]) .hero-badge {
    box-shadow: 0 0 25px rgba(59, 130, 246, 0.5);
  }
}
[data-theme=dark] .hero-badge {
  box-shadow: 0 0 25px rgba(59, 130, 246, 0.5);
}

.pulse-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  margin-right: 0.5rem;
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}
.hero-title {
  font-size: 2rem;
  font-weight: 700;
  color: #1f2937;
  margin: 0;
}
@media (min-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme=light]) .hero-title {
    color: #f3f4f6;
  }
}
[data-theme=dark] .hero-title {
  color: #f3f4f6;
}

.hero-description {
  font-size: 1.125rem;
  line-height: 1.75;
  color: #6b7280;
  margin: 0;
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme=light]) .hero-description {
    color: #9ca3af;
  }
}
[data-theme=dark] .hero-description {
  color: #9ca3af;
}

.highlight {
  color: #3b82f6;
  font-weight: 600;
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme=light]) .highlight {
    color: #84b1f9;
  }
}
[data-theme=dark] .highlight {
  color: #84b1f9;
}

.social-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-top: 0.5rem;
}
@media (min-width: 768px) {
  .social-links {
    display: flex;
    flex-wrap: wrap;
  }
}

.social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.625rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #1f2937;
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  text-decoration: none;
  transition: all 0.2s ease;
}
.social-btn:hover {
  background-color: white;
  border-color: #3b82f6;
  color: #3b82f6;
  transform: translateY(-2px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme=light]) .social-btn {
    color: #f3f4f6;
    background-color: #2d3348;
    border-color: #374151;
  }
  :root:not([data-theme=light]) .social-btn:hover {
    background-color: #343c55;
    border-color: #6ca1f8;
    color: #6ca1f8;
  }
}
[data-theme=dark] .social-btn {
  color: #f3f4f6;
  background-color: #2d3348;
  border-color: #374151;
}
[data-theme=dark] .social-btn:hover {
  background-color: #343c55;
  border-color: #6ca1f8;
  color: #6ca1f8;
}
.social-btn svg {
  width: 18px;
  height: 18px;
}

.main-nav {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}
@media (min-width: 768px) {
  .main-nav {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }
}

.nav-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1.25rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #1f2937;
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  text-decoration: none;
  transition: all 0.2s ease;
  text-align: center;
}
.nav-link:hover {
  background-color: white;
  border-color: #3b82f6;
  color: #3b82f6;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.15);
}
.nav-link.active {
  background-color: #3b82f6;
  border-color: #3b82f6;
  color: white;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.25);
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme=light]) .nav-link {
    color: #f3f4f6;
    background-color: #232838;
    border-color: #374151;
  }
  :root:not([data-theme=light]) .nav-link:hover {
    background-color: #2d3348;
    border-color: #6ca1f8;
    color: #6ca1f8;
  }
  :root:not([data-theme=light]) .nav-link.active {
    background-color: #3b82f6;
    border-color: #3b82f6;
    color: white;
  }
}
[data-theme=dark] .nav-link {
  color: #f3f4f6;
  background-color: #232838;
  border-color: #374151;
}
[data-theme=dark] .nav-link:hover {
  background-color: #2d3348;
  border-color: #6ca1f8;
  color: #6ca1f8;
}
[data-theme=dark] .nav-link.active {
  background-color: #3b82f6;
  border-color: #3b82f6;
  color: white;
}
.nav-link svg {
  width: 24px;
  height: 24px;
}
@media (min-width: 768px) {
  .nav-link {
    flex-direction: row;
    justify-content: flex-start;
    padding: 1rem 1.5rem;
    font-size: 1rem;
  }
  .nav-link svg {
    width: 20px;
    height: 20px;
  }
}

.section-divider {
  position: relative;
  margin: 3rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.divider-line {
  position: absolute;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, #e5e7eb 50%, transparent 100%);
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme=light]) .divider-line {
    background: linear-gradient(90deg, transparent 0%, #374151 50%, transparent 100%);
  }
}
[data-theme=dark] .divider-line {
  background: linear-gradient(90deg, transparent 0%, #374151 50%, transparent 100%);
}

.divider-icon {
  position: relative;
  padding: 0 1rem;
  background-color: #ffffff;
  color: #6b7280;
  font-family: "Courier New", monospace;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme=light]) .divider-icon {
    background-color: #1d212f;
    color: #9ca3af;
  }
}
[data-theme=dark] .divider-icon {
  background-color: #1d212f;
  color: #9ca3af;
}

.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}
@media (min-width: 768px) {
  .section-header {
    text-align: left;
  }
}

.section-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-size: 1.875rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 0.5rem;
}
@media (min-width: 768px) {
  .section-title {
    justify-content: flex-start;
    font-size: 2.25rem;
  }
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme=light]) .section-title {
    color: #f3f4f6;
  }
}
[data-theme=dark] .section-title {
  color: #f3f4f6;
}

.section-icon {
  font-size: 2rem;
}

.section-subtitle {
  font-size: 1rem;
  color: #6b7280;
  margin: 0;
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme=light]) .section-subtitle {
    color: #9ca3af;
  }
}
[data-theme=dark] .section-subtitle {
  color: #9ca3af;
}

.projects-section {
  margin-bottom: 4rem;
}

.projects-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.project-card {
  position: relative;
  display: block;
  padding: 2rem;
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}
.project-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
  border-color: #3b82f6;
}
.project-card:hover .external-icon {
  opacity: 1;
  transform: translate(2px, -2px);
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme=light]) .project-card {
    background-color: #232838;
    border-color: #374151;
  }
  :root:not([data-theme=light]) .project-card:hover {
    border-color: #6ca1f8;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
  }
}
[data-theme=dark] .project-card {
  background-color: #232838;
  border-color: #374151;
}
[data-theme=dark] .project-card:hover {
  border-color: #6ca1f8;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
}

.project-card-placeholder {
  opacity: 0.7;
  cursor: default;
  border-style: dashed;
}
.project-card-placeholder:hover {
  transform: none;
  box-shadow: none;
  border-color: #e5e7eb;
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme=light]) .project-card-placeholder:hover {
    border-color: #374151;
  }
}
[data-theme=dark] .project-card-placeholder:hover {
  border-color: #374151;
}

.project-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.project-emoji {
  font-size: 2.5rem;
  line-height: 1;
}

.external-icon {
  width: 20px;
  height: 20px;
  color: #6b7280;
  opacity: 0;
  transition: all 0.2s ease;
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme=light]) .external-icon {
    color: #9ca3af;
  }
}
[data-theme=dark] .external-icon {
  color: #9ca3af;
}

.project-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 0.75rem;
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme=light]) .project-title {
    color: #f3f4f6;
  }
}
[data-theme=dark] .project-title {
  color: #f3f4f6;
}

.project-description {
  font-size: 1rem;
  line-height: 1.6;
  color: #6b7280;
  margin-bottom: 1.25rem;
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme=light]) .project-description {
    color: #9ca3af;
  }
}
[data-theme=dark] .project-description {
  color: #9ca3af;
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.project-tag {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: #1f2937;
  background-color: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 9999px;
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme=light]) .project-tag {
    color: #f3f4f6;
    background-color: rgba(59, 130, 246, 0.15);
    border-color: rgba(59, 130, 246, 0.3);
  }
}
[data-theme=dark] .project-tag {
  color: #f3f4f6;
  background-color: rgba(59, 130, 246, 0.15);
  border-color: rgba(59, 130, 246, 0.3);
}

.blog-section {
  margin-bottom: 4rem;
}

.blog-posts {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.no-posts {
  text-align: center;
  padding: 3rem 1rem;
  color: #6b7280;
  font-size: 1.125rem;
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme=light]) .no-posts {
    color: #9ca3af;
  }
}
[data-theme=dark] .no-posts {
  color: #9ca3af;
}

.blog-cta {
  text-align: center;
  margin-top: 2.5rem;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  color: white;
  background-color: #3b82f6;
  border: none;
  border-radius: 0.5rem;
  text-decoration: none;
  transition: all 0.2s ease;
  box-shadow: 0 2px 4px rgba(59, 130, 246, 0.2);
}
.btn-primary:hover {
  background-color: #1469f4;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
  color: white;
}
.btn-primary svg {
  width: 20px;
  height: 20px;
  transition: transform 0.2s ease;
}
.btn-primary:hover svg {
  transform: translateX(4px);
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme=light]) .btn-primary {
    background-color: #5392f7;
  }
  :root:not([data-theme=light]) .btn-primary:hover {
    background-color: #6ca1f8;
  }
}
[data-theme=dark] .btn-primary {
  background-color: #5392f7;
}
[data-theme=dark] .btn-primary:hover {
  background-color: #6ca1f8;
}

.blog-header {
  margin-bottom: 3rem;
  padding: 2rem 0;
}

.blog-header-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2rem;
}
@media (min-width: 768px) {
  .blog-header-content {
    flex-direction: row;
    text-align: left;
    gap: 3rem;
  }
}

.blog-avatar-wrapper {
  flex-shrink: 0;
}

.blog-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  border: 3px solid #3b82f6;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme=light]) .blog-avatar {
    border-color: #6ca1f8;
  }
}
[data-theme=dark] .blog-avatar {
  border-color: #6ca1f8;
}

.blog-header-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.blog-main-title {
  font-size: 2rem;
  font-weight: 700;
  color: #1f2937;
  margin: 0;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .blog-main-title {
    font-size: 2.5rem;
  }
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme=light]) .blog-main-title {
    color: #f3f4f6;
  }
}
[data-theme=dark] .blog-main-title {
  color: #f3f4f6;
}

.blog-tagline {
  font-size: 1.125rem;
  line-height: 1.75;
  color: #6b7280;
  margin: 0;
  max-width: 700px;
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme=light]) .blog-tagline {
    color: #9ca3af;
  }
}
[data-theme=dark] .blog-tagline {
  color: #9ca3af;
}

.blog-quick-nav {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
}
@media (min-width: 768px) {
  .blog-quick-nav {
    justify-content: flex-start;
  }
}

.quick-nav-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #1f2937;
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  text-decoration: none;
  transition: all 0.2s ease;
}
.quick-nav-btn:hover {
  background-color: white;
  border-color: #3b82f6;
  color: #3b82f6;
  transform: translateY(-2px);
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme=light]) .quick-nav-btn {
    color: #f3f4f6;
    background-color: #272c3f;
    border-color: #374151;
  }
  :root:not([data-theme=light]) .quick-nav-btn:hover {
    background-color: #30374f;
    border-color: #6ca1f8;
    color: #6ca1f8;
  }
}
[data-theme=dark] .quick-nav-btn {
  color: #f3f4f6;
  background-color: #272c3f;
  border-color: #374151;
}
[data-theme=dark] .quick-nav-btn:hover {
  background-color: #30374f;
  border-color: #6ca1f8;
  color: #6ca1f8;
}
.quick-nav-btn svg {
  width: 18px;
  height: 18px;
}

.posts-listing {
  margin-bottom: 4rem;
}

.posts {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .posts {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .posts {
    grid-template-columns: repeat(3, 1fr);
  }
}

.post-card {
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
}
.post-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
  border-color: #3b82f6;
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme=light]) .post-card {
    background-color: #232838;
    border-color: #374151;
  }
  :root:not([data-theme=light]) .post-card:hover {
    border-color: #6ca1f8;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
  }
}
[data-theme=dark] .post-card {
  background-color: #232838;
  border-color: #374151;
}
[data-theme=dark] .post-card:hover {
  border-color: #6ca1f8;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
}

.post-card-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background-color: #e5e7eb;
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme=light]) .post-card-image {
    background-color: #374151;
  }
}
[data-theme=dark] .post-card-image {
  background-color: #374151;
}
.post-card-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}
.post-card-image:hover img {
  transform: scale(1.05);
}

.post-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.post-categories {
  margin-bottom: 0.75rem;
}

.post-title {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4;
  margin: 0;
  padding: 0;
}
.post-title a {
  color: #1f2937;
  text-decoration: none;
}
.post-title a:hover {
  color: #3b82f6;
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme=light]) .post-title a {
    color: #f3f4f6;
  }
  :root:not([data-theme=light]) .post-title a:hover {
    color: #6ca1f8;
  }
}
[data-theme=dark] .post-title a {
  color: #f3f4f6;
}
[data-theme=dark] .post-title a:hover {
  color: #6ca1f8;
}

.post-excerpt {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: #6b7280;
  margin-bottom: 1rem;
  flex: 1;
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme=light]) .post-excerpt {
    color: #9ca3af;
  }
}
[data-theme=dark] .post-excerpt {
  color: #9ca3af;
}

.post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8125rem;
  color: #6b7280;
  margin-bottom: 1rem;
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme=light]) .post-meta {
    color: #9ca3af;
  }
}
[data-theme=dark] .post-meta {
  color: #9ca3af;
}
.post-meta .meta-item {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
}
.post-meta .meta-item svg {
  width: 16px;
  height: 16px;
  opacity: 0.7;
}

.read-more-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #3b82f6;
  text-decoration: none;
  transition: all 0.2s ease;
}
.read-more-link:hover {
  gap: 0.75rem;
  color: #0b63f3;
}
.read-more-link:hover svg {
  transform: translateX(4px);
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme=light]) .read-more-link {
    color: #6ca1f8;
  }
  :root:not([data-theme=light]) .read-more-link:hover {
    color: #9dc0fa;
  }
}
[data-theme=dark] .read-more-link {
  color: #6ca1f8;
}
[data-theme=dark] .read-more-link:hover {
  color: #9dc0fa;
}
.read-more-link svg {
  width: 16px;
  height: 16px;
  transition: transform 0.2s ease;
}

.no-posts {
  text-align: center;
  padding: 4rem 2rem;
  grid-column: 1/-1;
}
.no-posts .no-posts-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
}
.no-posts h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 0.5rem;
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme=light]) .no-posts h3 {
    color: #f3f4f6;
  }
}
[data-theme=dark] .no-posts h3 {
  color: #f3f4f6;
}
.no-posts p {
  font-size: 1rem;
  color: #6b7280;
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme=light]) .no-posts p {
    color: #9ca3af;
  }
}
[data-theme=dark] .no-posts p {
  color: #9ca3af;
}

.single-post {
  max-width: 800px;
  margin: 0 auto;
}

.post-header {
  margin-bottom: 2rem;
  text-align: center;
}
@media (min-width: 768px) {
  .post-header {
    text-align: left;
  }
}

.post-main-title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  color: #1f2937;
  margin: 1rem 0;
}
@media (min-width: 768px) {
  .post-main-title {
    font-size: 2.75rem;
  }
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme=light]) .post-main-title {
    color: #f3f4f6;
  }
}
[data-theme=dark] .post-main-title {
  color: #f3f4f6;
}

.post-meta-header {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  font-size: 0.9375rem;
  color: #6b7280;
  margin-top: 1.5rem;
}
@media (min-width: 768px) {
  .post-meta-header {
    justify-content: flex-start;
  }
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme=light]) .post-meta-header {
    color: #9ca3af;
  }
}
[data-theme=dark] .post-meta-header {
  color: #9ca3af;
}
.post-meta-header .meta-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.post-meta-header .meta-item svg {
  width: 18px;
  height: 18px;
  opacity: 0.8;
}

.post-featured-image {
  width: 100%;
  margin: 2rem 0;
  border-radius: 0.75rem;
  overflow: hidden;
}
.post-featured-image img {
  width: 100%;
  height: auto;
  display: block;
}

.post-content {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: #1f2937;
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme=light]) .post-content {
    color: #f3f4f6;
  }
}
[data-theme=dark] .post-content {
  color: #f3f4f6;
}
.post-content h1, .post-content h2, .post-content h3, .post-content h4, .post-content h5, .post-content h6 {
  font-weight: 700;
  line-height: 1.3;
  margin-top: 2.5rem;
  margin-bottom: 1.25rem;
  color: #1f2937;
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme=light]) .post-content h1, :root:not([data-theme=light]) .post-content h2, :root:not([data-theme=light]) .post-content h3, :root:not([data-theme=light]) .post-content h4, :root:not([data-theme=light]) .post-content h5, :root:not([data-theme=light]) .post-content h6 {
    color: #f3f4f6;
  }
}
[data-theme=dark] .post-content h1, [data-theme=dark] .post-content h2, [data-theme=dark] .post-content h3, [data-theme=dark] .post-content h4, [data-theme=dark] .post-content h5, [data-theme=dark] .post-content h6 {
  color: #f3f4f6;
}
.post-content h2 {
  font-size: 2rem;
  margin-top: 3rem;
}
@media (max-width: 768px) {
  .post-content h2 {
    font-size: 1.5rem;
  }
}
.post-content h3 {
  font-size: 1.5rem;
  margin-top: 2.5rem;
}
@media (max-width: 768px) {
  .post-content h3 {
    font-size: 1.25rem;
  }
}
.post-content h4 {
  font-size: 1.25rem;
}
.post-content p {
  margin-bottom: 1.5rem;
}
.post-content strong, .post-content b {
  font-weight: 700;
  color: #1f2937;
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme=light]) .post-content strong, :root:not([data-theme=light]) .post-content b {
    color: #f3f4f6;
  }
}
[data-theme=dark] .post-content strong, [data-theme=dark] .post-content b {
  color: #f3f4f6;
}
.post-content em, .post-content i {
  font-style: italic;
}
.post-content a {
  color: #3b82f6;
  text-decoration: underline;
  text-decoration-color: rgba(59, 130, 246, 0.3);
  text-underline-offset: 3px;
  transition: all 0.2s ease;
}
.post-content a:hover {
  color: #0b63f3;
  text-decoration-color: rgba(59, 130, 246, 0.7);
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme=light]) .post-content a {
    color: #84b1f9;
  }
  :root:not([data-theme=light]) .post-content a:hover {
    color: #b5d0fc;
  }
}
[data-theme=dark] .post-content a {
  color: #84b1f9;
}
[data-theme=dark] .post-content a:hover {
  color: #b5d0fc;
}
.post-content ul, .post-content ol {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}
.post-content ul li, .post-content ol li {
  margin-bottom: 0.75rem;
  line-height: 1.75;
}
.post-content ul {
  list-style-type: disc;
}
.post-content ol {
  list-style-type: decimal;
}
.post-content blockquote {
  margin: 2rem 0;
  padding: 1.25rem 1.5rem;
  border-left: 4px solid #3b82f6;
  background-color: rgba(59, 130, 246, 0.05);
  font-style: italic;
  color: #1f2937;
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme=light]) .post-content blockquote {
    background-color: rgba(59, 130, 246, 0.1);
    color: #f3f4f6;
  }
}
[data-theme=dark] .post-content blockquote {
  background-color: rgba(59, 130, 246, 0.1);
  color: #f3f4f6;
}
.post-content blockquote p:last-child {
  margin-bottom: 0;
}
.post-content code {
  font-family: "Courier New", Courier, monospace;
  font-size: 0.9em;
  padding: 0.2rem 0.4rem;
  background-color: rgba(31, 41, 55, 0.05);
  border-radius: 0.25rem;
  color: #0b63f3;
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme=light]) .post-content code {
    background-color: rgba(243, 244, 246, 0.1);
    color: #84b1f9;
  }
}
[data-theme=dark] .post-content code {
  background-color: rgba(243, 244, 246, 0.1);
  color: #84b1f9;
}
.post-content pre {
  margin: 2rem 0;
  padding: 1.5rem;
  background-color: rgba(31, 41, 55, 0.05);
  border-radius: 0.5rem;
  overflow-x: auto;
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme=light]) .post-content pre {
    background-color: rgba(243, 244, 246, 0.05);
  }
}
[data-theme=dark] .post-content pre {
  background-color: rgba(243, 244, 246, 0.05);
}
.post-content pre code {
  padding: 0;
  background-color: transparent;
  color: #1f2937;
  font-size: 0.9rem;
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme=light]) .post-content pre code {
    color: #f3f4f6;
  }
}
[data-theme=dark] .post-content pre code {
  color: #f3f4f6;
}
.post-content img {
  max-width: 100%;
  height: auto;
  border-radius: 0.5rem;
  margin: 2rem 0;
}
.post-content hr {
  margin: 3rem 0;
  border: none;
  border-top: 2px solid #e5e7eb;
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme=light]) .post-content hr {
    border-top-color: #374151;
  }
}
[data-theme=dark] .post-content hr {
  border-top-color: #374151;
}
.post-content table {
  width: 100%;
  margin: 2rem 0;
  border-collapse: collapse;
}
.post-content table th, .post-content table td {
  padding: 0.75rem;
  border: 1px solid #e5e7eb;
  text-align: left;
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme=light]) .post-content table th, :root:not([data-theme=light]) .post-content table td {
    border-color: #374151;
  }
}
[data-theme=dark] .post-content table th, [data-theme=dark] .post-content table td {
  border-color: #374151;
}
.post-content table th {
  background-color: rgba(59, 130, 246, 0.1);
  font-weight: 600;
}

.post-footer {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 2px solid #e5e7eb;
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme=light]) .post-footer {
    border-top-color: #374151;
  }
}
[data-theme=dark] .post-footer {
  border-top-color: #374151;
}

.post-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}
.post-tags svg {
  flex-shrink: 0;
  color: #6b7280;
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme=light]) .post-tags svg {
    color: #9ca3af;
  }
}
[data-theme=dark] .post-tags svg {
  color: #9ca3af;
}
.post-tags a {
  display: inline-block;
  padding: 0.375rem 0.875rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #1f2937;
  background-color: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 9999px;
  text-decoration: none;
  transition: all 0.2s ease;
}
.post-tags a:hover {
  background-color: #3b82f6;
  border-color: #3b82f6;
  color: white;
  transform: translateY(-2px);
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme=light]) .post-tags a {
    color: #f3f4f6;
    background-color: rgba(59, 130, 246, 0.15);
    border-color: rgba(59, 130, 246, 0.3);
  }
  :root:not([data-theme=light]) .post-tags a:hover {
    background-color: #5392f7;
    border-color: #5392f7;
  }
}
[data-theme=dark] .post-tags a {
  color: #f3f4f6;
  background-color: rgba(59, 130, 246, 0.15);
  border-color: rgba(59, 130, 246, 0.3);
}
[data-theme=dark] .post-tags a:hover {
  background-color: #5392f7;
  border-color: #5392f7;
}

.post-share {
  margin-top: 3rem;
  padding: 2rem;
  background-color: rgba(59, 130, 246, 0.05);
  border-radius: 0.75rem;
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme=light]) .post-share {
    background-color: rgba(59, 130, 246, 0.1);
  }
}
[data-theme=dark] .post-share {
  background-color: rgba(59, 130, 246, 0.1);
}
.post-share h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 1.25rem;
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme=light]) .post-share h3 {
    color: #f3f4f6;
  }
}
[data-theme=dark] .post-share h3 {
  color: #f3f4f6;
}

.share-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: white;
  border-radius: 0.5rem;
  text-decoration: none;
  transition: all 0.2s ease;
}
.share-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}
.share-btn svg {
  width: 20px;
  height: 20px;
}
.share-btn.share-twitter {
  background-color: #1DA1F2;
}
.share-btn.share-twitter:hover {
  background-color: #0d8cda;
  color: white;
}
.share-btn.share-linkedin {
  background-color: #0A66C2;
}
.share-btn.share-linkedin:hover {
  background-color: #08529b;
  color: white;
}
.share-btn.share-facebook {
  background-color: #1877F2;
}
.share-btn.share-facebook:hover {
  background-color: #0c64d5;
  color: white;
}

.comments-section {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 2px solid #e5e7eb;
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme=light]) .comments-section {
    border-top-color: #374151;
  }
}
[data-theme=dark] .comments-section {
  border-top-color: #374151;
}

.home .site-title,
.page-template-default .site-title {
  display: none;
}

.pagination {
  list-style: none !important;
  padding: 0 !important;
}
.pagination ul {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}
.pagination li {
  list-style: none !important;
  display: inline-block !important;
}

@media (min-width: 1024px) {
  .posts {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

.post-title {
  font-size: 1.125rem !important;
}
@media (min-width: 768px) {
  .post-title {
    font-size: 1.25rem !important;
  }
}

@media (min-width: 768px) {
  .post-card-home {
    display: grid;
    grid-template-columns: 250px 1fr;
    min-height: 200px;
  }
}
.post-card-home .post-thumbnail {
  display: none;
}
@media (min-width: 768px) {
  .post-card-home .post-thumbnail {
    display: block;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 200px;
  }
}
.post-card-home .post-content {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.post-card-home .post-title {
  font-size: 1.125rem;
  margin: 0;
  padding: 0;
}
.post-card-home .post-title a {
  color: #1f2937;
  text-decoration: none;
}
.post-card-home .post-title a:hover {
  color: #3b82f6;
}
.post-card-home .post-categories {
  margin-bottom: 0.5rem;
}
.post-card-home .post-meta {
  font-size: 0.8125rem;
}
.post-card-home .post-meta .date {
  color: #6b7280;
}

.post-categories-row {
  margin-bottom: 1.25rem;
  display: flex;
  gap: 0.5rem;
}

.category-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: white;
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  border-radius: 9999px;
  box-shadow: 0 2px 8px rgba(59, 130, 246, 0.25);
  transition: all 0.2s ease;
}
.category-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.35);
}

.post-main-title {
  margin-bottom: 1.5rem;
  margin-top: 0;
}

.post-meta-header {
  padding-bottom: 1.5rem;
  border-bottom: 2px solid #e5e7eb;
  margin-bottom: 2rem;
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme=light]) .post-meta-header {
    border-bottom-color: #374151;
  }
}
[data-theme=dark] .post-meta-header {
  border-bottom-color: #374151;
}

.meta-link {
  color: #6b7280;
  text-decoration: none;
  transition: color 0.2s ease;
}
.meta-link:hover {
  color: #3b82f6;
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme=light]) .meta-link {
    color: #9ca3af;
  }
  :root:not([data-theme=light]) .meta-link:hover {
    color: #60a5fa;
  }
}
[data-theme=dark] .meta-link {
  color: #9ca3af;
}
[data-theme=dark] .meta-link:hover {
  color: #60a5fa;
}

.post-card-home .post-excerpt {
  font-size: 0.9rem;
  line-height: 1.5;
  color: #6b7280;
  margin-bottom: 0.75rem;
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme=light]) .post-card-home .post-excerpt {
    color: #9ca3af;
  }
}
[data-theme=dark] .post-card-home .post-excerpt {
  color: #9ca3af;
}
.post-card-home .post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}
.post-card-home .post-meta .meta-item {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.75rem;
}
.post-card-home .post-meta .meta-item svg {
  width: 14px;
  height: 14px;
  opacity: 0.7;
}

.post-header {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 2rem;
}

.post-categories-row {
  margin-bottom: 1rem;
  padding-bottom: 0;
  display: block;
}

.post-main-title {
  margin: 0 0 1.5rem 0;
  padding: 0;
  line-height: 1.2;
  display: block;
}

.post-meta-header {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding: 1rem 0;
  margin: 0;
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme=light]) .post-meta-header {
    border-color: #374151;
  }
}
[data-theme=dark] .post-meta-header {
  border-color: #374151;
}
.post-meta-header .meta-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
  color: #6b7280;
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme=light]) .post-meta-header .meta-item {
    color: #9ca3af;
  }
}
[data-theme=dark] .post-meta-header .meta-item {
  color: #9ca3af;
}
.post-meta-header .meta-item svg {
  width: 18px;
  height: 18px;
  opacity: 0.8;
  flex-shrink: 0;
}

.post-title, .post-main-title {
  margin: 0;
  padding: 0;
}/*# sourceMappingURL=styles.css.map */