 body {
   margin: 0;
   padding: 0 12px;
   background: #fff;
   font: normal 14px/1.428571429 -apple-system, Roboto, Helvetica, arial, sans-serif;
   -webkit-tap-highlight-color: transparent;
   -webkit-touch-callout: none;
   touch-action: manipulation;

   -webkit-text-size-adjust: 100%;
   text-rendering: optimizeLegibility;
   -webkit-font-smoothing: antialiased;
 }

 a {
   color: #3e3e3e;
   text-decoration: none;
   outline: none;
 }

 a:hover {
   color: #000;
 }

 .logo {
   display: block;
   width: 70%;
   margin: -6px auto;
 }

 form {
   will-change: transform;
 }

 .search {
   border: none;
   outline: none;
   resize: none;
   box-sizing: border-box;

   width: 100%;
   height: 40px;
   padding: 0 16px;
   font-size: 14px;
   line-height: 40px;
   color: #333;
   border-radius: 20px;
   background-color: #EAEAEA;
 }

 nav {
   box-pack: justify;
   display: flex;
   justify-content: space-between;
   background-color: #fff;
   padding: 12px 6px 0;
 }

 nav a {
   display: block;
   flex: 1;
 }

 nav div {
   width: 60%;
   height: 0;
   margin: 0 auto;
   padding: 30% 0;
   border-radius: 50%;

   box-sizing: border-box;
   display: flex;
   justify-content: center;
   align-items: center;

   background-repeat: no-repeat;
   background-position: center;
   background-size: contain;
   background-color: transparent;
 }

 nav b {
   display: block;
   font-size: 12px;
   white-space: nowrap;
   overflow: hidden;
   line-height: 24px;
   text-align: center;
   font-weight: normal;
   color: #666;
 }

 main a {
   display: flex;
   flex-direction: row;
   border-bottom: 1px #eee solid;
   padding: 12px 0;
 }

 main a:visited {
   color: #7EBCFE;
 }

 main a:last-child {
   border-bottom: 0;
 }

 main p {
   margin: 0;
   padding: 0;
   flex: 1;
   min-height: 160px;
   /* border-radius: 4px; */

   background-repeat: no-repeat;
   background-position: center;
   background-size: cover;
   background-color: transparent;

   box-shadow: 4px 4px 8px #999;
 }

 main aside {
   display: flex;
   flex-direction: column;
   justify-content: space-between;
   padding: 0 0 8px 8px;
   flex: 2;
 }

 main div {
   margin-top: -3px;
   line-height: 18px;
   overflow: hidden;
   word-break: normal;
   text-overflow: ellipsis;
   display: -webkit-box;
   -webkit-line-clamp: 3;
   -webkit-box-orient: vertical;
 }

 main summary {
   margin-bottom: -12px;
   display: flex;
   flex-direction: row;
   justify-content: space-between;
 }

 main summary b {
   font-weight: 500;
   font-size: 12px;
   color: #40b246;
 }

 main time {
   font-size: 11px;
   color: #a2a2a2;
 }


 @media screen and (max-width: 768px) {
   section {
     margin: 12px 0;
     width: auto;
   }

   main p {
     min-height: 80px;
   }
 }

 #loading {
   display: none;
   text-align: center;
   margin: 16px 0;
   padding: 16px;
   height: 0;
   background-image: url(../img/loading.gif);
   background-repeat: no-repeat;
   background-position: center;
   background-size: contain;
   background-color: transparent;
 }