.hub--pod {
  background:
    radial-gradient(900px 480px at 12% -8%, rgba(255, 176, 107, 0.1), transparent 55%),
    radial-gradient(700px 400px at 88% 5%, rgba(61, 255, 168, 0.06), transparent 50%),
    linear-gradient(180deg, #0e141d 0%, #0c1118 45%, #090d12 100%);
}

.pod-tag {
  margin-left: 4px;
  padding: 3px 8px;
  border-radius: 6px;
  border: 1px solid rgba(255, 176, 107, 0.35);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffb86b;
}

.pod-main {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 28px;
  max-width: 980px;
  width: 100%;
  margin: 0 auto;
  animation: hub-in 0.5s cubic-bezier(0.22, 1, 0.36, 1) both;
}

/* —— Banner —— */
.pod-banner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(255, 176, 107, 0.18);
}

.pod-banner__eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ffb86b;
  margin-bottom: 8px;
}

.pod-banner h1 {
  font-size: clamp(20px, 3.4vw, 26px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin-bottom: 10px;
  max-width: 34ch;
}

.pod-banner__desc {
  color: #8fa3b8;
  font-size: 14px;
  line-height: 1.55;
  max-width: 52ch;
}

.pod-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  flex-shrink: 0;
}

.pod-notice__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  background: rgba(61, 255, 168, 0.16);
  color: #3dffa8;
  border: 1px solid transparent;
  transition: background 0.15s ease;
}

.pod-notice__btn:hover {
  background: rgba(61, 255, 168, 0.28);
}

.pod-notice__btn--ghost {
  background: transparent;
  border-color: rgba(148, 174, 204, 0.2);
  color: #8fa3b8;
}

.pod-notice__btn--ghost:hover {
  color: #e8eef6;
  border-color: rgba(148, 174, 204, 0.4);
  background: transparent;
}

/* —— Preview shell —— */
.pod-preview {
  animation: pod-preview-in 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.12s both;
}

.pod-preview__chrome {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 176, 107, 0.22);
  border-bottom: none;
  border-radius: 14px 14px 0 0;
  background: rgba(14, 20, 28, 0.95);
}

.pod-preview__dots {
  display: flex;
  gap: 6px;
}

.pod-preview__dots span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(148, 174, 204, 0.28);
}

.pod-preview__dots span:nth-child(1) { background: #ff6b6b; }
.pod-preview__dots span:nth-child(2) { background: #ffb86b; }
.pod-preview__dots span:nth-child(3) { background: #3dffa8; }

.pod-preview__title {
  flex: 1;
  font-size: 12px;
  color: #5c7086;
  letter-spacing: 0.02em;
}

.pod-preview__badge {
  padding: 3px 9px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #ffb86b;
  border: 1px solid rgba(255, 176, 107, 0.35);
  background: rgba(255, 176, 107, 0.08);
  animation: pod-badge-pulse 2.8s ease-in-out infinite;
}

.pod-console {
  display: grid;
  grid-template-columns: 168px 1fr;
  min-height: 520px;
  border: 1px solid rgba(255, 176, 107, 0.22);
  border-radius: 0 0 14px 14px;
  background:
    linear-gradient(160deg, rgba(255, 176, 107, 0.04), transparent 40%),
    rgba(12, 17, 24, 0.92);
  overflow: hidden;
}

.pod-console__side {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 18px 12px;
  border-right: 1px solid rgba(148, 174, 204, 0.1);
  background: rgba(8, 12, 18, 0.55);
}

.pod-console__label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #5c7086;
  margin: 0 8px 10px;
}

.pod-nav {
  text-align: left;
  padding: 9px 10px;
  border: none;
  border-radius: 8px;
  background: transparent;
  color: #8fa3b8;
  font: inherit;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.12s, color 0.12s;
}

.pod-nav:hover:not(:disabled) {
  color: #e8eef6;
  background: rgba(148, 174, 204, 0.08);
}

.pod-nav:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.pod-nav.is-active {
  background: rgba(255, 176, 107, 0.12);
  color: #ffb86b;
}

.pod-console__side-foot {
  margin-top: auto;
  padding: 12px 8px 4px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 11px;
  color: #5c7086;
  line-height: 1.35;
}

.pod-console__body {
  padding: 22px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.pod-console__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.pod-console__head h2 {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}

.pod-console__head p {
  font-size: 13px;
  color: #8fa3b8;
}

.pod-console__status {
  flex-shrink: 0;
  padding: 5px 10px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
  color: #ffb86b;
  background: rgba(255, 176, 107, 0.1);
  border: 1px solid rgba(255, 176, 107, 0.22);
}

/* Create form */
.pod-create {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-bottom: 4px;
}

.pod-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.pod-field > span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #5c7086;
}

.pod-field input {
  width: 100%;
  max-width: 280px;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid rgba(148, 174, 204, 0.16);
  background: rgba(8, 12, 18, 0.7);
  color: #e8eef6;
  font: inherit;
  font-size: 14px;
}

.pod-seg {
  display: inline-flex;
  padding: 3px;
  border-radius: 9px;
  background: rgba(8, 12, 18, 0.7);
  border: 1px solid rgba(148, 174, 204, 0.14);
}

.pod-seg__opt {
  padding: 7px 14px;
  border: none;
  border-radius: 7px;
  font: inherit;
  font-size: 13px;
  font-weight: 550;
  color: #8fa3b8;
  background: transparent;
  cursor: pointer;
}

.pod-seg__opt.is-on {
  background: rgba(255, 176, 107, 0.16);
  color: #ffd4a3;
}

.pod-sliders {
  display: grid;
  gap: 14px;
}

.pod-slider {
  display: block;
  cursor: pointer;
}

.pod-slider__top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  font-size: 13px;
  color: #8fa3b8;
}

.pod-slider__top strong {
  color: #e8eef6;
  font-weight: 600;
}

.pod-slider__rate {
  display: block;
  margin-top: 6px;
  font-size: 11px;
  color: #5c7086;
}

.pod-range {
  --fill: 0%;
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 8px;
  border-radius: 99px;
  background:
    linear-gradient(90deg, #ffb86b, #3dffa8) 0 / var(--fill) 100% no-repeat,
    rgba(148, 174, 204, 0.12);
  outline: none;
  cursor: pointer;
}

.pod-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #e8eef6;
  border: 2px solid #ffb86b;
  box-shadow: 0 0 0 4px rgba(255, 176, 107, 0.15);
  cursor: grab;
}

.pod-range::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #e8eef6;
  border: 2px solid #ffb86b;
  box-shadow: 0 0 0 4px rgba(255, 176, 107, 0.15);
  cursor: grab;
}

.pod-range::-moz-range-track {
  height: 8px;
  border-radius: 99px;
  background: transparent;
}

.pod-create__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 4px;
}

.pod-price {
  display: flex;
  flex-direction: column;
  gap: 4px;
  max-width: 320px;
}

.pod-price span {
  font-size: 11px;
  color: #5c7086;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.pod-price strong {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #3dffa8;
  font-variant-numeric: tabular-nums;
}

.pod-price__hint {
  font-style: normal;
  font-size: 11px;
  color: #5c7086;
  line-height: 1.35;
}

.pod-price__disclaimer {
  margin-top: 4px;
  font-size: 12px;
  line-height: 1.4;
  color: #ffb86b;
}

.pod-create__btn {
  padding: 11px 20px;
  border: none;
  border-radius: 8px;
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  color: #0c1118;
  background: linear-gradient(135deg, #ffb86b, #3dffa8);
  opacity: 0.55;
  cursor: not-allowed;
}

/* Pod list samples */
.pod-list__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.pod-list__head h3 {
  font-size: 14px;
  font-weight: 650;
}

.pod-list__head span {
  font-size: 12px;
  color: #5c7086;
}

.pod-rows {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pod-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid rgba(148, 174, 204, 0.1);
  background: rgba(8, 12, 18, 0.45);
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
}

.pod-row:hover {
  border-color: rgba(255, 176, 107, 0.35);
  background: rgba(255, 176, 107, 0.06);
}

.pod-row__id {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.pod-row__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #5c7086;
  flex-shrink: 0;
}

.pod-row__dot--live {
  background: #3dffa8;
  box-shadow: 0 0 0 0 rgba(61, 255, 168, 0.5);
  animation: pod-live 2.2s ease-out infinite;
}

.pod-row__id strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 2px;
}

.pod-row__id span {
  font-size: 12px;
  color: #5c7086;
}

.pod-row__meta {
  font-size: 12px;
  color: #8fa3b8;
  font-variant-numeric: tabular-nums;
}

.pod-row__pill {
  font-size: 11px;
  font-weight: 650;
  padding: 4px 8px;
  border-radius: 6px;
  color: #3dffa8;
  background: rgba(61, 255, 168, 0.1);
}

.pod-row__pill--off {
  color: #8fa3b8;
  background: rgba(148, 174, 204, 0.1);
}

/* Panels */
.pod-panel {
  display: none;
  flex-direction: column;
  gap: 22px;
}

.pod-panel.is-active {
  display: flex;
}

/* IDE shell inside Pod */
.pod-ide {
  display: grid;
  grid-template-columns: 44px 200px 1fr;
  min-height: 340px;
  border-radius: 12px;
  border: 1px solid rgba(148, 174, 204, 0.14);
  background: #0a1017;
  overflow: hidden;
}

.pod-ide__activity {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 12px 0;
  border-right: 1px solid rgba(148, 174, 204, 0.1);
  background: rgba(8, 12, 18, 0.8);
}

.pod-ide__act {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: none;
  border-radius: 8px;
  background: transparent;
  color: #5c7086;
  cursor: pointer;
}

.pod-ide__act:hover {
  color: #e8eef6;
  background: rgba(148, 174, 204, 0.1);
}

.pod-ide__act.is-on {
  color: #ffb86b;
  background: rgba(255, 176, 107, 0.12);
}

.pod-ide__sidebar {
  display: flex;
  flex-direction: column;
  min-width: 0;
  border-right: 1px solid rgba(148, 174, 204, 0.1);
  background: rgba(17, 24, 33, 0.85);
}

.pod-ide__side-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 10px 8px;
}

.pod-ide__side-head h3 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #5c7086;
}

.pod-ide__tools {
  display: flex;
  gap: 2px;
}

.pod-ide__tool {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border: none;
  border-radius: 6px;
  background: transparent;
  color: #8fa3b8;
  font: inherit;
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
}

.pod-ide__tool:hover {
  background: rgba(148, 174, 204, 0.1);
  color: #e8eef6;
}

.pod-tree {
  flex: 1;
  overflow: auto;
  padding: 4px 6px 12px;
}

.pod-tree__folder,
.pod-tree__file {
  display: flex;
  align-items: center;
  gap: 7px;
  width: 100%;
  padding: 5px 8px;
  border: none;
  border-radius: 5px;
  background: transparent;
  text-align: left;
  color: #8fa3b8;
  font: inherit;
  font-size: 12.5px;
  cursor: pointer;
}

.pod-tree__folder:hover,
.pod-tree__file:hover {
  background: rgba(148, 174, 204, 0.08);
  color: #e8eef6;
}

.pod-tree__file.is-active {
  background: rgba(61, 255, 168, 0.1);
  color: #3dffa8;
}

.pod-tree__chev {
  font-size: 10px;
  opacity: 0.55;
  transition: transform 0.15s;
}

.pod-tree__group.is-open > .pod-tree__folder .pod-tree__chev {
  transform: rotate(90deg);
}

.pod-tree__group:not(.is-open) > .pod-tree__children {
  display: none;
}

.pod-tree__icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  opacity: 0.85;
}

.pod-tree__name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.pod-ide__main {
  display: flex;
  flex-direction: column;
  min-width: 0;
  background: #0c1118;
}

.pod-ide__tabs {
  display: flex;
  gap: 2px;
  min-height: 36px;
  padding: 4px 6px 0;
  border-bottom: 1px solid rgba(148, 174, 204, 0.1);
  overflow-x: auto;
  background: rgba(8, 12, 18, 0.6);
}

.pod-ide__tab {
  flex-shrink: 0;
  padding: 7px 12px;
  border: none;
  border-radius: 6px 6px 0 0;
  background: transparent;
  color: #8fa3b8;
  font: inherit;
  font-size: 12px;
  cursor: pointer;
}

.pod-ide__tab.is-active {
  background: rgba(61, 255, 168, 0.08);
  color: #e8eef6;
}

.pod-ide__editor {
  flex: 1;
  margin: 0;
  padding: 14px 16px;
  overflow: auto;
  font-family: ui-monospace, "Cascadia Code", "Consolas", monospace;
  font-size: 12.5px;
  line-height: 1.55;
  color: #c8d6e5;
  white-space: pre;
  min-height: 220px;
}

/* AI Agent */
.pod-agent {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 360px;
}

.pod-agent__chat {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-height: 280px;
  overflow: auto;
  padding: 14px;
  border-radius: 12px;
  border: 1px solid rgba(148, 174, 204, 0.12);
  background: rgba(8, 12, 18, 0.55);
}

.pod-agent__msg {
  display: flex;
  flex-direction: column;
  gap: 4px;
  max-width: 92%;
}

.pod-agent__msg--user {
  align-self: flex-end;
  text-align: right;
}

.pod-agent__msg--bot {
  align-self: flex-start;
}

.pod-agent__who {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #5c7086;
}

.pod-agent__msg--user .pod-agent__who {
  color: #6ec8ff;
}

.pod-agent__msg--bot .pod-agent__who {
  color: #3dffa8;
}

.pod-agent__msg p {
  margin: 0;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 13px;
  line-height: 1.5;
  color: #e8eef6;
}

.pod-agent__msg--user p {
  background: rgba(110, 200, 255, 0.12);
  border: 1px solid rgba(110, 200, 255, 0.2);
}

.pod-agent__msg--bot p {
  background: rgba(61, 255, 168, 0.08);
  border: 1px solid rgba(61, 255, 168, 0.16);
}

.pod-agent__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pod-agent__chips button {
  padding: 7px 11px;
  border-radius: 999px;
  border: 1px solid rgba(148, 174, 204, 0.18);
  background: rgba(8, 12, 18, 0.5);
  color: #8fa3b8;
  font: inherit;
  font-size: 12px;
  cursor: pointer;
  transition: border-color 0.15s, color 0.15s, background 0.15s;
}

.pod-agent__chips button:hover {
  color: #e8eef6;
  border-color: rgba(61, 255, 168, 0.35);
  background: rgba(61, 255, 168, 0.08);
}

.pod-agent__form {
  display: flex;
  gap: 8px;
}

.pod-agent__form input {
  flex: 1;
  min-width: 0;
  padding: 11px 14px;
  border-radius: 10px;
  border: 1px solid rgba(148, 174, 204, 0.18);
  background: rgba(8, 12, 18, 0.7);
  color: #e8eef6;
  font: inherit;
  font-size: 14px;
}

.pod-agent__form input:focus {
  outline: none;
  border-color: rgba(61, 255, 168, 0.45);
}

.pod-agent__form button {
  flex-shrink: 0;
  padding: 11px 18px;
  border: none;
  border-radius: 10px;
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  color: #0c1118;
  background: linear-gradient(135deg, #6ec8ff, #3dffa8);
  cursor: pointer;
}

.pod-agent__form button:hover {
  filter: brightness(1.06);
}

.pod-agent__log-wrap {
  padding-top: 4px;
}

.pod-agent__log-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #5c7086;
  margin-bottom: 8px;
}

.pod-agent__log {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-height: 120px;
  overflow: auto;
  margin: 0;
  padding: 0;
}

.pod-agent__log li {
  display: flex;
  gap: 10px;
  align-items: baseline;
  padding: 7px 10px;
  border-radius: 8px;
  background: rgba(8, 12, 18, 0.45);
  border: 1px solid rgba(148, 174, 204, 0.08);
  font-size: 12px;
  color: #8fa3b8;
}

.pod-agent__log code {
  flex-shrink: 0;
  font-family: ui-monospace, Consolas, monospace;
  font-size: 11px;
  color: #ffb86b;
}

/* Asset manager */
.pod-assets-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.pod-assets-upload {
  padding: 8px 14px;
  border-radius: 8px;
  border: 1px solid rgba(148, 174, 204, 0.2);
  background: transparent;
  color: #8fa3b8;
  font: inherit;
  font-size: 13px;
  font-weight: 600;
  opacity: 0.55;
  cursor: not-allowed;
}

.pod-assets-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 10px;
}

.pod-asset {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 10px;
  border-radius: 10px;
  border: 1px solid rgba(148, 174, 204, 0.12);
  background: rgba(8, 12, 18, 0.55);
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
}

.pod-asset:hover,
.pod-asset.is-active {
  border-color: rgba(255, 176, 107, 0.4);
  background: rgba(255, 176, 107, 0.06);
}

.pod-asset__thumb {
  display: grid;
  place-items: center;
  height: 72px;
  border-radius: 8px;
  background:
    linear-gradient(145deg, color-mix(in srgb, var(--tone) 28%, transparent), transparent),
    rgba(17, 24, 33, 0.9);
  color: var(--tone);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.pod-asset__name {
  font-size: 12px;
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.pod-asset__size {
  font-size: 11px;
  color: #5c7086;
}

.pod-asset-detail {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid rgba(148, 174, 204, 0.12);
  background: rgba(8, 12, 18, 0.45);
}

.pod-asset-detail strong {
  font-size: 13px;
}

.pod-asset-detail span {
  font-size: 12px;
  color: #8fa3b8;
}

.pod-preview__note {
  margin-top: 12px;
  font-size: 12px;
  color: #5c7086;
  text-align: center;
}

@keyframes pod-preview-in {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes pod-badge-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.65; }
}

@keyframes pod-live {
  0% { box-shadow: 0 0 0 0 rgba(61, 255, 168, 0.45); }
  70% { box-shadow: 0 0 0 8px rgba(61, 255, 168, 0); }
  100% { box-shadow: 0 0 0 0 rgba(61, 255, 168, 0); }
}

@media (max-width: 900px) {
  .pod-ide {
    grid-template-columns: 40px 160px 1fr;
  }
}

@media (max-width: 760px) {
  .pod-console {
    grid-template-columns: 1fr;
  }

  .pod-console__side {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    border-right: none;
    border-bottom: 1px solid rgba(148, 174, 204, 0.1);
    gap: 6px;
  }

  .pod-console__label {
    width: 100%;
    margin: 0 0 4px;
  }

  .pod-console__side-foot {
    display: none;
  }

  .pod-row {
    grid-template-columns: 1fr auto;
  }

  .pod-row__meta {
    display: none;
  }

  .pod-ide {
    grid-template-columns: 1fr;
    min-height: 420px;
  }

  .pod-ide__activity {
    flex-direction: row;
    border-right: none;
    border-bottom: 1px solid rgba(148, 174, 204, 0.1);
    padding: 8px;
  }

  .pod-ide__sidebar {
    border-right: none;
    border-bottom: 1px solid rgba(148, 174, 204, 0.1);
    max-height: 160px;
  }
}

@media (max-width: 560px) {
  .pod-banner__actions {
    width: 100%;
  }

  .pod-notice__btn {
    flex: 1;
  }

  .pod-console__body {
    padding: 18px 16px 20px;
  }
}
