/* ============================================================
   Author Bio
   ============================================================ */
.authorbio {
    background: var(--surface);
    margin: 0 0 16px;
    padding: 22px 26px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: flex-start;
    gap: 18px;
    text-align: left;
}

.authorbio .avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 2px solid var(--border);
    flex-shrink: 0;
    object-fit: cover;
}

.authorbio .postinfo {
    flex: 1;
    text-align: left;
}

.authorbio .postinfo li {
    line-height: 1.7;
    font-size: 13.5px;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.authorbio .postinfo strong {
    color: var(--text);
}

.authorbio .postinfo a {
    color: var(--primary);
}

.authorbio-top {
    margin: 0;
    padding: 10px 22px;
    background: var(--border-light);
    border: none;
    box-shadow: none;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    border-top: 1px solid var(--border);
    gap: 12px;
}

.authorbio-top .avatar {
    display: none;
}

.authorbio-top .postinfo li {
    font-size: 12.5px;
    margin-bottom: 2px;
}

.widget-stats {
     border: 1px solid var(--border);
     border-radius: var(--radius-lg);
     box-shadow: var(--shadow-sm);
 }
 
 .stats-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

  .stats-item {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 0 12px;
      border-bottom: none;
      font-size: 12px;
      height: 24px;
  }
  
  .stats-item:hover {
      background-color: rgba(0, 150, 136, 0.03);
      padding-left: 16px;
  }

  .stats-item--last {
     border-bottom: none;
  }

  .stats-icon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 22px;
      height: 22px;
      border-radius: 4px;
      background: linear-gradient(135deg, rgba(0, 150, 136, 0.1) 0%, rgba(0, 150, 136, 0.05) 100%);
      color: var(--primary);
      flex-shrink: 0;
      font-size: 11px;
  }
 
 .stats-item:hover .stats-icon {
     background: linear-gradient(135deg, rgba(0, 150, 136, 0.2) 0%, rgba(0, 150, 136, 0.1) 100%);
 }

.stats-label {
    flex: 1;
    color: var(--text-muted);
    min-width: 48px;
    font-size: 12px;
}

.stats-value {
    font-weight: 600;
    color: var(--primary);
    min-width: 40px;
    text-align: right;
    font-size: 13px;
}

 .widget-tags {
     border: 1px solid var(--border);
     border-radius: var(--radius-lg);
     box-shadow: var(--shadow-sm);
 }
 
   .tagcloud .tag-link {
       display: inline-block;
       padding: 3px 8px;
       background: linear-gradient(135deg, var(--border-light) 0%, rgba(0, 150, 136, 0.05) 100%);
       color: var(--text-muted);
       border-radius: 12px;
       font-size: 12px;
       text-decoration: none;
       border: 1px solid var(--border);
       font-weight: 500;
       transition: all var(--transition);
   }
  
  .tagcloud .tag-link:hover {
      background: linear-gradient(135deg, var(--primary) 0%, rgba(0, 150, 136, 0.8) 100%);
      color: white;
      border-color: var(--primary);
      box-shadow: 0 2px 8px rgba(0, 150, 136, 0.2);
  }

/* ============================================================
    Widget Container Enhancement
    ============================================================ */
 .widget {
     background: var(--surface);
     margin: 0 0 18px;
     border: 1.5px solid var(--border);
     border-radius: var(--radius-lg);
     box-shadow: var(--shadow-sm);
     overflow: hidden;
 }
 
 .widget:hover {
     border-color: rgba(0, 150, 136, 0.2);
     box-shadow: var(--shadow);
 }
 
 

