/* 引用位置： butterfly的config里面：     inject:head:- <link rel="stylesheet" href="/css/custom.css">  */

/*                 友链界面设置                  */
/* -------------------------------------------- */
.friend-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
  justify-content: flex-start;
}

.friend-card {
  width: 240px;
  background: rgba(255, 255, 255, 0.1);
  padding: 15px;
  border-radius: 12px;
  text-align: center;
  transition: transform 0.3s;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.friend-card:hover {
  transform: translateY(-5px);
}

.friend-card img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 10px;
  transition: transform 0.3s;
}

.friend-name {
  display: block;
  font-size: 1.1rem;
  font-weight: bold;
  color: var(--theme-color, #49b1f5);
  margin-bottom: 5px;
  text-decoration: none;
}

.friend-desc {
  font-size: 0.95rem;
  color: #888;
  margin: 0;
}

.friend-link:hover img {
  transform: scale(1.1);
}
