
body {
  margin: 0;
  padding: 0;
  background: #ffffff;
  color: #111111;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  line-height: 16px;
}

.brand-home {
  text-decoration: none;
  color: inherit;
}

.brand-home:hover .brand {
  cursor: pointer;
}


/* late-90s “fixed canvas” */
.wrap {
  width: 760px;
  margin: 0 auto;
  padding: 18px 12px 24px 12px;
}

.topline {
  border-top: 1px solid #cfcfcf;
  margin-top: 10px;
  padding-top: 12px;
}

.brand {
  font-family: "Times New Roman", Times, serif;
  font-size: 26px;
  letter-spacing: 2px;
  margin: 0;
  padding: 0;
  font-weight: normal;
}

.sub {
  color: #555555;
  font-size: 11px;
  letter-spacing: 1px;
  margin-top: 4px;
}

.nav {
  margin-top: 18px;
  font-size: 11px;
  letter-spacing: 1px;
}
.nav a {
  color: #111111;
  text-decoration: none;
  border-bottom: 1px solid #dddddd;
  padding-bottom: 1px;
}
.nav a:hover {
  border-bottom: 1px solid #111111;
}
.nav .sep { color: #bbbbbb; padding: 0 8px; }

.grid {
  margin-top: 18px;
}

.left {
  width: 250px;
  vertical-align: top;
  padding-right: 12px;
}

.right {
  width: 498px;
  vertical-align: top;
  padding-left: 12px;
  border-left: 1px solid #e6e6e6;
}

.section {
  margin-bottom: 18px;
}

.label {
  font-size: 10px;
  letter-spacing: 2px;
  color: #666666;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.rule {
  height: 1px;
  background: #e6e6e6;
  overflow: hidden;
  margin: 10px 0 10px 0;
}

/* big image block, like a gallery feature */
.feature {
  border: 1px solid #e6e6e6;
  padding: 8px;
  background: #ffffff;
}
.feature img {
  display: block;
  width: 100%;
  height: auto;
  border: 0;
}
.caption {
  font-size: 11px;
  color: #444444;
  margin-top: 8px;
}

.mono {
  font-family: "Courier New", Courier, monospace;
  font-size: 10px;
  color: #666666;
}

.foot {
  margin-top: 26px;
  padding-top: 10px;
  border-top: 1px solid #cfcfcf;
  color: #666666;
  font-size: 10px;
  letter-spacing: 1px;
}

/* tiny “list like a catalog” */
.list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.list li {
  padding: 5px 0;
  border-bottom: 1px dotted #e5e5e5;
}
.list b {
  font-weight: normal;
  letter-spacing: 1px;
}

/* ---------- Artist page profile headers ---------- */
.artist-name {
  font-family: "Times New Roman", Times, serif;
  font-size: 18px;
  letter-spacing: 1px;
  margin: 0 0 2px 0;
  color: #111111;
}

.artist-meta {
  font-size: 10px;
  color: #777777;
  margin-bottom: 10px;
}


@media (max-width: 820px) {

  .wrap {
    width: auto;
    max-width: 760px;
    margin: 0 auto;
    padding: 14px 12px 20px 12px;
  }

  /* make table behave like a flex layout on mobile */
  table.grid {
    width: 100%;
    border-collapse: collapse;
  }

  table.grid tbody,
  table.grid tr {
    display: flex;
    flex-direction: column;
  }

  /* make the cells full-width blocks */
  table.grid td {
    display: block;
    width: 100% !important;
  }

  /* flip order: RIGHT first, LEFT second */
  td.right { order: 1; }
  td.left  { order: 2; }

  /* remove desktop divider styling */
  .left { padding-right: 0; }
  .right {
     padding-left: 0;
    border-left: 0;
    border-top: 0;     /* ← kill the extra line */
    margin-top: 10px;
    padding-top: 0;
  }

  .nav { line-height: 18px; }

  input[type="text"] {
    width: 70%;
    max-width: 260px;
  }

  .topline {
    margin-top: 6px;
    padding-top: 6px;
  }

  .grid {
    margin-top: 8px;
  }

  /* Hide the column header row in the Catalog table (the one with CATALOG ID / TITLE / STATUS) */
  .section table tr:first-child {
    display: none;
  }
  /* Hide the STATUS column cells (3rd cell) in the Catalog rows */
  .section table tr td:nth-child(3) {
    display: none;
  }
}


