<style>
    :root {
      --sidebar: #2f3638;
      --sidebar-dark: #252b2d;
      --paper: #f7f7f4;
      --line: #ddddda;
      --text: #343434;
      --muted: #9a9a94;
      --accent: #df5a4f;
      --white: #ffffff;
    }

    * {
      box-sizing: border-box;
    }

    body {
      margin: 0;
      color: var(--text);
      background: #e7e7e2;
      font-family: "Roboto", Arial, sans-serif;
      font-size: 16px;
      line-height: 1.55;
    }

    a {
      color: #8F8037;
      text-decoration: none;
    }

    .page {
      min-height: 100vh;
      display: grid;
      grid-template-columns: 600px minmax(0, 1fr);
    }

    .sidebar {
      position: sticky;
      top: 0;
      height: 100vh;
      width: 600px;
      padding: 54px 42px 30px;
      color: var(--white);
      background:
        linear-gradient(rgba(31, 37, 39, 0.76), rgba(31, 37, 39, 0.92)),
        url("etusivu.jpg") center/cover;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .logo {
      margin: 0;
      font-family: "Roboto Condensed", sans-serif;
      font-size: 54px;
      line-height: 0.95;
      letter-spacing: 4px;
      font-weight: 700;
  border: 15px solid #848884;
  padding: 50px;
  margin: 20px;
      color: #909090;
    }

    .big-tagline {
      margin-top: 54px;
      font-family: "Roboto Slab", serif;
      font-size: 44px;
      line-height: 1.12;
      font-weight: 300;
      color: rgba(255,255,255,0.86);
    }

    .meta {
      margin-top: 46px;
      padding-top: 24px;
      border-top: 1px solid rgba(255,255,255,0.22);
    }

    .tagline {
      font-family: "Roboto Condensed", sans-serif;
      font-size: 18px;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .byline {
      margin-top: 7px;
      color: rgba(255,255,255,0.58);
      font-size: 14px;
    }

    .side-footer {
      display: flex;
      align-items: center;
      gap: 10px;
      flex-wrap: wrap;
    }

    .icon-link,
    .subscribe-link {
      min-height: 38px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0 13px;
      background: rgba(255,255,255,0.12);
      color: rgba(255,255,255,0.85);
      font-family: "Roboto Condensed", sans-serif;
      font-size: 13px;
      text-transform: uppercase;
      letter-spacing: 1px;
      transition: background .2s ease, transform .2s ease;
    }

    .icon-link:hover,
    .subscribe-link:hover {
      background: var(--accent);
      transform: translateY(-1px);
    }

    .content {
      background: var(--paper);
      min-width: 0;
    }

    .top-nav,
    .pagination {
      height: 74px;
      display: flex;
      align-items: center;
      padding: 0 42px;
      border-bottom: 1px solid var(--line);
      background: rgba(255,255,255,0.42);
      font-family: "Roboto Condensed", sans-serif;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .top-nav a,
    .pagination a {
      height: 74px;
      display: inline-flex;
      align-items: center;
      padding: 0 20px;
      color: #77776f;
      font-size: 14px;
      border-left: 1px solid transparent;
      border-right: 1px solid transparent;
    }

    .top-nav a:first-child,
    .pagination a:first-child {
      padding-left: 0;
    }

    .top-nav a:hover,
    .top-nav a.active,
    .pagination a:hover,
    .pagination a.active {
      color: var(--accent);
    }

    .articles {
      max-width: 900px;
    }

    .article {
      position: relative;
      display: grid;
      grid-template-columns: 200px minmax(0, 1fr);
      gap: 28px;
      padding: 30px 82px 30px 42px;
      border-bottom: 1px solid var(--line);
      background: var(--paper);
      transition: background .2s ease;
    }

    .article:hover {
      background: #fff;
    }

    .thumb-wrap {
      width: 200px;
      height: 150px;
      overflow: hidden;
      background: #ddd;
    }

    .thumb-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      filter: saturate(.92) contrast(1.02);
      transition: transform .35s ease;
    }

    .article:hover img {
      transform: scale(1.06);
    }

    .article h2 {
      margin: -3px 0 7px;
      font-family: "Roboto Slab", serif;
      font-size: 26px;
      line-height: 1.25;
      font-weight: 300;
      color: #313131;
    }

    .article p {
      margin: 0 0 13px;
      max-width: 600px;
      color: #77776f;
      font-size: 15px;
    }

    .details {
      display: flex;
      align-items: center;
      gap: 9px;
      flex-wrap: wrap;
      font-family: "Roboto Condensed", sans-serif;
      font-size: 12px;
      text-transform: uppercase;
      letter-spacing: .8px;
      color: var(--muted);
    }

    .tag {
      padding: 3px 8px;
      border: 1px solid #d4d4cf;
      color: #7c7c75;
      background: rgba(255,255,255,0.38);
    }

    .arrow {
      position: absolute;
      right: 35px;
      top: 50%;
      transform: translateY(-50%);
      color: #cacac4;
      font-family: Arial, sans-serif;
      font-size: 36px;
      transition: color .2s ease, right .2s ease;
    }

    .article:hover .arrow {
      right: 28px;
      color: var(--accent);
    }

    .pagination {
      border-bottom: 0;
      border-top: 1px solid var(--line);
    }

.sold-list {
  padding: 30px 82px 30px 42px;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.sold-list h2 {
  margin: 0 0 20px;
  font-family: "Roboto Slab", serif;
  font-size: 26px;
  font-weight: 300;
  color: #313131;
}

.sold-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid #e5e5e0;
  font-size: 15px;
  color: #77776f;
}

.sold-item:last-child {
  border-bottom: 0;
}

.sold-breed {
  min-width: 70px;
  font-family: "Roboto Condensed", sans-serif;
  text-transform: uppercase;
  color: var(--muted);
}

.sold-owner {
  margin-left: auto;
  color: var(--muted);
}

    .mobile-menu {
      display: none;
      margin-left: auto;
      font-weight: 700;
      color: var(--accent);
    }

    @media (max-width: 860px) {
      .page {
        grid-template-columns: 1fr;
      }

      .sidebar {
        position: relative;
        height: auto;
        padding: 36px 28px 26px;
      }

      .big-tagline {
        display: none;
      }

      .meta {
        margin-top: 26px;
      }

      .side-footer {
        margin-top: 28px;
      }

      .top-nav {
        padding: 0 28px;
      }

	.top-nav .links {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
  		}

  	.top-nav .links a {
    display: inline-flex !important;
  	}

  .mobile-menu {
    display: none;
  }

      .article {
        grid-template-columns: 108px minmax(0, 1fr);
        gap: 20px;
        padding: 24px 54px 24px 28px;
      }

      .thumb-wrap {
        width: 108px;
        height: 92px;
      }

      .article h2 {
        font-size: 22px;
      }
    }

    @media (max-width: 560px) {
      .logo {
        font-size: 44px;
      }

      .article {
        display: block;
        padding: 26px 28px;
      }

      .thumb-wrap {
        width: 100%;
        height: 190px;
        margin-bottom: 18px;
      }

      .arrow {
        display: none;
      }

      .pagination {
        padding: 0 28px;
      }
    }
  </style>