:root {
  --startclaims-navy: #0E263E;
  --startclaims-blue-teal: #416A7E;
  --startclaims-logo-background: #FEFEFE;
  --navy: var(--startclaims-navy);
  --navy-light: var(--startclaims-blue-teal);
  --ink: var(--startclaims-navy);
  --muted: var(--startclaims-blue-teal);
  --border: var(--startclaims-blue-teal);
  --bg: var(--startclaims-logo-background);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Avenir Next", Avenir, "Segoe UI", sans-serif;
  line-height: 1.6;
}

a {
  color: var(--navy-light);
}

a:hover {
  color: var(--navy);
}

/* Verso website frame */
.navbar {
  background: var(--startclaims-logo-background);
  border-bottom: 2px solid var(--border);
  padding: 1.25rem 6vw;
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 3rem;
  align-items: center;
}

header .logo {
  display: block;
  line-height: 0;
}

header .logo img {
  display: block;
  width: min(210px, 44vw);
  height: auto;
}

main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem 1.5rem 4rem;
}

.page-content {
  min-width: 0;
}

main h1 {
  font-size: 2.25em;
  color: var(--ink);
}

footer {
  background: var(--navy);
  color: var(--startclaims-logo-background);
  font-size: 0.9rem;
  padding: 4rem 6vw 2rem;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(4, auto);
  justify-content: start;
  gap: 2rem 5rem;
  margin-bottom: 3rem;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-col h4 {
  color: var(--startclaims-logo-background);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 0.5rem;
}

footer a {
  color: var(--startclaims-logo-background);
  text-decoration: none;
  transition: color 0.2s;
}

footer a:hover {
  color: var(--navy-light);
}

.footer-copy {
  border-top: 1px solid var(--navy-light);
  padding-top: 1.5rem;
  text-align: center;
  color: var(--startclaims-logo-background);
}

nav.top ol {
  display: flex;
  flex-wrap: wrap; /* Wrap to new lines on small screens */
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2rem;
  font-size: 0.95rem;
}

nav.top a {
  color: var(--muted);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.85rem;
}

nav.top a:hover {
  color: var(--navy);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  width: 100%;
}

.industry-menu {
  position: relative;
}

.industry-menu-label {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--muted);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.85rem;
}

.industry-menu-label span {
  color: var(--navy);
  font-size: 1.1rem;
  line-height: 1;
}

.industry-menu-options {
  display: none;
  position: absolute;
  z-index: 10;
  top: 100%;
  right: 0;
  min-width: 14rem;
  padding: 0.5rem;
  background: var(--startclaims-logo-background);
  border: 1px solid var(--border);
  box-shadow: 0 0.75rem 1.5rem rgba(14, 38, 62, 0.14);
}

.industry-menu-options::before {
  content: "";
  position: absolute;
  top: -0.75rem;
  left: 0;
  right: 0;
  height: 0.75rem;
}

.industry-menu:hover .industry-menu-options,
.industry-menu:focus-within .industry-menu-options {
  display: flex;
  flex-direction: column;
}

.industry-menu-options a {
  padding: 0.55rem 0.75rem;
  color: var(--navy);
  text-decoration: none;
  white-space: nowrap;
}

.industry-menu-options a:hover,
.industry-menu-options a:focus {
  background: var(--startclaims-blue-teal);
  color: var(--startclaims-logo-background);
}

@media (max-width: 600px) {
  .nav-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 1.25rem;
  }

  .nav-links {
    width: 100%;
    flex-wrap: wrap;
    gap: 1rem;
  }

  nav.top ol {
    gap: 0.65rem 1rem;
  }

  .industry-menu-options {
    left: 0;
    right: auto;
  }

  .footer-columns {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

.hl.lean.block {
  margin-top: 0;
  margin-bottom: 2.5rem;
}

.post-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.post-list > li {
  display: block;
  border: 1px solid var(--border);
  border-radius: .25rem;
  padding: 1.5rem;
  margin: 2rem 0;
}

.post-list > li .title {
  font-weight: bold;
  font-size: 120%;
}

.read-more { display: none; }

.post-list > li .read-more::after {
  content: " »";
}

.categories {
  display: none;
  margin: 0 0 1.5rem 0;
  padding: 0;
}

.categories:not(:empty) {
    display: block;
}

.categories::before {
    content: "Category: ";
}

.categories:has(li:nth-child(2))::before {
    content: "Categories: ";
}

.categories li {
    display: inline;
}

.categories li:not(:last-child)::after {
    content: ", ";
}

.authors {
  display: none;
}
.authors:not(:empty) {
  display: inline;
}

.authors::before {
    content: "By ";
}

.authors .author:not(:last-child)::after {
    content: ", ";
}

.authors .author:last-child::after {
    content: ". ";
}

.date {
  display: inline;
  color: var(--muted);
}

.date:not(:empty)::before {
  content: "Posted ";
}

nav.breadcrumbs {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 1rem;
}

nav.breadcrumbs ol {
  display: block;
  padding: 0;
  margin: 0;
}

nav.breadcrumbs ol li, nav.breadcrumbs ol li a {
  display: inline;
  padding: 0;
  position: inherit;
  text-wrap: nowrap;
}

nav.breadcrumbs ol li:not(:last-child)::after {
  content: " » ";
}

