/* Nordic Homebase Build 010 — Nordic Energy module integration */
.energy-module-shell{
  display:grid;
  grid-template-rows:auto minmax(720px,1fr);
  gap:14px;
}
.energy-module-header{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:18px;
}
.energy-module-header h2{margin:4px 0 6px}
.energy-module-header p{margin:0;color:var(--muted)}
.energy-module-frame-wrap{
  padding:0;
  overflow:hidden;
  min-height:720px;
  border:1px solid var(--line);
}
.energy-module-frame{
  display:block;
  width:100%;
  height:calc(100vh - 180px);
  min-height:720px;
  border:0;
  background:#07111b;
}
@media(max-width:760px){
  .energy-module-header{flex-direction:column}
  .energy-module-frame{height:780px}
}
