/* Safe standalone TemproMail nav for article pages */
.tm-article-nav-wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 22px 20px 18px;
}

.tm-article-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.tm-article-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #ffffff;
}

.tm-article-logo {
  width: 46px;
  height: 46px;
  border-radius: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 28% 20%, rgba(255,255,255,0.22), transparent 28%),
    linear-gradient(135deg, #31d3ee 0%, #3487ff 100%);
  color: #061322;
  font-weight: 950;
  font-size: 18px;
  box-shadow: 0 10px 30px rgba(49, 211, 238, 0.22);
}

.tm-article-brand-title {
  display: block;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.1;
  color: #ffffff;
}

.tm-article-brand-sub {
  display: block;
  margin-top: 3px;
  font-size: 13px;
  color: #9fc6f4;
}

.tm-article-menu {
  display: flex;
  align-items: center;
  gap: 18px;
}

.tm-article-menu a {
  color: #f4fbff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
}

.tm-article-menu a:hover {
  color: #7df9ff;
}

.tm-article-menu .tm-article-cta {
  padding: 11px 17px;
  border-radius: 999px;
  border: 1px solid rgba(49, 211, 238, 0.32);
  background: rgba(49, 211, 238, 0.11);
  color: #ffffff;
}

@media (max-width: 760px) {
  .tm-article-nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .tm-article-menu {
    flex-wrap: wrap;
    gap: 12px;
  }
}
