/* SVTR周报横幅样式 */
.weekly-banner {
  margin-bottom: 20px;
  animation: fadeInUp 0.6s ease-out;
}

.weekly-banner-container {
  background: #ffffff;
  border-radius: 16px;
  padding: 40px 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  border: 1px solid #e0e0e0;
}

.weekly-banner-container:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  border-color: #667eea;
}

/* 背景装饰 - 移除紫色渐变背景装饰 */

.weekly-badge {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.badge-icon {
  font-size: 1.4rem;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-8px);
  }
  60% {
    transform: translateY(-4px);
  }
}

.badge-text {
  color: white;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
}

.weekly-content {
  max-width: 1000px;
  width: 100%;
  color: #333;
  text-align: left;
}

.weekly-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0 0 15px 0;
  background: linear-gradient(135deg, #fa8c32 0%, #ff6b35 50%, #ffbb33 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none !important;
}

.weekly-subtitle {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 0 20px 0;
  color: #444;
  line-height: 1.5;
  text-decoration: none !important;
}

.weekly-bullets {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: left;
  max-width: 800px;
  margin: 0 auto;
}

.weekly-bullet {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
  display: flex;
  gap: 10px;
  text-decoration: none !important;
}

.weekly-bullet::before {
  content: '•';
  color: #667eea;
  flex-shrink: 0;
  font-size: 1.2rem;
}

.weekly-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.btn-read-full,
.btn-subscribe {
  padding: 12px 24px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  border: none;
  white-space: nowrap;
}

.btn-read-full {
  background: white;
  color: #667eea;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-read-full:hover {
  background: #f8f9fa;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.btn-subscribe {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
}

.btn-subscribe:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: white;
  transform: translateY(-2px);
}

/* 移动端适配 */
@media (max-width: 768px) {
  .weekly-banner-container {
    padding: 30px 25px;
  }

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

  .weekly-subtitle {
    font-size: 1.1rem;
  }

  .weekly-bullet {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .weekly-banner-container {
    padding: 25px 20px;
  }

  .weekly-title {
    font-size: 1.3rem;
  }

  .weekly-subtitle {
    font-size: 1rem;
  }

  .weekly-bullet {
    font-size: 0.9rem;
  }
}

/* 入场动画 */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 快捷链接样式(用于日报标题旁边) */
.weekly-quick-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-left: 20px;
  padding: 6px 14px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  font-size: 0.85rem;
  font-weight: 500;
  border-radius: 20px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
}

.weekly-quick-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

/* 侧边栏周报提醒 */
.weekly-reminder {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 12px 16px;
  border-radius: 8px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.2);
}

.weekly-reminder .icon {
  font-size: 1.3rem;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

.weekly-reminder a {
  color: white;
  text-decoration: underline;
  font-weight: 600;
  margin-left: auto;
}

.weekly-reminder a:hover {
  text-decoration: none;
}
