#site-menu.hm-panel {
  padding: 16px 0 20px;
}

.hm-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
  padding: 14px 16px;
  border-radius: 16px;
  background: linear-gradient(135deg, #0a6cd6 0%, #0b3d6e 100%);
  color: #fff;
  text-decoration: none;
}

.hm-cta:hover {
  filter: brightness(1.05);
}

.hm-cta strong {
  display: block;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.2;
}

.hm-cta em {
  display: block;
  margin-top: 3px;
  font-size: 12px;
  font-style: normal;
  color: rgba(255, 255, 255, 0.75);
}

.hm-cta-btn {
  flex-shrink: 0;
  border-radius: 999px;
  background: #f5a623;
  color: #fff;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 800;
}

.hm-label {
  margin: 0 0 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #64748b;
}

.hm-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

@media (max-width: 399px) {
  .hm-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .hm-cards {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 768px) {
  .hm-cards {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.hm-card {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  min-height: 72px;
  padding: 12px;
  border: 1px solid #dbe7f5;
  border-radius: 14px;
  background: #f4f8fc;
  color: inherit;
  text-decoration: none;
}

.hm-card:hover {
  border-color: #0a6cd6;
  background: #e8f2fb;
}

.hm-ico {
  display: flex;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: #0a6cd6;
  color: #fff;
}

.hm-ico svg {
  display: block;
}

.hm-card b {
  display: block;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.25;
  color: #0f172a;
}

.hm-card small {
  display: block;
  margin-top: 2px;
  font-size: 11px;
  line-height: 1.35;
  color: #64748b;
}

.hm-extra {
  margin-top: 16px;
}

.hm-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hm-pill {
  display: inline-flex;
  align-items: center;
  border: 1px solid #c5d8ee;
  border-radius: 999px;
  background: #fff;
  padding: 7px 12px;
  font-size: 13px;
  font-weight: 600;
  color: #0a6cd6;
  text-decoration: none;
}

.hm-pill:hover {
  border-color: #f5a623;
  background: #fff8eb;
  color: #e09210;
}

.hm-foot {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid #e5e7eb;
  font-size: 13px;
  color: #64748b;
}

.hm-foot a {
  font-weight: 600;
  color: #0a6cd6;
  text-decoration: none;
}

.hm-foot a:hover {
  text-decoration: underline;
}
