/* ===================================
   2-Column Blog Layout Styles
   =================================== */

/* Override body and header styles for blog pages */
body.single,
body.blog,
body.archive,
body.category,
body.tag,
body.search {
  background: var(--mist-grey) !important;
}

body.single .main-content,
body.blog .main-content,
body.archive .main-content,
body.category .main-content,
body.tag .main-content,
body.search .main-content {
  padding-top: 0 !important;
  min-height: 0 !important;
}

body.single .main-content:first-of-type,
body.blog .main-content:first-of-type,
body.archive .main-content:first-of-type,
body.category .main-content:first-of-type,
body.tag .main-content:first-of-type,
body.search .main-content:first-of-type {
  display: none;
}

/* Blog page navigation background */
body.single .bg-wrapper,
body.blog .bg-wrapper,
body.archive .bg-wrapper,
body.category .bg-wrapper,
body.tag .bg-wrapper,
body.search .bg-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 0;
  pointer-events: none;
}

body.single .bg-gradient,
body.blog .bg-gradient,
body.archive .bg-gradient,
body.category .bg-gradient,
body.tag .bg-gradient,
body.search .bg-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 300px;
  background: linear-gradient(135deg, var(--deep-navy) 0%, var(--midnight-navy) 50%, var(--deep-navy) 100%);
  opacity: 1;
}

body.single .bg-orb,
body.blog .bg-orb,
body.archive .bg-orb,
body.category .bg-orb,
body.tag .bg-orb,
body.search .bg-orb {
  display: none;
}

/* Blog page navigation bar background */
body.single #navbar,
body.blog #navbar,
body.archive #navbar,
body.category #navbar,
body.tag #navbar,
body.search #navbar {
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

body.single #navbar.scrolled,
body.blog #navbar.scrolled,
body.archive #navbar.scrolled,
body.category #navbar.scrolled,
body.tag #navbar.scrolled,
body.search #navbar.scrolled {
  background: rgba(15, 23, 42, 0.98);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
}

/* Container */
.blog-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 90px 2rem 4rem;
  position: relative;
  z-index: 1;
  background: var(--mist-grey);
  min-height: 100vh;
}

/* Breadcrumb */
.breadcrumb {
  display: flex !important;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
  padding: 1rem 1.5rem;
  background: #ffffff;
  border-radius: 8px;
  border: 1px solid rgba(166, 184, 224, 0.2);
  font-size: 0.875rem;
  position: relative;
  z-index: 10;
}

.breadcrumb-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(46, 58, 89, 0.6);
}

.breadcrumb-item a {
  color: var(--pale-blue);
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
  color: var(--amber-orange);
}

.breadcrumb-separator {
  color: rgba(166, 184, 224, 0.5);
  font-size: 0.75rem;
}

.breadcrumb-item.active {
  color: var(--deep-navy);
  font-weight: 600;
}

.blog-content-wrapper {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 3rem;
  align-items: start;
}

/* Archive Header */
.archive-header {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--pale-blue);
}

.archive-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--deep-navy);
  margin-bottom: 0.75rem;
}

.archive-description {
  font-size: 1.125rem;
  color: rgba(46, 58, 89, 0.7);
  line-height: 1.6;
}

/* ===================================
   Main Content Area
   =================================== */

.blog-main-content {
  min-width: 0;
}

/* Blog Posts List (Grid Layout - Same as Top Page) */
.blog-posts-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}

/* Blog Card Styles - Same as Top Page */
.recommended-blog-card {
  background: #ffffff;
  border: 2px solid rgba(166, 184, 224, 0.2);
  border-radius: 2rem;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 8px 24px rgba(46, 58, 89, 0.06);
}

.recommended-blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(255, 184, 76, 0.2);
  border-color: var(--amber-orange);
}

.blog-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
  height: 100%;
}

.blog-card-image {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: rgba(166, 184, 224, 0.08);
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.recommended-blog-card:hover .blog-card-image img {
  transform: scale(1.1);
}

.blog-card-no-image {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: rgba(166, 184, 224, 0.3);
}

.blog-card-content {
  padding: 2rem;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.blog-card-date {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: rgba(46, 58, 89, 0.6);
}

.blog-card-category {
  padding: 0.25rem 0.75rem;
  background: rgba(166, 184, 224, 0.2);
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--pale-blue);
}

.blog-card-title {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--deep-navy);
  margin-bottom: 1rem;
  line-height: 1.5;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  transition: color 0.3s ease;
}

.recommended-blog-card:hover .blog-card-title {
  color: var(--amber-orange);
}

.blog-card-excerpt {
  font-size: 1rem;
  color: rgba(46, 58, 89, 0.8);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.blog-card-footer {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.blog-card-readmore {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--amber-orange);
  font-weight: 600;
  font-size: 0.875rem;
  transition: gap 0.3s ease;
}

.recommended-blog-card:hover .blog-card-readmore {
  gap: 0.75rem;
}

/* ===================================
   Single Post Styles
   =================================== */

.blog-post {
  background: #ffffff;
  border-radius: 16px;
  padding: 3rem;
  border: 2px solid rgba(166, 184, 224, 0.2);
  margin-bottom: 2rem;
  box-shadow: 0 4px 16px rgba(46, 58, 89, 0.08);
}

.post-header {
  margin-bottom: 3rem;
  position: relative;
  z-index: 10;
}

.blog-post .post-title,
.post-title {
  font-size: 2.75rem !important;
  font-weight: 800 !important;
  line-height: 1.2 !important;
  color: var(--deep-navy) !important;
  margin-bottom: 1.25rem !important;
  letter-spacing: -0.02em !important;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  position: relative !important;
  z-index: 10 !important;
}

.post-meta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1rem 0;
  margin-bottom: 2rem;
  font-size: 0.875rem;
  color: rgba(46, 58, 89, 0.6);
  flex-wrap: wrap;
  border-bottom: 1px solid rgba(166, 184, 224, 0.2);
  position: relative;
  z-index: 10;
}

.post-date,
.post-categories,
.post-author {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.post-categories a {
  color: var(--pale-blue);
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 600;
}

.post-categories a:hover {
  color: var(--amber-orange);
}

.post-thumbnail {
  width: calc(100% + 6rem);
  margin-left: -3rem;
  margin-right: -3rem;
  margin-bottom: 3rem;
  border-radius: 0;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.post-thumbnail::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.3));
  z-index: 2;
}

.post-thumbnail img {
  width: 100%;
  height: auto;
  display: block;
}

.post-content {
  color: rgba(46, 58, 89, 0.85);
  font-size: 1.125rem;
  line-height: 1.8;
}

.post-content h2 {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--deep-navy);
  margin: 2.5rem 0 1rem;
  padding: 1rem 1.5rem;
  background: var(--pale-blue);
  border-radius: 8px;
}

.post-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--deep-navy);
  margin: 2rem 0 1rem;
  padding-left: 1rem;
  border-left: 4px solid var(--pale-blue);
}

.post-content h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--deep-navy);
  margin: 1.5rem 0 0.75rem;
  padding-left: 1rem;
  border-left: 3px solid var(--amber-orange);
}

.post-content h5 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--deep-navy);
  margin: 1.5rem 0 0.75rem;
}

.post-content h6 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--pale-blue);
  margin: 1.5rem 0 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.post-content p {
  margin-bottom: 1.5rem;
}

.post-content a {
  color: var(--pale-blue);
  text-decoration: underline;
  transition: color 0.3s ease;
}

.post-content a:hover {
  color: var(--amber-orange);
}

.post-content img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin: 2rem 0;
}

.post-content ul,
.post-content ol {
  margin: 1.5rem 0;
  padding-left: 2rem;
}

.post-content ul li {
  margin-bottom: 0.75rem;
  position: relative;
  padding-left: 0.5rem;
}

.post-content ul li::marker {
  color: var(--amber-orange);
}

.post-content ol li {
  margin-bottom: 0.75rem;
  position: relative;
  padding-left: 0.5rem;
}

.post-content ol li::marker {
  color: var(--pale-blue);
  font-weight: 700;
}

.post-content strong {
  font-weight: 700;
  color: var(--deep-navy);
  background: linear-gradient(transparent 60%, rgba(255, 184, 76, 0.3) 60%);
}

.post-content em {
  font-style: italic;
  color: var(--deep-navy);
}

.post-content blockquote {
  margin: 2rem 0;
  padding: 1.5rem 1.5rem 1.5rem 2rem;
  background: linear-gradient(135deg, rgba(166, 184, 224, 0.08) 0%, rgba(166, 184, 224, 0.15) 100%);
  border-left: 4px solid var(--pale-blue);
  border-radius: 8px;
  font-style: italic;
  color: rgba(46, 58, 89, 0.9);
  position: relative;
}

.post-content blockquote::before {
  content: '\201C';
  font-size: 3rem;
  color: var(--pale-blue);
  opacity: 0.3;
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  line-height: 1;
}

.post-content code {
  background: rgba(255, 184, 76, 0.15);
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-family: 'Courier New', monospace;
  font-size: 0.9em;
  color: var(--deep-navy);
  border: 1px solid rgba(255, 184, 76, 0.3);
}

.post-content pre {
  background: rgba(46, 58, 89, 0.05);
  padding: 1.5rem;
  border-radius: 12px;
  overflow-x: auto;
  margin: 2rem 0;
  border: 2px solid rgba(166, 184, 224, 0.2);
  box-shadow: 0 4px 16px rgba(46, 58, 89, 0.08);
  position: relative;
}

.post-content pre code {
  background: none;
  padding: 0;
  color: var(--deep-navy);
  border: none;
  font-size: 0.95em;
  line-height: 1.6;
}

.post-content hr {
  border: none;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--pale-blue), transparent);
  margin: 3rem 0;
}

.post-content figure {
  margin: 2rem 0;
}

.post-content figure img {
  margin: 0;
}

.post-content figcaption {
  margin-top: 0.75rem;
  text-align: center;
  font-size: 0.875rem;
  color: rgba(46, 58, 89, 0.6);
  font-style: italic;
}

.post-content kbd {
  display: inline-block;
  padding: 0.25rem 0.5rem;
  font-family: 'Courier New', monospace;
  font-size: 0.875em;
  color: var(--deep-navy);
  background: #ffffff;
  border: 1px solid var(--pale-blue);
  border-radius: 4px;
  box-shadow: 0 2px 0 rgba(166, 184, 224, 0.3);
}

.post-content mark {
  background: rgba(255, 184, 76, 0.4);
  color: var(--deep-navy);
  padding: 0.125rem 0.25rem;
  border-radius: 2px;
}

.post-content del {
  text-decoration: line-through;
  color: rgba(46, 58, 89, 0.5);
}

.post-content ins {
  text-decoration: none;
  background: rgba(166, 184, 224, 0.2);
  padding: 0.125rem 0.25rem;
  border-radius: 2px;
}

.post-content abbr {
  text-decoration: underline dotted;
  cursor: help;
  color: var(--pale-blue);
}

.post-content .note,
.post-content .info-box,
.post-content .warning-box {
  margin: 2rem 0;
  padding: 1.25rem 1.5rem;
  border-radius: 8px;
  border-left: 4px solid;
}

.post-content .note {
  background: rgba(166, 184, 224, 0.1);
  border-color: var(--pale-blue);
  color: rgba(46, 58, 89, 0.9);
}

.post-content .info-box {
  background: rgba(166, 184, 224, 0.08);
  border-color: var(--pale-blue);
  color: rgba(46, 58, 89, 0.9);
}

.post-content .warning-box {
  background: rgba(255, 184, 76, 0.1);
  border-color: var(--amber-orange);
  color: rgba(46, 58, 89, 0.9);
}

.post-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(46, 58, 89, 0.08);
}

.post-content table thead {
  background: rgba(166, 184, 224, 0.2);
}

.post-content table thead th {
  padding: 1rem;
  text-align: left;
  font-weight: 700;
  color: var(--deep-navy);
  border-bottom: 2px solid rgba(166, 184, 224, 0.4);
}

.post-content table tbody tr {
  border-bottom: 1px solid rgba(166, 184, 224, 0.2);
  transition: background-color 0.3s ease;
}

.post-content table tbody tr:hover {
  background-color: rgba(166, 184, 224, 0.1);
}

.post-content table tbody tr:last-child {
  border-bottom: none;
}

.post-content table td {
  padding: 1rem;
  color: rgba(46, 58, 89, 0.85);
}

.post-content table th:first-child,
.post-content table td:first-child {
  padding-left: 1.5rem;
}

.post-content table th:last-child,
.post-content table td:last-child {
  padding-right: 1.5rem;
}

/* Post Footer */
.post-footer {
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 2px solid var(--pale-blue);
  background: transparent;
}

/* Post Tags */
.post-tags {
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: #ffffff;
  border-radius: 12px;
  border: 2px solid rgba(166, 184, 224, 0.2);
  box-shadow: 0 2px 8px rgba(46, 58, 89, 0.06);
}

.tags-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--deep-navy);
  margin-bottom: 1rem;
}

.tags-label i {
  color: var(--amber-orange);
}

.tags-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.post-tags a {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(255, 184, 76, 0.1);
  border: 1px solid rgba(255, 184, 76, 0.3);
  border-radius: 20px;
  color: var(--amber-orange);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.post-tags a:hover {
  background: rgba(255, 184, 76, 0.2);
  border-color: var(--amber-orange);
  transform: translateY(-2px);
}

/* Share Buttons */
.post-share {
  padding: 2rem;
  margin-top: 2rem;
  background: #ffffff;
  border-radius: 12px;
  border: 2px solid rgba(166, 184, 224, 0.2);
  box-shadow: 0 2px 8px rgba(46, 58, 89, 0.06);
}

.share-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--deep-navy);
  margin-bottom: 1.25rem;
}

.share-label i {
  color: var(--amber-orange);
  font-size: 1.25rem;
}

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

.share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.375rem;
  font-weight: 600;
  border: 2px solid;
}

.share-btn.twitter {
  background: #000000;
  color: #ffffff !important;
  border-color: #000000;
}

.share-btn.twitter i {
  color: #ffffff !important;
}

.share-btn.twitter:hover {
  background: #333333;
  border-color: #333333;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.share-btn.facebook {
  background: #1877f2;
  color: #ffffff;
  border-color: #1877f2;
}

.share-btn.facebook:hover {
  background: #0c63d4;
  border-color: #0c63d4;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(24, 119, 242, 0.4);
}

.share-btn.line {
  background: #00c300;
  color: #ffffff;
  border-color: #00c300;
}

.share-btn.line:hover {
  background: #00a000;
  border-color: #00a000;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 195, 0, 0.4);
}

/* Post Navigation */
.post-navigation {
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 2px solid var(--pale-blue);
}

.post-navigation .nav-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--deep-navy);
  margin-bottom: 1.5rem;
}

.nav-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.nav-previous,
.nav-next {
  min-width: 0;
}

.nav-link {
  display: flex;
  gap: 1rem;
  padding: 1.25rem;
  background: #ffffff;
  border: 2px solid rgba(166, 184, 224, 0.2);
  border-radius: 12px;
  text-decoration: none;
  color: var(--deep-navy);
  transition: all 0.3s ease;
  height: 100%;
}

.nav-link:hover {
  background: #ffffff;
  border-color: var(--amber-orange);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(255, 184, 76, 0.2);
}

.nav-thumbnail {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
  background: rgba(166, 184, 224, 0.1);
}

.nav-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nav-content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  min-width: 0;
  flex: 1;
}

.nav-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: rgba(46, 58, 89, 0.6);
  font-weight: 600;
}

.nav-label i {
  color: var(--pale-blue);
}

.nav-post-title {
  font-weight: 600;
  color: var(--deep-navy);
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-height: 1.4;
}

.nav-link:hover .nav-post-title {
  color: var(--amber-orange);
}

/* ===================================
   Sidebar Styles
   =================================== */

.blog-sidebar {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.sidebar-widget {
  background: #ffffff;
  border-radius: 16px;
  padding: 1.5rem;
  border: 2px solid rgba(166, 184, 224, 0.2);
  box-shadow: 0 4px 16px rgba(46, 58, 89, 0.08);
}

.widget-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--deep-navy);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.widget-title i {
  color: var(--amber-orange);
}

/* Search Widget */
.search-form {
  position: relative;
}

.search-input-wrapper {
  display: flex;
  gap: 0.5rem;
}

.search-field {
  flex: 1;
  padding: 0.75rem 1rem;
  background: rgba(166, 184, 224, 0.1);
  border: 1px solid rgba(166, 184, 224, 0.3);
  border-radius: 8px;
  color: var(--deep-navy);
  font-size: 0.875rem;
  transition: all 0.3s ease;
}

.search-field:focus {
  outline: none;
  border-color: var(--pale-blue);
  background: rgba(166, 184, 224, 0.15);
}

.search-field::placeholder {
  color: rgba(46, 58, 89, 0.4);
}

.search-submit {
  padding: 0.75rem 1.25rem;
  background: var(--pale-blue);
  border: none;
  border-radius: 8px;
  color: var(--midnight-navy);
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
}

.search-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(166, 184, 224, 0.4);
  background: rgba(166, 184, 224, 0.9);
}

/* Widget List */
.widget-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.widget-list-item a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem;
  background: rgba(166, 184, 224, 0.08);
  border-radius: 8px;
  color: rgba(46, 58, 89, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
}

.widget-list-item a:hover {
  background: rgba(255, 184, 76, 0.15);
  color: var(--amber-orange);
  transform: translateX(4px);
}

.category-name {
  flex: 1;
}

.category-count {
  padding: 0.25rem 0.5rem;
  background: rgba(166, 184, 224, 0.2);
  border-radius: 12px;
  color: var(--pale-blue);
  font-size: 0.75rem;
  font-weight: 600;
}

/* Recent Posts Widget */
.recent-posts-list {
  gap: 1rem;
}

.recent-post-item a {
  display: flex;
  gap: 0.75rem;
  padding: 0;
  background: none;
}

.recent-post-item a:hover {
  background: none;
  transform: none;
}

.recent-post-thumbnail {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  border-radius: 8px;
  overflow: hidden;
}

.recent-post-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.recent-post-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--deep-navy);
  margin-bottom: 0.5rem;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  transition: color 0.3s ease;
}

.recent-post-item a:hover .recent-post-title {
  color: var(--amber-orange);
}

.recent-post-date {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: rgba(46, 58, 89, 0.5);
}

/* Tags Widget */
.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tag-item {
  display: inline-block;
  padding: 0.5rem 0.875rem;
  background: rgba(255, 184, 76, 0.1);
  border: 1px solid rgba(255, 184, 76, 0.3);
  border-radius: 20px;
  color: var(--amber-orange);
  text-decoration: none;
  font-size: 0.875rem;
  transition: all 0.3s ease;
}

.tag-item:hover {
  background: rgba(255, 184, 76, 0.2);
  border-color: var(--amber-orange);
  transform: translateY(-2px);
}

/* ===================================
   Pagination
   =================================== */

.pagination {
  display: flex;
  justify-content: center;
  margin: 3rem 0 2rem;
}

.pagination .page-numbers {
  display: flex;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.pagination .page-numbers li {
  margin: 0;
}

.pagination a,
.pagination .current {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  height: 48px;
  padding: 0 1rem;
  background: #ffffff;
  border: 2px solid rgba(166, 184, 224, 0.3);
  border-radius: 8px;
  color: var(--deep-navy);
  text-decoration: none;
  transition: all 0.3s ease;
}

.pagination a:hover {
  background: rgba(255, 184, 76, 0.1);
  border-color: var(--amber-orange);
  transform: translateY(-2px);
}

.pagination .current {
  background: var(--pale-blue);
  border-color: var(--pale-blue);
  color: var(--midnight-navy);
  font-weight: 700;
}

/* No Posts */
.no-posts {
  text-align: center;
  padding: 4rem 2rem;
  color: rgba(46, 58, 89, 0.5);
}

.no-posts i {
  font-size: 4rem;
  margin-bottom: 1rem;
  display: block;
  color: var(--pale-blue);
}

.no-posts p {
  font-size: 1.25rem;
}

/* Back Buttons - Identical to .blog-view-all and .btn-view-all */
.back-to-blog,
.back-to-home {
  text-align: center;
  margin-top: 2rem;
}

.back-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: var(--pale-blue);
  color: var(--midnight-navy);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease, gap 0.3s ease;
}

.back-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(166, 184, 224, 0.3);
  gap: 1rem;
  background: rgba(166, 184, 224, 0.9);
}

/* ===================================
   Responsive Design
   =================================== */

@media (max-width: 1024px) {
  .blog-content-wrapper {
    grid-template-columns: 1fr 280px;
    gap: 2rem;
  }

  .blog-posts-list {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .blog-container {
    padding: 80px 1.5rem 3rem;
  }

  .blog-content-wrapper {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .blog-sidebar {
    position: static;
  }

  .archive-title {
    font-size: 2rem;
  }

  .blog-posts-list {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .blog-card-image {
    height: 200px;
  }

  .blog-card-content {
    padding: 1.5rem;
  }

  .blog-card-title {
    font-size: 1.125rem;
  }

  .blog-card-no-image {
    font-size: 2.5rem;
  }

  .blog-post {
    padding: 2rem 1.5rem;
  }

  .post-title {
    font-size: 2rem;
  }

  .post-thumbnail {
    width: calc(100% + 3rem);
    margin-left: -1.5rem;
    margin-right: -1.5rem;
  }

  .post-content {
    font-size: 1rem;
  }

  .post-content h2 {
    font-size: 1.5rem;
    padding: 0.875rem 1.25rem;
  }

  .post-content h3 {
    font-size: 1.25rem;
    padding-left: 0.875rem;
  }

  .post-content h4 {
    font-size: 1.125rem;
    padding-left: 0.875rem;
  }

  .post-content h5 {
    font-size: 1rem;
  }

  .post-content h6 {
    font-size: 0.9375rem;
  }

  .nav-links {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .nav-thumbnail {
    width: 60px;
    height: 60px;
  }

  .breadcrumb {
    padding: 0.875rem 1.25rem;
    font-size: 0.8125rem;
  }

  .post-share {
    padding: 1.5rem;
  }

  .share-label {
    font-size: 1rem;
  }

  .share-buttons {
    flex-wrap: wrap;
  }

  .share-btn {
    width: 48px;
    height: 48px;
    font-size: 1.25rem;
  }

  .post-content table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }

  .post-content table th,
  .post-content table td {
    padding: 0.75rem;
  }

  .post-content table th:first-child,
  .post-content table td:first-child {
    padding-left: 1rem;
  }

  .post-content table th:last-child,
  .post-content table td:last-child {
    padding-right: 1rem;
  }
}

@media (max-width: 480px) {
  .blog-container {
    padding: 70px 1rem 2rem;
  }

  .archive-title {
    font-size: 1.5rem;
  }

  .list-item-title {
    font-size: 1.125rem;
  }

  .post-title {
    font-size: 1.75rem;
  }

  .blog-post {
    padding: 1.5rem 1rem;
  }

  .post-thumbnail {
    width: calc(100% + 2rem);
    margin-left: -1rem;
    margin-right: -1rem;
  }

  .post-content h2 {
    font-size: 1.375rem;
    padding: 0.75rem 1rem;
  }

  .post-content h3 {
    font-size: 1.125rem;
    padding-left: 0.75rem;
  }

  .post-content h4 {
    font-size: 1rem;
    padding-left: 0.75rem;
  }

  .post-content h5 {
    font-size: 0.9375rem;
  }

  .post-content h6 {
    font-size: 0.875rem;
  }

  .post-content blockquote {
    padding: 1.25rem 1.25rem 1.25rem 1.75rem;
    font-size: 0.9375rem;
  }

  .post-content blockquote::before {
    font-size: 2.5rem;
  }

  .breadcrumb {
    padding: 0.75rem 1rem;
    font-size: 0.75rem;
    gap: 0.375rem;
  }

  .breadcrumb-separator {
    font-size: 0.625rem;
  }

  .post-share {
    padding: 1.25rem;
  }

  .share-label {
    font-size: 0.9375rem;
  }

  .share-btn {
    width: 44px;
    height: 44px;
    font-size: 1.125rem;
  }

  .nav-thumbnail {
    width: 50px;
    height: 50px;
  }

  .sidebar-widget {
    padding: 1.25rem;
  }

  .post-content table {
    font-size: 0.875rem;
  }

  .post-content table th,
  .post-content table td {
    padding: 0.5rem;
  }

  .post-content table th:first-child,
  .post-content table td:first-child {
    padding-left: 0.75rem;
  }

  .post-content table th:last-child,
  .post-content table td:last-child {
    padding-right: 0.75rem;
  }
}

/* ===================================
   Recommended Posts Widget
   =================================== */

.recommended-posts-widget .widget-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--deep-navy);
}

.recommended-posts-widget .widget-title i {
  color: var(--amber-orange);
}

.recommended-posts-list {
  gap: 1rem;
}

.recommended-post-item a {
  display: flex;
  gap: 0.75rem;
  padding: 0;
  background: none;
}

.recommended-post-item a:hover {
  background: none;
  transform: none;
}

.recommended-post-thumbnail {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}

.recommended-post-thumbnail::after {
  content: '★';
  position: absolute;
  top: 4px;
  right: 4px;
  background: var(--amber-orange);
  color: var(--midnight-navy);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: bold;
}

.recommended-post-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.recommended-post-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--deep-navy);
  margin-bottom: 0.5rem;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  transition: color 0.3s ease;
}

.recommended-post-item a:hover .recommended-post-title {
  color: var(--amber-orange);
}

.recommended-post-date {
  font-size: 0.75rem;
  color: rgba(46, 58, 89, 0.5);
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.recommended-post-date i {
  font-size: 0.7rem;
}
