@import url("https://fonts.googleapis.com/css2?family=Cinzel:wght@600;700;800&family=Montserrat:wght@400;500;600;700;800&display=swap");

:root {
  --green: #075d7a;
  --green-dark: #08243a;
  --gold: #91dfe5;
  --paper: #fffefe;
  --line: #cfe9eb;
  --muted: #426572;
}

* {
  box-sizing: border-box;
}

body {
  background:
    radial-gradient(circle at top right, rgba(145, 223, 229, 0.28), transparent 32rem),
    linear-gradient(135deg, #f7ffff, #eefafa);
  color: var(--green-dark);
  font-family: "Montserrat", Arial, sans-serif;
  line-height: 1.55;
  margin: 0;
}

.seo-breadcrumbs {
  margin: 0 0 18px;
  font-size: 0.88rem;
}

.seo-breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.seo-breadcrumbs li:not(:last-child)::after {
  content: "/";
  margin-left: 8px;
  color: #8c8172;
}

.seo-breadcrumbs a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.seo-breadcrumbs span {
  color: #6f665c;
}

.seo-intro p {
  max-width: 850px;
  line-height: 1.75;
}

.seo-benefit-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 24px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.seo-benefit-list li {
  position: relative;
  padding: 14px 16px 14px 42px;
  border: 1px solid rgba(18, 105, 126, 0.16);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.66);
  line-height: 1.55;
}

.seo-benefit-list li::before {
  content: "✓";
  position: absolute;
  top: 13px;
  left: 16px;
  color: #0d748a;
  font-weight: 800;
}

.seo-faq-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.seo-faq details {
  border: 1px solid rgba(18, 105, 126, 0.16);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.72);
  overflow: hidden;
}

.seo-faq summary {
  padding: 17px 20px;
  cursor: pointer;
  color: #075b70;
  font-weight: 750;
}

.seo-faq details p {
  margin: 0;
  padding: 0 20px 18px;
  line-height: 1.65;
}

@media (max-width: 700px) {
  .seo-benefit-list {
    grid-template-columns: 1fr;
  }
}

a {
  color: inherit;
}

.seo-shell {
  display: grid;
  grid-template-columns: 270px minmax(0, 1fr);
  min-height: 100vh;
}

.seo-sidebar {
  background: linear-gradient(180deg, #f6f8f7 0%, #eef2f0 100%);
  border-right: 1px solid rgba(7, 93, 122, 0.1);
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 100vh;
  padding: 26px 16px;
  position: sticky;
  top: 0;
}

.seo-sidebar-brand {
  align-items: center;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--line);
  border-radius: 16px;
  display: flex;
  gap: 12px;
  padding: 12px;
  text-decoration: none;
}

.seo-sidebar-brand img {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  height: 54px;
  object-fit: contain;
  padding: 6px;
  width: 54px;
}

.seo-sidebar-brand strong,
.seo-sidebar-brand small {
  display: block;
}

.seo-sidebar-brand strong {
  color: var(--green);
  font-family: "Cinzel", Georgia, serif;
  font-size: 1.08rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.seo-sidebar-brand small {
  color: var(--muted);
  font-size: 0.82rem;
}

.seo-sidebar-nav {
  display: grid;
  gap: 10px;
}

.seo-sidebar-nav a,
.seo-sidebar-actions a {
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--green);
  font-weight: 800;
  padding: 11px 14px;
  text-decoration: none;
}

.seo-sidebar-nav a.active,
.seo-sidebar-primary {
  background: var(--green) !important;
  color: #fff !important;
}

.seo-sidebar-actions {
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid var(--line);
  border-radius: 14px;
  display: grid;
  gap: 8px;
  grid-template-columns: 1fr 1fr;
  margin-top: 8px;
  padding: 6px;
}

.seo-sidebar-actions a {
  text-align: center;
}

.seo-sidebar-user {
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid var(--line);
  border-radius: 14px;
  display: grid;
  gap: 8px;
  margin-top: 8px;
  padding: 14px;
}

.seo-sidebar-user span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.seo-sidebar-user strong {
  color: var(--green-dark);
  font-size: 1rem;
  line-height: 1.25;
}

.seo-sidebar-user a {
  border-radius: 999px;
  font-weight: 800;
  margin-top: 4px;
  padding: 10px 14px;
  text-align: center;
  text-decoration: none;
}

.seo-page {
  margin: 0 auto;
  max-width: 1120px;
  padding: 28px;
  width: 100%;
}

.seo-nav {
  align-items: center;
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-bottom: 22px;
}

.seo-nav a,
.seo-button {
  background: rgba(255, 253, 248, 0.86);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 800;
  padding: 10px 16px;
  text-decoration: none;
}

.seo-hero,
.seo-detail,
.seo-section {
  background: rgba(255, 253, 248, 0.86);
  border: 1px solid rgba(228, 215, 189, 0.86);
  border-radius: 18px;
  box-shadow: 0 18px 48px rgba(20, 40, 32, 0.08);
}

.seo-hero {
  margin-bottom: 24px;
  padding: 34px;
}

.seo-hero p,
.seo-detail p {
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  margin: 0 0 8px;
  text-transform: uppercase;
}

.seo-hero h1,
.seo-detail h1 {
  color: var(--green);
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(2rem, 4vw, 4rem);
  letter-spacing: 0.035em;
  line-height: 1.05;
  margin: 0 0 12px;
  text-transform: uppercase;
}

.seo-hero h1::after,
.seo-detail h1::after,
.seo-section h2::after {
  background: var(--gold);
  border-radius: 999px;
  content: "";
  display: block;
  height: 4px;
  margin-top: 16px;
  width: 110px;
}

.seo-hero span,
.seo-detail span,
.seo-card span {
  color: var(--muted);
}

.seo-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fill, minmax(240px, 300px));
  justify-content: start;
}

.seo-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  max-width: 300px;
}

.seo-card a {
  display: grid;
  gap: 10px;
  padding: 10px 10px 16px;
  text-decoration: none;
}

.seo-card img,
.seo-detail-image {
  background: #f6efe1;
  border-radius: 12px;
  object-fit: cover;
  width: 100%;
}

.seo-card img {
  aspect-ratio: 16 / 10;
  height: 180px;
  object-fit: contain;
  padding: 10px;
}

.seo-card strong {
  font-size: 1.15rem;
  line-height: 1.25;
}

.seo-card small {
  color: var(--muted);
  font-weight: 800;
}

.seo-card em {
  background: rgba(145, 223, 229, 0.3);
  border-radius: 999px;
  color: var(--green-dark);
  font-style: normal;
  font-weight: 900;
  justify-self: start;
  padding: 6px 10px;
}

.seo-card span {
  display: -webkit-box;
  font-size: 0.95rem;
  line-height: 1.45;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.seo-detail {
  display: grid;
  gap: 34px;
  grid-template-columns: minmax(260px, 420px) 1fr;
  margin-bottom: 24px;
  padding: 24px;
}

.seo-detail-image {
  aspect-ratio: 4 / 5;
}

.seo-detail strong {
  color: var(--green);
  display: block;
  font-size: 1.8rem;
  margin: 22px 0;
}

.seo-button {
  background: var(--green);
  color: #fff;
  display: inline-flex;
}

.seo-section {
  margin-bottom: 24px;
  padding: 26px;
}

.seo-section h2 {
  color: var(--green);
  font-family: "Cinzel", Georgia, serif;
  letter-spacing: 0.03em;
  margin-top: 0;
  text-transform: uppercase;
}

.seo-section h2::after {
  height: 3px;
  margin-top: 12px;
  width: 86px;
}

.seo-section li {
  margin-bottom: 8px;
}

.seo-rich-content {
  color: var(--green-dark);
  font-size: 1.02rem;
}

.seo-rich-content p {
  margin: 0 0 14px;
}

.seo-rich-content ul,
.seo-rich-content ol {
  margin: 0;
  padding-left: 22px;
}

.seo-rich-content strong,
.seo-rich-content b {
  color: var(--green);
}

@media (max-width: 760px) {
  .seo-shell {
    display: block;
  }

  .seo-sidebar {
    border-right: 0;
    min-height: 0;
    padding: 14px;
    position: static;
  }

  .seo-sidebar-nav {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .seo-sidebar-nav a,
  .seo-sidebar-actions a {
    padding: 10px 8px;
    text-align: center;
  }

  .seo-page {
    padding: 16px;
  }

  .seo-nav {
    justify-content: flex-start;
    overflow-x: auto;
  }

  .seo-detail {
    grid-template-columns: 1fr;
  }
}

/* Identificação compacta do usuário no topo público. */
.seo-sidebar-user {
  align-items: center;
  gap: 10px;
  min-width: 0;
  white-space: nowrap;
}

.seo-sidebar-user > span {
  display: none;
}

.seo-sidebar-user > strong {
  color: var(--green-dark);
  display: block;
  font-size: 0.82rem;
  line-height: 1.2;
  max-width: 145px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.seo-sidebar-user > a {
  align-items: center;
  display: inline-flex;
  flex: 0 0 auto;
  font-size: 0.78rem;
  justify-content: center;
  margin: 0;
  min-height: 36px;
  padding: 9px 12px;
  white-space: nowrap;
}

@media (max-width: 1160px) and (min-width: 761px) {
  .seo-sidebar-user > strong {
    max-width: 120px;
  }
}

@media (max-width: 760px) {
  .seo-sidebar-user > strong {
    display: none;
  }
}

/* Compact product page: more balanced image, title and spacing. */
.seo-detail {
  align-items: center;
  gap: clamp(22px, 3vw, 34px);
  grid-template-columns: minmax(240px, 360px) minmax(0, 1fr);
  margin-bottom: 22px;
  padding: clamp(18px, 2.4vw, 24px);
}

.seo-detail-image {
  aspect-ratio: 4 / 4.6;
  max-height: 430px;
  object-fit: cover;
}

.seo-detail h1 {
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  letter-spacing: 0.015em;
  line-height: 1.08;
  margin-bottom: 10px;
}

.seo-sidebar-nav a[href*="view=platformTour"] {
  font-size: 0.78rem;
  letter-spacing: -0.015em;
  padding-left: 10px;
  padding-right: 10px;
  white-space: nowrap;
}

.seo-detail h1::after {
  height: 3px;
  margin-top: 12px;
  width: 82px;
}

.seo-detail p {
  font-size: 0.76rem;
  margin-bottom: 6px;
}

.seo-detail span {
  display: block;
  font-size: 0.98rem;
  line-height: 1.55;
  max-width: 58ch;
}

.seo-detail strong {
  font-size: clamp(1.35rem, 2.6vw, 1.7rem);
  margin: 18px 0 20px;
}

.seo-detail .seo-button {
  font-size: 0.95rem;
  padding: 9px 16px;
}

.seo-purchase-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.seo-button.seo-button-secondary {
  background: transparent;
  border-color: var(--green);
  color: var(--green);
}

.seo-tutor-card {
  align-items: center;
  background: rgba(255, 254, 254, 0.88);
  border: 1px solid var(--line);
  border-radius: 16px;
  display: grid;
  gap: 18px;
  grid-template-columns: 72px minmax(0, 1fr);
  margin: 0 0 24px;
  padding: 18px 20px;
}

.seo-tutor-photo {
  aspect-ratio: 1;
  border: 4px solid rgba(145, 223, 229, 0.32);
  border-radius: 50%;
  height: 72px;
  object-fit: cover;
  object-position: 58% 35%;
  width: 72px;
}

.seo-tutor-card span,
.seo-tutor-card strong {
  display: block;
}

.seo-tutor-card span {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.seo-tutor-card strong {
  color: var(--green);
  font-family: "Cinzel", Georgia, serif;
  font-size: 1.18rem;
}

.seo-tutor-card p {
  color: var(--muted);
  font-size: 0.88rem;
  margin: 3px 0 5px;
}

.seo-tutor-card a {
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 800;
}

@media (max-width: 520px) {
  .seo-tutor-card {
    align-items: start;
    grid-template-columns: 54px minmax(0, 1fr);
    padding: 15px;
  }

  .seo-tutor-photo {
    height: 54px;
    width: 54px;
  }
}

@media (max-width: 760px) {
  .seo-detail {
    gap: 18px;
    grid-template-columns: 1fr;
  }

  .seo-detail-image {
    aspect-ratio: 16 / 10;
    max-height: 280px;
  }
}

/* Cabeçalho compacto das páginas públicas no celular. */
@media (max-width: 760px) {
  .seo-sidebar {
    align-items: center;
    background: rgba(255, 255, 255, 0.97);
    border-bottom: 1px solid var(--line);
    display: grid;
    gap: 8px 10px;
    grid-template-columns: minmax(0, 1fr) auto;
    padding: 8px 12px 10px;
    position: sticky;
    top: 0;
    z-index: 100;
  }

  .seo-sidebar-brand {
    background: transparent;
    border: 0;
    border-radius: 0;
    gap: 8px;
    min-width: 0;
    padding: 0;
  }

  .seo-sidebar-brand img {
    border-radius: 9px;
    height: 40px;
    padding: 4px;
    width: 40px;
  }

  .seo-sidebar-brand strong {
    font-size: 0.86rem;
    white-space: nowrap;
  }

  .seo-sidebar-brand small {
    font-size: 0.62rem;
    white-space: nowrap;
  }

  .seo-sidebar-actions,
  .seo-sidebar-user {
    align-items: center;
    background: transparent;
    border: 0;
    display: flex;
    gap: 6px;
    grid-column: 2;
    grid-row: 1;
    margin: 0;
    padding: 0;
  }

  .seo-sidebar-actions a,
  .seo-sidebar-user a {
    border: 0;
    border-radius: 999px;
    font-size: 0.72rem;
    min-height: 34px;
    padding: 8px 13px;
    white-space: nowrap;
  }

  .seo-sidebar-actions a:not(.seo-sidebar-primary),
  .seo-sidebar-user > span,
  .seo-sidebar-user > strong {
    display: none;
  }

  .seo-sidebar-nav {
    border-top: 1px solid rgba(7, 93, 122, 0.08);
    display: flex;
    gap: 2px;
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: center;
    overflow-x: auto;
    padding-top: 7px;
    scrollbar-width: none;
  }

  .seo-sidebar-nav::-webkit-scrollbar {
    display: none;
  }

  .seo-sidebar-nav a {
    background: transparent;
    border: 0;
    border-radius: 999px;
    flex: 0 0 auto;
    font-size: 0.68rem;
    min-height: 32px;
    padding: 8px 10px;
    white-space: nowrap;
  }

  .seo-sidebar-nav a.active {
    background: var(--green) !important;
    color: #fff !important;
  }

  .seo-page {
    padding: 12px;
  }

  .seo-breadcrumbs {
    font-size: 0.68rem;
    margin-bottom: 10px;
  }

  .seo-hero {
    margin-bottom: 16px;
    padding: 22px 18px;
  }

  .seo-hero h1 {
    font-size: clamp(1.55rem, 8.5vw, 2rem);
  }
}

@media (max-width: 390px) {
  .seo-sidebar-nav {
    justify-content: flex-start;
  }

  .seo-sidebar-nav a {
    font-size: 0.64rem;
    padding-left: 8px;
    padding-right: 8px;
  }
}

/* Topo unificado das páginas públicas de cursos e e-books. */
.seo-sr-only {
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.seo-shell {
  display: block;
}

.seo-sidebar {
  align-items: center;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--line);
  border-right: 0;
  display: grid;
  gap: clamp(14px, 2vw, 28px);
  grid-template-columns: auto minmax(260px, 560px) auto auto;
  min-height: 0;
  padding: 12px clamp(20px, 3vw, 48px);
  position: sticky;
  top: 0;
  z-index: 100;
}

.seo-sidebar-brand {
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
}

.seo-sidebar-brand img {
  height: 52px;
  width: 52px;
}

.seo-sidebar-search {
  align-items: center;
  background: #f6f4ef;
  border: 1px solid rgba(7, 93, 122, 0.16);
  border-radius: 999px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 42px;
  min-height: 44px;
  overflow: hidden;
  width: 100%;
}

.seo-sidebar-search:focus-within {
  background: #fff;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(7, 93, 122, 0.09);
}

.seo-sidebar-search input {
  background: transparent;
  border: 0;
  color: var(--green-dark);
  min-width: 0;
  outline: 0;
  padding: 10px 4px 10px 18px;
  width: 100%;
}

.seo-sidebar-search button {
  background: var(--green);
  border: 0;
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  font-size: 1.45rem;
  height: 34px;
  line-height: 1;
  margin: 4px;
  width: 34px;
}

.seo-sidebar-nav {
  align-items: center;
  display: flex;
  gap: 8px;
  white-space: nowrap;
}

.seo-sidebar-nav a,
.seo-sidebar-actions a {
  background: transparent;
  border: 0;
  border-radius: 9px;
  font-size: 0.78rem;
  padding: 10px 5px;
  white-space: nowrap;
}

.seo-sidebar-nav a.active {
  background: rgba(7, 93, 122, 0.09) !important;
  color: var(--green) !important;
}

.seo-sidebar-actions,
.seo-sidebar-user {
  background: transparent;
  border: 0;
  display: flex;
  margin: 0;
  padding: 0;
}

.seo-sidebar-primary {
  background: transparent !important;
  color: var(--green) !important;
}

.seo-page {
  max-width: 1240px;
  padding-top: 22px;
}

@media (max-width: 1160px) and (min-width: 761px) {
  .seo-sidebar {
    grid-template-columns: auto minmax(250px, 1fr) auto;
  }

  .seo-sidebar-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: center;
  }
}

@media (max-width: 760px) {
  .seo-sidebar {
    gap: 8px 10px;
    grid-template-columns: minmax(0, 1fr) auto;
    padding: 8px 12px 10px;
  }

  .seo-sidebar-brand img {
    height: 40px;
    width: 40px;
  }

  .seo-sidebar-search {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .seo-sidebar-nav {
    border-top: 1px solid rgba(7, 93, 122, 0.08);
    grid-column: 1 / -1;
    grid-row: 3;
    justify-content: center;
    overflow-x: auto;
    padding-top: 7px;
  }

  .seo-sidebar-actions,
  .seo-sidebar-user {
    grid-column: 2;
    grid-row: 1;
  }

  .seo-sidebar-nav a,
  .seo-sidebar-actions a,
  .seo-sidebar-user a {
    font-size: 0.68rem;
    padding: 8px 9px;
  }
}

@media (max-width: 390px) {
  .seo-sidebar-nav {
    justify-content: flex-start;
  }
}

/* Escala editorial compacta para todas as páginas públicas. */
.seo-page {
  max-width: 1180px;
  padding: 18px 24px 40px;
}

.seo-breadcrumbs {
  font-size: 0.78rem;
  margin-bottom: 12px;
}

.seo-hero {
  margin-bottom: 16px;
  padding: 22px 28px;
}

.seo-hero p,
.seo-detail p {
  font-size: 0.72rem;
  letter-spacing: 0.055em;
  margin-bottom: 5px;
}

.seo-hero h1 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  letter-spacing: 0.02em;
  line-height: 1.08;
  margin-bottom: 8px;
}

.seo-hero h1::after,
.seo-detail h1::after {
  height: 3px;
  margin-top: 10px;
  width: 72px;
}

.seo-hero > span {
  font-size: 0.94rem;
  line-height: 1.5;
}

.seo-section {
  margin-bottom: 16px;
  padding: 20px 24px;
}

.seo-section h2 {
  font-size: clamp(1.22rem, 2vw, 1.65rem);
  letter-spacing: 0.018em;
  line-height: 1.25;
  margin-bottom: 14px;
}

.seo-section h2::after {
  height: 2px;
  margin-top: 9px;
  width: 62px;
}

.seo-intro p {
  font-size: 0.95rem;
  line-height: 1.65;
  margin: 0;
  max-width: 900px;
}

.seo-benefit-list {
  gap: 9px 14px;
  margin-top: 14px;
}

.seo-benefit-list li {
  font-size: 0.9rem;
  line-height: 1.45;
  margin: 0;
  padding: 11px 13px 11px 38px;
}

.seo-benefit-list li::before {
  left: 14px;
  top: 10px;
}

.seo-detail {
  gap: 24px;
  margin-bottom: 16px;
  padding: 20px;
}

.seo-detail h1 {
  font-size: clamp(1.45rem, 2.2vw, 1.9rem);
  line-height: 1.12;
}

.seo-detail-image {
  max-height: 380px;
}

.seo-tutor-card {
  margin-bottom: 16px;
  padding: 15px 18px;
}

@media (max-width: 760px) {
  .seo-page {
    padding: 10px 12px 28px;
  }

  .seo-breadcrumbs {
    font-size: 0.66rem;
    margin-bottom: 8px;
  }

  .seo-hero {
    border-radius: 14px;
    margin-bottom: 12px;
    padding: 16px;
  }

  .seo-hero h1 {
    font-size: clamp(1.42rem, 7.5vw, 1.85rem);
  }

  .seo-hero > span {
    font-size: 0.82rem;
  }

  .seo-section {
    border-radius: 14px;
    margin-bottom: 12px;
    padding: 16px;
  }

  .seo-section h2 {
    font-size: clamp(1.08rem, 5.5vw, 1.35rem);
  }

  .seo-benefit-list {
    gap: 8px;
  }

  .seo-detail {
    border-radius: 14px;
    gap: 16px;
    padding: 16px;
  }
}

/* Garantia final: usuário logado sem quebra no cabeçalho. */
.seo-sidebar-user {
  align-items: center;
  gap: 10px;
  min-width: 0;
  white-space: nowrap;
}

.seo-sidebar-user > span {
  display: none !important;
}

.seo-sidebar-user > strong {
  color: var(--green-dark);
  display: block;
  font-size: 0.82rem;
  line-height: 1.2;
  max-width: 145px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.seo-sidebar-user > a {
  align-items: center;
  display: inline-flex;
  flex: 0 0 auto;
  font-size: 0.78rem;
  justify-content: center;
  margin: 0;
  min-height: 36px;
  padding: 9px 12px;
  white-space: nowrap;
}

@media (max-width: 1160px) and (min-width: 761px) {
  .seo-sidebar-user > strong {
    max-width: 120px;
  }
}

@media (max-width: 760px) {
  .seo-sidebar-user > strong {
    display: none;
  }
}
