/* 右侧边栏样式 */

.content-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .content-wrapper {
    grid-template-columns: 1fr 380px;
  }
}

/* 侧边栏基础 */
.sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.sidebar-card {
  background: linear-gradient(135deg, #1f2124 0%, #2a2e32 100%);
  border: 1px solid #363a3f;
  border-radius: 0.75rem;
  padding: 1.5rem;
}

.sidebar-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 1rem;
}

/* Latest Reports */
.latest-reports-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.latest-report-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #363a3f;
}

.latest-report-item:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.latest-report-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.5;
  transition: color 0.2s ease;
}

.latest-report-title:hover {
  color: #2e90fa;
}

.latest-report-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: #979fa7;
}

/* 邮件订阅 */
.subscribe-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.subscribe-description {
  font-size: 0.875rem;
  color: #979fa7;
  line-height: 1.6;
}

.subscribe-input {
  width: 100%;
  padding: 0.75rem 1rem;
  background: #0e1012;
  border: 1px solid #363a3f;
  border-radius: 0.5rem;
  color: #ffffff;
  font-size: 0.875rem;
  transition: border-color 0.2s ease;
}

.subscribe-input:focus {
  outline: none;
  border-color: #2e90fa;
}

.subscribe-btn {
  width: 100%;
  padding: 0.75rem 1rem;
  background: linear-gradient(135deg, #007afb 0%, #0062ff 100%);
  color: #ffffff;
  border: none;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.subscribe-btn:hover {
  background: linear-gradient(135deg, #0062ff 0%, #004ed6 100%);
  transform: translateY(-1px);
}

.subscribe-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

/* 底部链接 */
.footer-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-top: 1rem;
}

.footer-link {
  font-size: 0.75rem;
  color: #979fa7;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: #2e90fa;
}

.footer-copyright {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #363a3f;
  font-size: 0.75rem;
  color: #67707b;
  text-align: center;
}
