
/* Ensure only the first letter of each block title is capitalized */
.pkp_block.block_information .title,
.pkp_block.block_browse .title,
.pkp_block.block_slider .title,
.pkp_block.block_custom .title {
    text-transform: capitalize !important;
}

/* Ensure navigation menu items have only the first letter of each word capitalized */
nav li a {
    text-transform: capitalize !important;
}

/* Ensure navbar menu items also have the first letter of each word capitalized */
.navbar-nav li a {
    text-transform: capitalize !important;
}


/* === Insight Metrics Block Style === */
.insight-metrics {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
  border-top: 1px solid #ccc;
  padding-top: 20px;
  margin-top: 30px;
  font-family: sans-serif;
  font-size: 14px;
}

.insight-metrics .metric-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-left: 1px solid #333;
  padding-left: 20px;
  min-width: 150px;
}

.insight-metrics .metric-item a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #0077cc;
}

.insight-metrics .metric-item a div {
  width: 20px;
  height: 20px;
  background-color: #0077cc;
  color: #fff;
  text-align: center;
  line-height: 20px;
  border-radius: 2px;
  margin-right: 6px;
}
