/* =========================================================
   ELIMAR - Cassiopeia user.css
   Clean Layout + Header + Search + Articles + Footer
========================================================= */

:root {
  --el-header-blue: #6699ff;
  --el-dark-blue: #1e3a5f;
  --el-link: #2f6fa5;
  --el-bg: #f4f8fb;
  --el-text: #1c1c1c;
  --el-text-light: #ffffff;
  --el-text-light-soft: #e6f0ff;
  --el-text-light-hover: #cfe2ff;
  --el-border-soft: #e4edf7;
  --el-border-soft-2: #e6edf5;
  --el-panel-soft: #eef6ff;
  --el-panel-soft-2: #f7fbff;
}

/* =========================================================
   GLOBAL
========================================================= */

body {
  background: var(--el-bg);
  font-family: "Segoe UI", Roboto, Arial, sans-serif;
  line-height: 1.65;
  color: var(--el-text);
}

a {
  color: var(--el-link);
}

a:hover {
  text-decoration: none;
}

/* =========================================================
   HEADER
========================================================= */

.container-header,
.header.container-header {
  position: relative;
  padding-top: 14px;
  background: var(--el-header-blue) !important;
  color: var(--el-text-light);
}

.container-header .navbar-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.container-header .brand-logo img {
  width: auto !important;
  max-height: 70px;
  height: auto !important;
  object-fit: contain;
}

.container-header .site-description {
  font-size: 0.9rem;
  color: var(--el-text-light-soft);
}

.container-header .site-description::before {
  content: "Elimar Pigeon Services";
  display: block;
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1.1;
  color: var(--el-text-light);
}

.container-header .grid-child:first-of-type {
  padding-right: 80px;
}

.container-nav {
  margin-top: 8px;
  padding-top: 6px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

/* =========================================================
   HEADER SEARCH
========================================================= */

.container-topbar {
  position: absolute;
  top: 18px;
  right: 20px;
  z-index: 20;
  margin: 0;
  padding: 0;
}

#mod-custom217,
#mod-custom217 .mod-custom,
#mod-custom217 .header-search {
  margin: 0;
}

.header-search {
  position: relative;
  display: flex;
  align-items: center;
}

.search-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  cursor: pointer;
}

.search-toggle::before {
  content: "";
  width: 18px;
  height: 18px;
  background: center / 18px no-repeat
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cg fill='none' stroke='%23ffffff' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='7'/%3E%3Cpath d='M21 21l-4.35-4.35'/%3E%3C/g%3E%3C/svg%3E");
}

.header-search-form {
  position: absolute;
  top: 50%;
  right: 48px;
  width: 0;
  overflow: hidden;
  transform: translateY(-50%);
  transition: width 0.25s ease;
}

.header-search-form input {
  width: 260px;
  padding: 9px 14px;
  border: none;
  border-radius: 20px;
}

.header-search.active .header-search-form {
  width: 260px;
}

/* =========================================================
   MENU
========================================================= */

.container-nav ul.maximenuck > li > a {
  padding: 8px 12px;
  border-radius: 6px;
  color: var(--el-text-light);
  transition: background 0.25s;
}

.container-nav ul.maximenuck > li > a:hover {
  background: rgba(255, 255, 255, 0.15);
}

/* =========================================================
   SIDEBAR ADS
========================================================= */

.side-ads .mod-banners.bannergroup {
  display: grid;
  gap: 14px;
  justify-items: center;
}

.side-ads img {
  width: 130px;
  height: 130px;
  padding: 8px;
  border-radius: 10px;
  background: #fff;
  object-fit: contain;
}

/* =========================================================
   ARTICLE WRAPPER
========================================================= */

.com-content-article,
.item-page {
  position: relative;
  max-width: 1100px;
  margin: 0 auto 30px;
  padding: 36px 36px 36px 34px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.04);
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--el-text);
}

.com-content-article::before,
.item-page::before {
  content: "";
  position: absolute;
  top: 10px;
  bottom: 10px;
  left: 12px;
  width: 3px;
  border-radius: 2px;
  background: var(--el-border-soft);
}

/* =========================================================
   ARTICLE TYPOGRAPHY
========================================================= */

.com-content-article h1,
.item-page h1 {
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 3px solid var(--el-border-soft);
  color: var(--el-link);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
}

.com-content-article h2,
.item-page h2 {
  margin-top: 40px;
  margin-bottom: 14px;
  font-size: 1.55rem;
  line-height: 1.3;
}

.com-content-article h3,
.item-page h3 {
  margin-top: 30px;
  margin-bottom: 12px;
  font-size: 1.3rem;
}

.com-content-article h2 + p,
.com-content-article h3 + p,
.item-page h2 + p,
.item-page h3 + p {
  margin-top: 4px;
}

.com-content-article p,
.item-page p {
  margin-bottom: 18px;
}

.com-content-article p:first-of-type,
.item-page p:first-of-type {
  font-size: 1.15rem;
  line-height: 1.8;
  color: #222;
}

.com-content-article p:first-of-type::first-letter,
.item-page p:first-of-type::first-letter {
  float: left;
  padding-top: 4px;
  padding-right: 8px;
  color: var(--el-link);
  font-family: "Merriweather", serif;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1;
}

.com-content-article a,
.item-page a {
  color: var(--el-link);
  text-decoration: underline;
}

.com-content-article a:hover,
.item-page a:hover {
  text-decoration: none;
}

.com-content-article ul,
.com-content-article ol,
.item-page ul,
.item-page ol {
  margin-bottom: 20px;
  padding-left: 22px;
}

.com-content-article li,
.item-page li {
  margin-bottom: 8px;
}

.com-content-article blockquote,
.item-page blockquote {
  margin: 22px 0;
  padding-left: 16px;
  border-left: 4px solid var(--el-header-blue);
  color: #444;
  font-style: italic;
}

.article-info {
  margin-bottom: 18px;
  font-size: 0.85rem;
  color: #777;
}

/* =========================================================
   ARTICLE IMAGES
========================================================= */

.com-content-article figure,
.item-page figure {
  margin: 18px 0;
}

.com-content-article img,
.item-page img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 16px auto 12px;
  padding: 4px;
  border: 1px solid var(--el-border-soft-2);
  border-radius: 6px;
  background: #fff;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.com-content-article img:hover,
.item-page img:hover {
  transform: scale(1.01);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
}

.com-content-article figcaption,
.item-page figcaption {
  margin-top: 6px;
  color: #666;
  font-size: 0.85rem;
  line-height: 1.4;
  text-align: center;
}

/* =========================================================
   HERO / PROMO CARDS
========================================================= */

.elimar-auctions-card,
.elimar-archive-card {
  overflow: hidden;
  border: 1px solid var(--el-dark-blue) !important;
  border-radius: 10px;
  background: var(--el-dark-blue) !important;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05) !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.elimar-auctions-card:hover,
.elimar-archive-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08) !important;
}

.elimar-auctions-card .mod-custom,
.elimar-auctions-card > .card-body,
.elimar-archive-card .mod-custom,
.elimar-archive-card > .card-body {
  padding: 20px 22px;
  background: var(--el-dark-blue) !important;
  color: var(--el-text-light) !important;
}

.elimar-auctions-card article,
.elimar-archive-card article {
  margin: 0;
  background: transparent !important;
  box-shadow: none !important;
}

.elimar-auctions-card h1,
.elimar-auctions-card h2,
.elimar-auctions-card h3,
.elimar-auctions-card h4,
.elimar-auctions-card p,
.elimar-auctions-card li,
.elimar-auctions-card span,
.elimar-auctions-card div,
.elimar-archive-card h1,
.elimar-archive-card h2,
.elimar-archive-card h3,
.elimar-archive-card h4,
.elimar-archive-card p,
.elimar-archive-card li,
.elimar-archive-card span,
.elimar-archive-card div {
  color: var(--el-text-light) !important;
}

.elimar-auctions-card h1,
.elimar-auctions-card h2,
.elimar-archive-card h1,
.elimar-archive-card h2 {
  margin: 8px 0;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.elimar-auctions-card p,
.elimar-archive-card p {
  margin: 0 0 10px;
  line-height: 1.45;
}

.elimar-auctions-card ul,
.elimar-archive-card ul {
  margin: 8px 0 12px 18px;
  padding: 0;
}

.elimar-auctions-card li,
.elimar-archive-card li {
  margin-bottom: 3px;
  line-height: 1.4;
}

.elimar-auctions-card .elimar-icon,
.elimar-archive-card .elimar-icon {
  margin-bottom: 4px;
  font-size: 1.5rem;
  line-height: 1;
  opacity: 0.9;
}

/* =========================================================
   HERO BUTTONS
========================================================= */

.elimar-auctions-card a.elimar-button,
.elimar-archive-card a.elimar-button,
.elimar-search-card__button {
  display: inline-block;
  border-radius: 6px;
  background: var(--el-header-blue);
  color: #fff !important;
  font-weight: 600;
  text-decoration: none !important;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.elimar-auctions-card a.elimar-button,
.elimar-archive-card a.elimar-button {
  min-width: 220px;
  margin-top: 6px;
  padding: 8px 16px;
  font-size: 0.95rem;
  text-align: center;
}

.elimar-search-card__button {
  align-self: flex-start;
  margin-top: auto;
  padding: 9px 16px;
}

.elimar-auctions-card a.elimar-button:hover,
.elimar-archive-card a.elimar-button:hover,
.elimar-search-card__button:hover {
  background: #4d84f2;
  color: #fff !important;
  transform: translateY(-1px);
}

.elimar-auctions-card a.elimar-button:hover,
.elimar-archive-card a.elimar-button:hover {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.elimar-auctions-card a.elimar-button.secondary,
.elimar-archive-card a.elimar-button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: transparent;
}

.elimar-auctions-card a.elimar-button.secondary:hover,
.elimar-archive-card a.elimar-button.secondary:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* =========================================================
   RELATED ARTICLES
========================================================= */

.related-items {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid var(--el-border-soft-2);
}

.related-items h3 {
  margin-bottom: 16px;
  color: var(--el-link);
  font-size: 1.35rem;
}

.related-items ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.related-items li {
  margin-bottom: 10px;
}

.related-items a {
  display: block;
  padding: 12px 14px;
  border: 1px solid var(--el-border-soft);
  border-radius: 8px;
  background: var(--el-panel-soft-2);
  color: var(--el-link);
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}

.related-items a:hover {
  background: var(--el-panel-soft);
  transform: translateX(3px);
}

/* =========================================================
   CONTINUE READING BAR
========================================================= */

.continue-reading {
  margin: 40px 0 25px;
  padding: 14px 18px;
  border: 1px solid #dbe8f6;
  border-radius: 8px;
  background: var(--el-panel-soft);
  color: var(--el-link);
  font-weight: 600;
  text-align: center;
}

.continue-reading span {
  margin-right: 8px;
  color: var(--el-dark-blue);
}

/* =========================================================
   ELIMAR SMART SEARCH
========================================================= */

.com-finder__results,
.finder-results {
  margin-top: 24px;
}

.finder-results h3 {
  margin-bottom: 6px;
}

.elimar-search-header {
  margin-bottom: 28px;
  padding-bottom: 12px;
  border-bottom: 1px solid #e4edf7;
}

.elimar-search-title {
  margin-bottom: 4px;
  color: var(--el-dark-blue);
  font-size: 1.6rem;
}

.elimar-search-title em {
  color: var(--el-link);
  font-style: normal;
  font-weight: 700;
}

.elimar-search-count {
  color: #6b7785;
  font-size: 0.9rem;
}

.finder-highlight {
  padding: 1px 3px;
  border-radius: 3px;
  background: #e8f2ff;
  color: var(--el-dark-blue);
}

.elimar-search-card {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 20px;
  margin-bottom: 22px;
  padding: 18px;
  border: 1px solid #e4edf7;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.elimar-search-card:hover {
  transform: translateY(-2px);
  border-color: #cfe0f3;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}

.elimar-search-card__image img {
  display: block;
  width: 100%;
  height: 150px;
  border-radius: 8px;
  object-fit: cover;
}

.elimar-search-card__content {
  display: flex;
  flex-direction: column;
}

.elimar-search-card__title {
  margin: 0 0 8px;
  font-size: 1.3rem;
  line-height: 1.3;
}

.elimar-search-card__title a {
  color: var(--el-link);
  text-decoration: none;
}

.elimar-search-card__title a:hover {
  color: var(--el-dark-blue);
  text-decoration: underline;
}

.elimar-search-card__meta {
  margin-bottom: 10px;
  color: #6b7785;
  font-size: 0.85rem;
}

.elimar-search-card__sep {
  margin: 0 6px;
}

.elimar-search-card__snippet {
  margin-bottom: 14px;
  color: #2b2f33;
  line-height: 1.7;
}

/* =========================================================
   LATEST NEWS SOURCE
========================================================= */

.latestnews-source {
  margin-top: 2px;
  margin-bottom: 6px;
  color: #777;
  font-size: 12px;
}

.latestnews-source a {
  color: #777;
  text-decoration: none;
}

.latestnews-source a:hover {
  text-decoration: underline;
}

/* =========================================================
   DESKTOP LAYOUT BALANCE
========================================================= */

@media (min-width: 992px) {
  body.wrapper-fluid .site-grid {
    display: grid !important;
    grid-template-columns: 188px minmax(0, 1fr) !important;
    gap: 0 16px !important;
    align-items: start !important;
  }

  .grid-child.container-sidebar-left {
    display: block !important;
    grid-column: 1 !important;
    width: 188px !important;
    min-width: 188px !important;
    max-width: 188px !important;
    margin: 0 !important;
  }

  .grid-child.container-component {
    display: block !important;
    grid-column: 2 !important;
    min-width: 0 !important;
    margin: 0 !important;
    padding-right: 10px !important;
    box-sizing: border-box;
  }

  .com-content-article,
  .item-page {
    margin: 0 auto 30px 0 !important;
    padding: 36px 36px 36px 24px;
  }

  .com-content-article::before,
  .item-page::before {
    left: 8px;
  }
}

/* =========================================================
   HOMEPAGE TWO COLUMN WRAPPER
========================================================= */

.elimar-two-col-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: start;
}

.elimar-two-col-col {
  display: contents;
}

.elimar-two-col-row .moduletable {
  min-width: 0;
  margin: 0 !important;
}

.elimar-two-col-row > .elimar-two-col-col:first-child > .elimar-auctions-card {
  grid-column: 1;
  grid-row: 1;
}

.elimar-two-col-row > .elimar-two-col-col:first-child > .elimar-home-left {
  grid-column: 1;
  grid-row: 2;
}

.elimar-two-col-row > .elimar-two-col-col:last-child > .elimar-archive-card {
  grid-column: 2;
  grid-row: 1;
}

.elimar-two-col-row > .elimar-two-col-col:last-child > .elimar-home-right {
  grid-column: 2;
  grid-row: 2;
}

.elimar-two-col-row > .elimar-two-col-col:first-child > .elimar-auctions-card,
.elimar-two-col-row > .elimar-two-col-col:last-child > .elimar-archive-card,
.elimar-two-col-row > .elimar-two-col-col:first-child > .elimar-auctions-card > .mod-custom,
.elimar-two-col-row > .elimar-two-col-col:last-child > .elimar-archive-card > .mod-custom,
.elimar-two-col-row > .elimar-two-col-col:first-child > .elimar-auctions-card > .card-body,
.elimar-two-col-row > .elimar-two-col-col:last-child > .elimar-archive-card > .card-body,
.elimar-two-col-row > .elimar-two-col-col:first-child > .elimar-auctions-card article,
.elimar-two-col-row > .elimar-two-col-col:last-child > .elimar-archive-card article {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.elimar-two-col-row .elimar-auctions-card a.elimar-button,
.elimar-two-col-row .elimar-archive-card a.elimar-button {
  margin-top: auto;
}

/* =========================================================
   FOOTER
========================================================= */

.container-footer {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin-top: 48px;
  padding: 28px 20px 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  background: var(--el-header-blue);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  color: var(--el-text-light);
  text-align: center;
  font-size: 0.95rem;
}

.container-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(92%, 1200px);
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0),
    rgba(255, 255, 255, 0.18),
    rgba(255, 255, 255, 0)
  );
}

.container-footer > .grid-child {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
}

footer.container-footer .elimar-footer-links {
  display: flex !important;
  flex-direction: row !important;
  justify-content: center !important;
  align-items: center !important;
  flex-wrap: wrap !important;
  gap: 0 !important;
  margin: 0 0 10px 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

footer.container-footer .elimar-footer-links > li,
footer.container-footer .elimar-footer-links > li.nav-item {
  display: inline-flex !important;
  width: auto !important;
  float: none !important;
  align-items: center !important;
  margin: 0 !important;
  padding: 0 !important;
}

footer.container-footer .elimar-footer-links > li + li::before {
  content: "|";
  display: inline-block;
  margin: 0 12px;
  color: rgba(255, 255, 255, 0.45);
}

footer.container-footer .elimar-footer-links > li > a,
footer.container-footer .elimar-footer-links > li.nav-item > a {
  display: inline-block !important;
  width: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  color: rgba(255, 255, 255, 0.88) !important;
  font-size: 0.95rem;
  text-decoration: none !important;
  white-space: nowrap !important;
  transition: color 0.2s ease, opacity 0.2s ease;
}

footer.container-footer .elimar-footer-links > li > a:hover,
footer.container-footer .elimar-footer-links > li > a:focus {
  color: #ffffff !important;
  text-decoration: underline !important;
}

footer.container-footer #mod-custom234,
.elimar-footer-copy {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  text-align: center;
}

/* =========================================================
   LARGE SCREEN TYPOGRAPHY
========================================================= */

@media (min-width: 1400px) {
  .com-content-article,
  .item-page {
    max-width: 980px;
    font-size: 1.08rem;
  }

  .com-content-article p,
  .item-page p {
    line-height: 1.8;
  }

  .com-content-article h1,
  .item-page h1 {
    font-size: 2.2rem;
  }

  .com-content-article h2,
  .item-page h2 {
    font-size: 1.65rem;
  }
}

/* =========================================================
   MOBILE / TABLET
========================================================= */

@media (max-width: 991px) {
  .elimar-two-col-row {
    grid-template-columns: 1fr;
  }

  .elimar-two-col-col {
    display: block;
  }

  .elimar-two-col-row > .elimar-two-col-col:first-child > .elimar-auctions-card,
  .elimar-two-col-row > .elimar-two-col-col:first-child > .elimar-home-left,
  .elimar-two-col-row > .elimar-two-col-col:last-child > .elimar-archive-card,
  .elimar-two-col-row > .elimar-two-col-col:last-child > .elimar-home-right {
    grid-column: auto;
    grid-row: auto;
  }

  .elimar-two-col-col > .moduletable + .moduletable {
    margin-top: 24px !important;
  }
}

@media (max-width: 768px) {
  .container-header .brand-logo img {
    max-height: 48px;
  }

  .container-header .site-description::before {
    font-size: 1.2rem;
  }

  .header-search-form input,
  .header-search.active .header-search-form {
    width: 200px;
  }

  .com-content-article,
  .item-page {
    padding: 22px;
  }

  .com-content-article::before,
  .item-page::before {
    left: 8px;
  }

  .elimar-search-card {
    grid-template-columns: 1fr;
  }

  .elimar-search-card__image img {
    height: 190px;
  }
}

@media (max-width: 640px) {
  .container-footer {
    padding: 24px 16px 20px;
  }

  footer.container-footer .elimar-footer-links > li + li::before {
    margin: 0 8px;
  }

  footer.container-footer .elimar-footer-links > li > a,
  footer.container-footer .elimar-footer-links > li.nav-item > a {
    font-size: 0.92rem;
  }
}

/* Elimar Legal Pages */

.elimar-terms{
max-width:1200px;
margin:auto;
display:grid;
grid-template-columns:820px 320px;
gap:40px;
line-height:1.7;
}

.elimar-terms main{
max-width:820px;
}

.elimar-terms h1{
font-size:34px;
border-bottom:3px solid #ddd;
padding-bottom:10px;
margin-bottom:15px;
}

.elimar-terms h2{
font-size:22px;
margin-top:40px;
border-bottom:1px solid #e3e3e3;
padding-bottom:6px;
}

.elimar-terms section{
background:#fff;
border:1px solid #e5e7eb;
border-radius:10px;
padding:22px;
margin-bottom:18px;
}

.elimar-terms ul,
.elimar-terms ol{
margin:15px 0 20px 22px;
}

.elimar-terms li{
margin-bottom:6px;
}

.elimar-terms a{
text-decoration:none;
}

.elimar-terms a:hover{
text-decoration:underline;
}

.toc{
background:#f7f7f7;
border:1px solid #ddd;
padding:20px;
border-radius:10px;
position:sticky;
top:20px;
}

.toc h2{
margin-top:0;
border:none;
}

.backtotop{
font-size:14px;
margin-top:10px;
}

address{
background:#fafafa;
border:1px solid #eee;
padding:15px;
border-radius:8px;
font-style:normal;
}

/* Mobile */

@media (max-width:1000px){

.elimar-terms{
grid-template-columns:1fr;
}

.toc{
position:relative;
}

}

/* Legal documents list - titles only */
.view-category.layout-cassiopeiastandard table.category {
    width: 100%;
    border-collapse: collapse;
    border: 0;
}

.view-category.layout-cassiopeiastandard table.category thead {
    display: none;
}

.view-category.layout-cassiopeiastandard table.category tr {
    border-bottom: 1px solid #d9d9d9;
}

.view-category.layout-cassiopeiastandard table.category th,
.view-category.layout-cassiopeiastandard table.category td {
    padding: 0;
    border: 0;
    background: transparent;
}

/* Show only the title column */
.view-category.layout-cassiopeiastandard table.category td.list-author,
.view-category.layout-cassiopeiastandard table.category td.list-hits,
.view-category.layout-cassiopeiastandard table.category td.list-date,
.view-category.layout-cassiopeiastandard table.category td.list-category,
.view-category.layout-cassiopeiastandard table.category td.list-tags {
    display: none;
}

/* Title styling */
.view-category.layout-cassiopeiastandard table.category th.list-title {
    display: table-cell;
    width: 100%;
}

.view-category.layout-cassiopeiastandard table.category th.list-title a {
    display: block;
    padding: 0.95rem 0;
    font-size: 1.05rem;
    font-weight: 500;
    line-height: 1.45;
    text-decoration: none;
    color: #1f1f1f;
}

/* Hover/focus */
.view-category.layout-cassiopeiastandard table.category th.list-title a:hover,
.view-category.layout-cassiopeiastandard table.category th.list-title a:focus {
    color: #003a8f;
    text-decoration: none;
}

/* Optional page width */
.view-category.layout-cassiopeiastandard .com-content-category__items,
.view-category.layout-cassiopeiastandard .category-items {
    max-width: 860px;
    margin: 0 auto;
}

