/*
Theme Name:   Argon Child
Description:  Argon Child Theme for Dev
Author:       Jinchen-Yang
Template:     argon
Version:      1.1.0
*/

/* 紫色跳转标签美化 */
.icp-badge {
  display: inline-block;
  text-decoration: none;
  color: #fff !important;
  font-size: 12px;
  padding: 4px 12px;
  border-radius: 50px;
  background: linear-gradient(135deg, #8c52ff, #5ce1e6);
  box-shadow: 0 2px 5px rgba(140, 82, 255, 0.3);
  transition: all 0.3s ease;
  font-family: sans-serif;
  margin-top: 10px;
}

.icp-badge:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 4px 15px rgba(92, 225, 230, 0.6);
  filter: brightness(1.05);
}

/* 美化时间轴节点颜色 */
.timeline-item .timeline-item-marker .timeline-item-marker-indicator {
    background: linear-gradient(135deg, #8c52ff, #5ce1e6) !important;
    box-shadow: 0 0 6px rgba(140, 82, 255, 0.5) !important;
    border: none !important;
}

/* 鼠标悬停时，时间轴卡片稍微上浮 */
.timeline-item .card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-item .card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

.left-header-avatar {
    border-radius: 15px !important;
    border: 3px solid #8c52ff !important;
    transition: transform 0.5s ease;
}

.left-header-avatar:hover {
    transform: rotate(360deg);
}

/* =========================================
   移动端专属样式 (只在屏幕小于 768px 时生效)
   ========================================= */
@media (max-width: 768px) {

    .post-title {
        font-size: 18px !important;
    }

    .icp-badge {
        font-size: 10px;
        padding: 2px 6px;
    }
}
