@charset "UTF-8";
.current {
  color: green;
}

/* Header - full width to match page width */
.site-header {
  position: relative;
  z-index: 99999;
  width: 100%;
  padding-left: 30px;
  padding-right: 30px;
  box-sizing: border-box;
}

/* Make header wrapper full width */
.site-header .wrapper {
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Dropdown Menu Styles */
.site-header .site-nav .trigger {
  display: flex !important;
  align-items: center;
  gap: 10px;
  flex-wrap: nowrap;
}

.site-header .site-nav .page-link {
  flex-shrink: 0;
}

.site-header .site-nav .dropdown {
  position: relative;
  display: inline-block;
  flex-shrink: 0;
}

.site-header .site-nav .dropdown-toggle {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
}

.site-header .site-nav .dropdown-menu {
  display: none !important;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 160px;
  background-color: #fdfdfd;
  border: 1px solid #e8e8e8;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  z-index: 99999;
  padding: 8px 0;
  flex-direction: column;
}

.site-header .site-nav .dropdown:hover .dropdown-menu {
  display: flex !important;
}

.site-header .site-nav .dropdown-item {
  display: block;
  padding: 8px 16px;
  color: #424242;
  text-decoration: none;
  font-size: 14px;
  white-space: nowrap;
}

.site-header .site-nav .dropdown-item:hover {
  background-color: #f5f5f5;
  color: #111;
}

/* ==================== */
/* Homepage Styles      */
/* ==================== */
/* Hero Section */
.hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 60px 20px;
  text-align: center;
  margin: -30px -15px 40px -15px;
  border-radius: 0 0 20px 20px;
}

.hero h1 {
  font-size: 2.5em;
  margin-bottom: 10px;
  font-weight: 700;
}

.hero-subtitle {
  font-size: 1.2em;
  opacity: 0.9;
  margin-bottom: 20px;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 30px;
}

.hero-stats span {
  font-size: 1em;
}

.hero-stats strong {
  font-size: 1.5em;
  display: block;
}

/* Tag Cloud */
.tag-cloud-section {
  margin-bottom: 50px;
}

.tag-cloud-section h2 {
  font-size: 1.5em;
  margin-bottom: 20px;
  color: #333;
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 15px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 10px;
}

.tag-item {
  background: white;
  padding: 4px 10px;
  border-radius: 15px;
  text-decoration: none;
  color: #666;
  border: 1px solid #dee2e6;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 500;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.tag-item:hover {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border-color: transparent;
  transform: translateY(-1px);
  box-shadow: 0 3px 8px rgba(102, 126, 234, 0.3);
}

.tag-count {
  background: #e9ecef;
  padding: 1px 6px;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 600;
  color: #868e96;
}

.tag-item:hover .tag-count {
  background: rgba(255, 255, 255, 0.25);
  color: white;
}

/* Category Sections */
.category-sections {
  margin-bottom: 50px;
}

.category-section {
  margin-bottom: 40px;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  border-bottom: 2px solid #667eea;
  padding-bottom: 10px;
}

.section-header h2 {
  font-size: 1.5em;
  color: #333;
  margin: 0;
}

.view-all {
  color: #667eea;
  text-decoration: none;
  font-size: 0.9em;
  font-weight: 500;
}

.view-all:hover {
  text-decoration: underline;
}

/* Post Cards Grid */
.post-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
}

.post-card {
  background: white;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s;
  border: 1px solid #eee;
}

.post-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.card-category {
  display: inline-block;
  background: #667eea;
  color: white;
  padding: 3px 10px;
  border-radius: 12px;
  font-size: 0.75em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.post-card h3 {
  font-size: 1.1em;
  margin: 0 0 10px 0;
  line-height: 1.4;
}

.post-card h3 a {
  color: #333;
  text-decoration: none;
}

.post-card h3 a:hover {
  color: #667eea;
}

.card-excerpt {
  color: #666;
  font-size: 0.9em;
  line-height: 1.5;
  margin-bottom: 15px;
}

.card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8em;
  color: #999;
}

.card-tags {
  display: flex;
  gap: 5px;
}

.mini-tag {
  background: #f0f0f0;
  padding: 2px 8px;
  border-radius: 10px;
  font-size: 0.85em;
}

/* Recent Posts List */
.recent-posts {
  margin-bottom: 50px;
}

.recent-posts h2 {
  font-size: 1.5em;
  margin-bottom: 20px;
  color: #333;
}

.post-list-cards {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.post-list-card {
  background: white;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
  border: 1px solid #eee;
  transition: all 0.2s;
}

.post-list-card:hover {
  border-color: #667eea;
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.15);
}

.post-list-card h3 {
  font-size: 1.15em;
  margin: 8px 0 10px 0;
}

.post-list-card h3 a {
  color: #333;
  text-decoration: none;
}

.post-list-card h3 a:hover {
  color: #667eea;
}

/* View More Button */
.view-more {
  text-align: center;
  margin-top: 30px;
}

.btn-view-more {
  display: inline-block;
  background: #667eea;
  color: white;
  padding: 12px 30px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s;
}

.btn-view-more:hover {
  background: #5a6fd6;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

/* ==================== */
/* Category Page Styles */
/* ==================== */
.category-page {
  max-width: 1200px;
  margin: 0 auto;
}

.category-header {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
  color: white !important;
  padding: 50px 30px !important;
  text-align: center !important;
  margin: -30px -15px 40px -15px !important;
  border-radius: 0 0 20px 20px !important;
}

.category-header h1 {
  font-size: 2.5em !important;
  margin: 0 0 15px 0 !important;
  font-weight: 700 !important;
  color: white !important;
}

.category-description {
  font-size: 1.1em;
  opacity: 0.9;
  margin: 0;
}

.category-description .post-count {
  background: rgba(255, 255, 255, 0.2);
  padding: 8px 20px;
  border-radius: 20px;
  font-weight: 500;
}

.category-posts {
  padding: 0 15px;
}

.posts-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)) !important;
  gap: 25px !important;
}

.category-page .post-card {
  background: white !important;
  border-radius: 12px !important;
  overflow: hidden !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08) !important;
  transition: all 0.3s ease !important;
  border: 1px solid #eee !important;
  padding: 0 !important;
}

.category-page .post-card:hover {
  transform: translateY(-5px) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12) !important;
}

.category-page .card-content {
  padding: 25px !important;
}

.category-page .card-date {
  font-size: 0.85em !important;
  color: #667eea !important;
  font-weight: 500 !important;
  margin-bottom: 10px !important;
}

.category-page .card-title {
  font-size: 1.2em !important;
  margin: 0 0 12px 0 !important;
  line-height: 1.4 !important;
}

.category-page .card-title a {
  color: #333 !important;
  text-decoration: none !important;
  transition: color 0.2s !important;
}

.category-page .card-title a:hover {
  color: #667eea !important;
}

.category-page .card-excerpt {
  color: #666 !important;
  font-size: 0.95em !important;
  line-height: 1.6 !important;
  margin-bottom: 15px !important;
}

.category-page .card-tags {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 8px !important;
}

.category-page .card-tags .tag {
  background: #f0f4ff !important;
  color: #667eea !important;
  padding: 4px 12px !important;
  border-radius: 15px !important;
  font-size: 0.8em !important;
  font-weight: 500 !important;
}

.no-posts {
  text-align: center;
  color: #666;
  padding: 50px;
  font-size: 1.1em;
}

/* ==================== */
/* Post Category Badges */
/* ==================== */
.post-header .post-categories {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 8px !important;
  margin-top: 12px !important;
}

.post-header .post-categories .post-category-badge {
  display: inline-flex !important;
  align-items: center !important;
  gap: 5px !important;
  background: linear-gradient(135deg, #f0f4ff 0%, #e8edff 100%) !important;
  color: #5a6acf !important;
  padding: 5px 14px !important;
  border-radius: 20px !important;
  font-size: 0.82em !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  border: 1px solid #d0d8f8 !important;
  transition: all 0.25s ease !important;
  letter-spacing: 0.02em !important;
  line-height: 1.4 !important;
}

.post-header .post-categories .post-category-badge::before {
  content: "📂";
  font-size: 0.9em;
}

.post-header .post-categories a.post-category-badge:hover {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
  color: white !important;
  border-color: transparent !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.35) !important;
  text-decoration: none !important;
}

.post-header .post-categories a.post-category-badge:hover::before {
  content: "📁";
}

.post-header .post-categories .category-separator {
  color: #b0b8d6 !important;
  font-size: 1.2em !important;
  font-weight: 300 !important;
  align-self: center !important;
}

/* ==================== */
/* Thumbnail Styles     */
/* ==================== */
/* Post page thumbnail */
.post-thumbnail {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Post list with thumbnails */
.post-list .post-item.has-thumbnail {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.post-list .post-thumbnail-link {
  flex-shrink: 0;
}

.post-list .post-list-thumbnail {
  width: 150px;
  height: 100px;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.post-list .post-list-thumbnail:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.post-list .post-content-wrapper {
  flex: 1;
  min-width: 0;
}

/* Mobile styles */
@media screen and (max-width: 600px) {
  .hero {
    padding: 40px 15px;
    margin: -20px -10px 30px -10px;
  }
  .hero h1 {
    font-size: 1.8em;
  }
  .hero-stats {
    flex-direction: column;
    gap: 10px;
  }
  .post-cards {
    grid-template-columns: 1fr;
  }
  .site-header .site-nav .trigger {
    display: flex !important;
    flex-direction: row;
    gap: 8px;
  }
  .site-header .site-nav .nav-trigger,
  .site-header .site-nav label[for=nav-trigger] {
    display: none !important;
  }
  .category-header {
    padding: 30px 15px;
    margin: -20px -10px 30px -10px;
  }
  .category-header h1 {
    font-size: 1.8em;
  }
  .posts-grid {
    grid-template-columns: 1fr;
  }
  /* Thumbnail mobile */
  .post-list .post-item.has-thumbnail {
    flex-direction: column;
  }
  .post-list .post-list-thumbnail {
    width: 100%;
    height: 150px;
  }
}

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