/* ============================================================
   Page: 科技新知 ＞ 週報（/tech/weekly）
   由 templates/tech/weekly.html 以 layout:fragment="page-styles" 引入。
   規則搬自設計原稿 html/resources/css/main.css 的 weekly 區塊，維持 mobile-first。
   ============================================================ */

.report-grid {
  display: grid;
  gap: 30px;
}

.report-item {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 36px;
  gap: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--color-text-primary);
}

.report-content {
  gap: 20px;
}

.report-date {
  font-size: 30px;
  font-weight: 300;
  line-height: 34px;
  gap: 10px;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .report-grid {
    gap: 70px;
  }
  .report-content {
    gap: 40px;
  }
}
