.notice-content {
  flex: 1;
}

.tab-info {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-primary);
}

.tab-info .count {
  font-size: 0.9rem;
  color: #2563eb;
  background: #eff6ff;
  padding: 2px 10px;
  border-radius: 12px;
}

.notice-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}

.notice-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s;
}

.notice-card:hover {
  transform: translateY(-3px);
  border-color: #2563eb;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.notice-card-content {
  flex: 1;
}

.notice-tag {
  display: inline-block;
  font-size: 0.75rem;
  background: #f1f5f9;
  color: #64748b;
  padding: 2px 8px;
  border-radius: 4px;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.notice-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #1e293b;
}

.notice-summary {
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.5;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.notice-footer {
  display: flex;
  gap: 1rem;
  font-size: 0.85rem;
  color: #94a3b8;
}

.notice-thumbnail {
  width: 120px;
  height: 120px;
  margin-left: 2rem;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}

.notice-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 768px) {
  .notice-card {
    flex-direction: column-reverse;
    align-items: flex-start;
  }
  .notice-thumbnail {
    width: 100%;
    margin-left: 0;
    margin-bottom: 1rem;
    height: 150px;
  }
}
