:root {
  --page-width: 860px;
  --text: #222;
  --muted: #666;
  --link: #1772d0;
  --link-hover: #f09228;
  --line: #ececec;
  --panel: #f6f8fb;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: #fff;
  color: var(--text);
  font-family: "Lato", Verdana, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 1.45;
}

a {
  color: var(--link);
  text-decoration: none;
}

a:hover,
a:focus {
  color: var(--link-hover);
}

p {
  margin: 0 0 12px;
}

h2 {
  margin: 0 0 14px;
  font-size: 22px;
  font-weight: 400;
}

.site {
  max-width: var(--page-width);
  margin: 0 auto;
  padding: 46px 24px 40px;
}

.intro {
  display: block;
}

.name {
  margin: 0 0 14px;
  font-size: 32px;
  line-height: 1.2;
  font-weight: 400;
}

.links {
  margin-top: 14px;
}

.block {
  margin-top: 34px;
}

.news {
  margin: 0;
  padding-left: 0;
  list-style: none;
}

.news li {
  margin-bottom: 8px;
}

.pub {
  display: grid;
  grid-template-columns: 165px 1fr;
  gap: 18px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.pub:first-of-type {
  border-top: 0;
}

.thumb {
  width: 160px;
  height: 100px;
  border-radius: 8px;
  background: var(--panel);
  border: 1px solid #d9e2f0;
  display: grid;
  place-items: center;
  color: #6379a0;
  font-size: 13px;
  overflow: hidden;
}

.thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.thumb-quadcopter img,
.thumb-canary img {
  object-position: center 74%;
}

.pub-copy p {
  margin-bottom: 6px;
}

.papertitle {
  margin: 0 0 6px;
  font-size: 14px;
  font-weight: 700;
}

.venue {
  color: var(--muted);
}

.pub-links {
  margin-bottom: 7px;
}

.footer {
  margin-top: 30px;
  border-top: 1px solid var(--line);
  padding-top: 14px;
  color: var(--muted);
  font-size: 13px;
}

@media (max-width: 760px) {
  .site {
    padding: 16px;
  }

  .pub {
    grid-template-columns: 1fr;
  }

  .thumb {
    width: 100%;
    height: 130px;
  }
}
