/* css for a page with multiple city posts listed */

/* Entry titles are smaller here than the site-wide 2.1em h2. Scoped by the
   fact that this file only loads on pages with `customcss: "/city.css"`. */
.main-article header h2 {
    font-size: 1.35em;
    line-height: 1.2;
    font-weight: bold;
}

/* A city page is a short curated list, not a chronological feed: two or three
   hand-picked posts, each one a recommendation. So the footer carries a
   centred button rather than the quiet right-aligned arrow link used on the
   homepage, in Ящик and on stamp pages, where the link shares a bar with tags
   or stamps. Here the footer holds only the link, so there is nothing to
   balance and no need for a separator rule above it. */
.main-article footer {
    justify-content: center;
    border-top: none;
    padding-top: 0;
    margin-top: 2.25em;
}
.main-article footer > a {
    margin-left: 0;
    border-radius: 5px;
    padding: 15px 19px;
    border: 1px solid rgba(255, 153, 51, 0.4);
    background-color: rgba(255, 153, 51, 0.12);
    color: #FF9933;
    text-decoration: none;
    transition: background-color 0.23s ease-in, color 0.23s ease-in, border-color 0.23s ease-in;
}
.main-article footer > a::after {
    content: none;
}
.main-article footer > a:hover {
    background-color: rgba(255, 153, 51, 0.25);
    border-color: #FF9933;
    color: #ffbb66;
}
.main-article footer > a:active {
    box-shadow: 2px 2px 4px -1px rgba(0,0,0,0.6) inset;
    background-color: rgba(255, 153, 51, 0.35);
    top: 0;
}
