* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: #faf9f8;
  color: #1d3c3f;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input { font: inherit; }
 
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px;
}
 
 
.cms-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #ffffff;
  box-shadow: 0 1px 0 rgba(0,0,0,.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 265px;
}
 
.cms-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 16px;
}
 
.cms-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.cms-brand__logo img {
  height: 32px;
  width: auto;
}
 
.cms-header__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
 
.cms-icon-btn {
  border: 0;
  background: transparent;
  padding: 8px;
  color: #1d3c3f;
  cursor: pointer;
}
.cms-icon-btn:hover { color: #49b2bc; }
 
.cms-icon-btn .icon {
  width: 20px;
  height: 20px;
}
 
.subscribe-btn {
  display: none;
  align-items: center;
  padding: 8px 16px;
  border-radius: 999px;
  color: #49b2bc;
  font-weight: 500;
  font-size: 14px;
}
.subscribe-btn:hover {
  background: #49b2bc;
  color: #ffffff;
}
 
.signin-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 0;
  background: transparent;
  color: #1d3c3f;
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  padding: 8px;
}
.signin-btn:hover { color: #49b2bc; }
 
.signin-text { display: none; }
 
 
 
.cms-sidebar {
  background: #ffffff;
}
 
.cms-navigation {
  padding: 10px 0;
}
 
.cms-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  align-items: center;
}
 
.cms-menu > li {
  position: relative;
}
 
.cms-menu > li > a {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  background: transparent;
  color: #1d3c3f;
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
}
 
.cms-menu > li > a:hover {
  color: #49b2bc;
}
 
.cms-menu > li > a.active {
  color: #49b2bc;
  font-weight: 600;
}
 
.cms-menu > li > ul {
  display: none;
  position: absolute;
  left: 0;
  top: 100%;
  width: 224px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(0,0,0,.12);
  padding: 8px 0;
  z-index: 60;
}
 
.cms-menu > li:hover > ul {
  display: block;
}
 
.cms-menu > li > ul a {
  display: block;
  padding: 10px 16px;
  font-size: 14px;
  color: #1d3c3f;
}
 
.cms-menu > li > ul a:hover {
  background: #faf9f8;
  color: #49b2bc;
}
 
.cms-menu ul ul {
  position: static;
  border: 0;
  box-shadow: none;
  padding: 0;
}
 
.cms-menu ul ul a {
  padding-left: 28px;
}
 
 
@media (min-width: 768px) {
  .subscribe-btn { display: inline-flex; }
  .signin-text { display: inline; }
}
 
@media (min-width: 1024px) {
  .cms-sidebar {
    border-bottom: none;
    box-shadow: 0 1px 0 rgba(0,0,0,.06);
  }
}
 
@media (max-width: 1024px) {
  .cms-header {
    padding: 5px 16px;
  }
}