/* SWLARC v2.01 - Radio Operations Center */
#radioOperationsCenterPanel {
  display: grid;
  gap: 12px;
  margin: 0 0 18px;
  color: #21384c;
}

#radioOperationsCenterPanel * { box-sizing: border-box; }

#radioOperationsCenterPanel .ro-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 17px 18px;
  background: #f7f9fb;
  border: 1px solid #d8e0e8;
  border-left: 4px solid #1b587f;
}

#radioOperationsCenterPanel .ro-eyebrow {
  display: block;
  margin-bottom: 4px;
  color: #1b587f;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

#radioOperationsCenterPanel h2,
#radioOperationsCenterPanel h3,
#radioOperationsCenterPanel p { margin: 0; }

#radioOperationsCenterPanel h2 {
  color: #102a43;
  font-size: 20px;
  line-height: 1.15;
}

#radioOperationsCenterPanel .ro-hero p {
  margin-top: 5px;
  color: #66788a;
  font-size: 13px;
}

#radioOperationsCenterPanel .ro-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

#radioOperationsCenterPanel button { font: inherit; }

#radioOperationsCenterPanel .ro-primary,
#radioOperationsCenterPanel .ro-secondary,
#radioOperationsCenterPanel .ro-core-link,
#radioOperationsCenterPanel .ro-tool-link {
  border-radius: 2px;
  cursor: pointer;
}

#radioOperationsCenterPanel .ro-primary,
#radioOperationsCenterPanel .ro-secondary {
  min-height: 36px;
  padding: 0 14px;
  font-size: 12px;
  font-weight: 800;
}

#radioOperationsCenterPanel .ro-primary {
  color: #fff;
  background: #1b587f;
  border: 1px solid #1b587f;
}

#radioOperationsCenterPanel .ro-secondary {
  color: #1b587f;
  background: #fff;
  border: 1px solid #afbfcc;
}

#radioOperationsCenterPanel .ro-primary:hover,
#radioOperationsCenterPanel .ro-secondary:hover,
#radioOperationsCenterPanel .ro-core-link:hover,
#radioOperationsCenterPanel .ro-tool-link:hover { filter: brightness(.97); }

#radioOperationsCenterPanel .ro-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

#radioOperationsCenterPanel .ro-metric {
  min-width: 0;
  padding: 14px 16px;
  background: #fff;
  border: 1px solid #d8e0e8;
}

#radioOperationsCenterPanel .ro-metric span {
  display: block;
  color: #6b7f90;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}

#radioOperationsCenterPanel .ro-metric strong {
  display: block;
  margin-top: 6px;
  color: #102a43;
  font-size: 24px;
  line-height: 1;
}

#radioOperationsCenterPanel .ro-metric small {
  display: block;
  margin-top: 7px;
  overflow: hidden;
  color: #7b8c9b;
  font-size: 10px;
  line-height: 1.3;
  text-overflow: ellipsis;
}

#radioOperationsCenterPanel .ro-core-workspace,
#radioOperationsCenterPanel .ro-tools-workspace {
  padding: 16px;
  background: #fff;
  border: 1px solid #d8e0e8;
}

#radioOperationsCenterPanel .ro-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

#radioOperationsCenterPanel .ro-section-head h3 {
  color: #102a43;
  font-size: 15px;
}

#radioOperationsCenterPanel .ro-section-head span {
  display: block;
  margin-top: 3px;
  color: #7a8b9b;
  font-size: 11px;
}

#radioOperationsCenterPanel .ro-core-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

#radioOperationsCenterPanel .ro-tool-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

#radioOperationsCenterPanel .ro-core-link,
#radioOperationsCenterPanel .ro-tool-link {
  min-width: 0;
  padding: 11px 12px;
  text-align: left;
  color: #16324c;
  background: #f7f9fb;
  border: 1px solid #d8e0e8;
}

#radioOperationsCenterPanel .ro-core-link { min-height: 66px; }
#radioOperationsCenterPanel .ro-tool-link { min-height: 58px; }

#radioOperationsCenterPanel .ro-core-link.active {
  color: #0d3659;
  background: #edf5fb;
  border-color: #7fa8c7;
  box-shadow: inset 4px 0 0 #1b587f;
}

#radioOperationsCenterPanel .ro-core-link b,
#radioOperationsCenterPanel .ro-tool-link b {
  display: block;
  font-size: 12px;
  line-height: 1.2;
}

#radioOperationsCenterPanel .ro-core-link span,
#radioOperationsCenterPanel .ro-tool-link span {
  display: block;
  margin-top: 4px;
  color: #718394;
  font-size: 10px;
  line-height: 1.3;
}

#radioOperationsCenterPanel .ro-current-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 0 2px;
}

#radioOperationsCenterPanel .ro-current-label h3 {
  color: #102a43;
  font-size: 15px;
}

#radioOperationsCenterPanel .ro-current-label span {
  color: #718394;
  font-size: 11px;
  text-align: right;
}

@media (max-width: 1000px) {
  #radioOperationsCenterPanel .ro-metrics,
  #radioOperationsCenterPanel .ro-tool-links { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 760px) {
  #radioOperationsCenterPanel .ro-core-links { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  #radioOperationsCenterPanel .ro-hero,
  #radioOperationsCenterPanel .ro-section-head,
  #radioOperationsCenterPanel .ro-current-label { align-items: flex-start; flex-direction: column; }
  #radioOperationsCenterPanel .ro-actions { width: 100%; justify-content: flex-start; }
  #radioOperationsCenterPanel .ro-metrics,
  #radioOperationsCenterPanel .ro-tool-links { grid-template-columns: 1fr; }
  #radioOperationsCenterPanel .ro-current-label span { text-align: left; }
}
