.recordings-shell {
  padding-bottom: 40px;
}

.recordings-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.recordings-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 20px;
}

.recordings-player {
  min-height: 320px;
}

.recording-video {
  width: 100%;
  max-height: 520px;
  background: #0f172a;
  border-radius: 8px;
}

.recordings-items {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-height: 520px;
  overflow: auto;
}

.recording-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 10px 12px;
  border: 1px solid #e0e6ed;
  border-radius: 8px;
  cursor: pointer;
  transition: border-color 120ms ease, background 120ms ease;
}

.recording-item:hover {
  border-color: #9fb3c8;
  background: #f4f7fb;
}

.recording-item.active {
  border-color: #2f6fd0;
  background: #eef5ff;
}

.recording-item strong {
  font-size: 14px;
  color: #1f2a37;
}

.recording-item small {
  color: #617080;
  font-size: 12px;
}

@media (max-width: 980px) {
  .recordings-grid {
    grid-template-columns: 1fr;
  }
}
