
.notice-list {
  margin-top: 12px;
  list-style: none;
  padding: 0;}
.notice-list > li + li { border-top: 1px solid var(--border);}
.notice-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-size: 14px;
  text-decoration: none;
  color: inherit;
  transition: background-color .15s;}
.notice-link:hover { background: var(--secondary-60);}
.notice-link:hover .notice-title { color: var(--primary);}
.notice-cat {
  display: inline-flex;
  height: 24px;
  width: 80px;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
  font-size: 12px;}
.cat-teaching { background: var(--primary); color: var(--primary-foreground);}
.cat-default {
  background: var(--secondary); color: var(--secondary-foreground);
  border: 1px solid var(--border);}
.cat-rest {
  background: var(--accent-10); color: var(--accent);
  border: 1px solid var(--accent-30);}
.notice-title {
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: var(--foreground);
  transition: color .15s;}
.notice-new {
  flex-shrink: 0;
  border-radius: 2px;
  background: var(--accent);
  padding: 2px 6px;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  color: var(--accent-foreground);}
.notice-meta {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  color: var(--muted-foreground);}
.notice-date {
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;}
.notice-clicks { white-space: nowrap;}
.exam-list {
  margin-top: 12px;
  border-top: 1px solid var(--border);
  list-style: none;
  padding: 0;}
.exam-list > li + li { border-top: 1px solid var(--border);}
.exam-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-size: 14px;
  text-decoration: none;
  color: inherit;
  transition: background-color .15s;}
.exam-link:hover { background: var(--secondary-60);}
.exam-link:hover .notice-title { color: var(--primary);}
.exam-dot {
  height: 6px;
  width: 6px;
  flex-shrink: 0;
  border-radius: 9999px;
  background: var(--accent);}

.talent-grid {
  margin-top: 16px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  list-style: none;
  padding: 0;}
@media (min-width: 768px) { .talent-grid { grid-template-columns: repeat(2, 1fr);} }
@media (min-width: 1024px) { .talent-grid { grid-template-columns: repeat(5, 1fr);} }
.talent-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  background: var(--card);
  padding: 16px;
  text-decoration: none;
  color: inherit;
  transition: border-color .15s, box-shadow .15s;}
.talent-card:hover {
  border-color: var(--primary);
  box-shadow: 0 1px 2px rgba(0,0,0,0.04);}
.talent-card:hover .talent-title { color: var(--primary);}
.talent-card:hover .talent-more { color: var(--accent);}
.talent-no {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.15em;
  color: var(--accent);}
.talent-title {
  margin-top: 8px;
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 700;
  color: var(--foreground);
  transition: color .15s;}
.talent-desc {
  margin-top: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 12px;
  line-height: 1.7;
  color: var(--muted-foreground);}
.talent-more {
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 2px;
  font-size: 12px;
  color: var(--muted-foreground);
  transition: color .15s;}

.download-list {
  margin-top: 12px;
  list-style: none;
  padding: 0;
  border: 1px solid var(--border);
  background: var(--card);}
.download-list > li + li { border-top: 1px solid var(--border);}
.download-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  transition: background-color .15s;}
.download-row:hover { background: var(--secondary-50);}
.file-type {
  display: inline-flex;
  height: 28px;
  width: 48px;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;}
.type-pdf { background: var(--accent); color: var(--accent-foreground);}
.type-doc { background: var(--primary); color: var(--primary-foreground);}
.type-xls { background: oklch(0.45 0.12 155); color: var(--primary-foreground);}
.file-name {
  flex: 1;
  min-width: 0;}
.file-name-text {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 14px;
  color: var(--foreground);
  text-decoration: none;}
.file-name-text:hover { color: var(--primary);}
.btn-download {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  gap: 4px;
  border: 1px solid var(--border);
  padding: 4px 10px;
  font-size: 12px;
  color: var(--primary);
  text-decoration: none;
  transition: background-color .15s, border-color .15s, color .15s;}
.btn-download:hover {
  border-color: var(--primary);
  background: var(--primary);
  color: var(--primary-foreground);}
