/* Доп. стили (бургер-меню, мелкие правки) */
.header-cta{display:flex;align-items:center;gap:10px;}
.burger{
  display:none;
  width:40px;height:40px;
  border:1px solid rgba(255,255,255,.08);
  border-radius:12px;
  background:transparent;
  cursor:pointer;
  align-items:center;
  justify-content:center;
  gap:4px;
}
.burger span{
  display:block;
  width:18px;height:2px;
  background:rgba(255,255,255,.75);
  border-radius:2px;
}

@media (max-width: 720px){
  .burger{display:inline-flex;}
}

.content :where(p,ul,ol){max-width: 820px;}
.content a{text-decoration:underline;}


