* { box-sizing: border-box; }
:root { color-scheme: light; }
body { min-height: 100vh; margin: 0; background: radial-gradient(circle at 45% 20%, #fff 0, #fff 42%, #f9fafc 100%); color: #172233; font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; }
main { width: min(calc(100% - 64px), 1460px); margin: auto; }
header { display: flex; align-items: flex-start; justify-content: space-between; padding: clamp(62px, 8vw, 116px) 0 clamp(58px, 7vw, 96px); }
.heading h1 { margin: 0; color: #176fe8; font-size: clamp(42px, 4.6vw, 66px); font-weight: 750; letter-spacing: -.055em; line-height: .95; }
.heading h1 span { color: #152131; }
.heading p { margin: 18px 0 0; color: #9299a5; font-size: clamp(17px, 1.65vw, 24px); }
.date-time { min-width: 190px; text-align: right; }
.date-time > div { display: flex; align-items: center; justify-content: flex-end; gap: 16px; }
.date-time time { color: #172233; font-size: clamp(21px, 2vw, 29px); font-variant-numeric: tabular-nums; font-weight: 700; letter-spacing: -.035em; }
.date-time p { margin: 12px 0 0; color: #9299a5; font-size: clamp(15px, 1.4vw, 20px); }
.clock-icon { position: relative; width: 30px; height: 30px; border: 3px solid #172233; border-radius: 50%; }
.clock-icon::before { position: absolute; top: 5px; left: 12px; width: 3px; height: 8px; content: ''; background: #172233; border-radius: 2px; transform-origin: center bottom; }
.clock-icon::after { position: absolute; top: 12px; left: 12px; width: 7px; height: 3px; content: ''; background: #172233; border-radius: 2px; transform: rotate(24deg); transform-origin: left center; }
#project-grid { display: grid; grid-template-columns: minmax(0, 1050px); gap: 18px; max-width: 1050px; }
.project-card { display: block; padding: 0; color: inherit; background: rgba(255,255,255,.94); border: 1px solid #e7eaf0; border-radius: 0 0 28px 28px; box-shadow: 0 16px 36px rgba(24, 39, 65, .09); text-decoration: none; transition: transform .22s ease, box-shadow .22s ease; }
.project-details { display: grid; grid-template-columns: 76px 1fr 76px; gap: 26px; align-items: center; min-height: 210px; padding: 30px 38px; }
.project-symbol, .project-arrow { display: grid; place-items: center; width: 76px; height: 76px; border-radius: 50%; }
.project-symbol { background: #e8f5e9; font-size: 34px; }
.project-copy { min-width: 0; }
.project-copy strong, .project-copy small { display: block; }
.project-copy strong { color: #172233; font-size: clamp(27px, 3vw, 36px); font-weight: 750; letter-spacing: -.04em; }
.project-copy small { margin-top: 10px; color: #87909e; font-size: clamp(17px, 1.8vw, 24px); line-height: 1.25; }
.project-arrow { color: #126de4; background: #eaf2ff; font-size: 47px; font-weight: 300; transition: transform .2s ease, background .2s ease; }
.project-card:hover { transform: translateY(-4px); box-shadow: 0 26px 55px rgba(24, 39, 65, .14); }
.project-card:hover .project-arrow { background: #dbeaff; transform: translateX(3px); }
.project-card:focus-visible { outline: 3px solid #176fe8; outline-offset: 6px; }
@media (max-width: 760px) {
  main { width: calc(100% - 44px); }
  header { display: grid; gap: 34px; padding: 48px 0 54px; }
  .date-time { min-width: 0; text-align: left; }
  .date-time > div { justify-content: flex-start; }
  .date-time p { margin-left: 46px; }
  #project-grid { grid-template-columns: 1fr; }
  .project-card { border-radius: 0 0 20px 20px; }
  .project-details { grid-template-columns: 52px 1fr 52px; gap: 12px; min-height: 138px; padding: 22px 18px; }
  .project-symbol, .project-arrow { width: 52px; height: 52px; }
  .project-copy strong { font-size: 23px; }
  .project-copy small { font-size: 14px; }
}
