/* NoorVista public content fixes 3.0.260 */

/* The default brand PNG contains a white canvas. Multiply blending keeps the
   original logo colors while letting the header background show through. */
body:not([data-panel-role]) header.navbar .brand-logo,
body:not([data-panel-role]) header.navbar .brand-logo-image,
body:not([data-panel-role]) header.navbar a.brand,
body:not([data-panel-role]) .nav-inner a.brand {
  background: transparent !important;
  box-shadow: none !important;
}

body:not([data-panel-role]) header.navbar img[data-nv-brand-logo],
body:not([data-panel-role]) .nav-inner a.brand img[data-nv-brand-logo] {
  background: transparent !important;
  mix-blend-mode: multiply;
}

/* Panel-created articles use their own uploaded image. Do not apply the
   nth-child static-card illustrations to those cards. */
.nv-public-blog .nv-blog-card[data-dynamic-article="1"] .nv-blog-card-image {
  background-image: none !important;
  background-color: #eaf5f9;
}

.nv-public-blog .nv-blog-card[data-dynamic-article="1"] .nv-blog-card-image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.nv-public-blog .nv-blog-card-footer {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid #e2edf3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.nv-public-blog .nv-blog-read-time {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 5px 10px;
  border-radius: 999px;
  background: #eef8fb;
  color: #4d6f80;
  font-size: .78rem;
  font-weight: 800;
  white-space: nowrap;
}

.nv-public-blog .nv-blog-card-footer .nv-blog-more {
  margin-top: 0;
  min-height: 32px;
  text-decoration: none;
  white-space: nowrap;
}

@media (max-width: 520px) {
  .nv-public-blog .nv-blog-card-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .nv-public-blog .nv-blog-read-time,
  .nv-public-blog .nv-blog-card-footer .nv-blog-more {
    width: 100%;
    justify-content: center;
  }
}
