.cr-registry-wrap {
  --cr-blue: #1f67a9;
  --cr-border: #d7d7d7;
  --cr-muted: #6a6a6a;
  background: #f4f4f4;
  border: 1px solid #e4e4e4;
  padding: 16px;
  font-family: inherit;
  color: #202020;
}

.cr-filter-row {
  display: grid;
  grid-template-columns: minmax(260px, 1.3fr) minmax(260px, 1.2fr) 150px;
  gap: 10px;
  margin: 0 0 16px;
}

.cr-filter-field {
  border: 1px solid #cfcfcf;
  background: #fff;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cr-filter-field span {
  font-size: 14px;
  font-weight: 700;
  color: #363636;
  line-height: 1.2;
}

.cr-filter-input {
  width: 100%;
  border: 1px solid #d2d2d2;
  background: #fff;
  font-size: 14px;
  color: #3f3f3f;
  padding: 8px 10px;
  border-radius: 2px;
}

.cr-search-btn {
  border: 0;
  background: var(--cr-blue);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.3px;
  cursor: pointer;
  min-height: 38px;
  padding: 8px 10px;
  line-height: 1.2;
  border-radius: 2px;
}

.cr-search-btn:hover,
.cr-search-btn:focus {
  background: #18578f;
}

.cr-filter-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: stretch;
  /*justify-content: center;*/
}

.cr-reset-btn {
  min-height: 38px;
  padding: 8px 10px;
  border: 1px solid #c8c8c8;
  background: #fff;
  color: #404040;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  border-radius: 2px;
  line-height: 1.2;
}

.cr-reset-btn:hover {
  border-color: #9e9e9e;
  color: #2a2a2a;
}

.cr-announcement-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cr-announcement-card {
  border: 2px solid var(--cr-border);
  background: #f9f9f9;
  padding: 16px;
}

.cr-announcement-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}

.cr-title {
  margin: 0;
  width: 100%;
  max-width: calc(100% - 230px);
  overflow: hidden;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.3;
}

.cr-title a {
  color: #111;
  text-decoration: none;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cr-title-prefix {
  text-decoration: underline;
  font-weight: 800;
}

.cr-status-wrap {
  min-width: 210px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}

.cr-status-badge {
  background: #ededed;
  color: #212121;
  font-size: 15px;
  font-weight: 600;
  padding: 8px 12px;
}

.cr-status-sub {
  color: #8a8a8a;
  font-style: italic;
  font-size: 13px;
}

.cr-meta-row {
  margin-top: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.cr-org {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--cr-blue);
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
}

.cr-org-icon {
  color: var(--cr-blue);
  flex-shrink: 0;
  width: 23px;
  height: 23px;
}

.cr-published {
  color: var(--cr-muted);
  font-size: 16px;
  text-align: right;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.cr-clock {
  color: #9a9a9a;
}

.cr-bottom-row {
  margin-top: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.cr-value {
  color: #505050;
  font-size: 14px;
}

.cr-source-link {
  color: var(--cr-blue);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.cr-source-link:hover {
  text-decoration: underline;
}

.cr-empty-state {
  margin: 0;
  background: #fff;
  border: 1px dashed #d0d0d0;
  padding: 12px;
  color: #555;
  font-size: 14px;
}

.cr-pagination {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
  align-items: center;
}

.cr-page-summary {
  font-size: 13px;
  color: #5f5f5f;
  margin-right: 10px;
}

.cr-page-num {
  display: inline-flex;
  min-width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border: 1px solid #d0d0d0;
  background: #fff;
  color: #2c2c2c;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
}

.cr-page-num:hover {
  border-color: var(--cr-blue);
  color: var(--cr-blue);
}

.cr-page-num.is-active {
  background: var(--cr-blue);
  color: #fff;
  border-color: var(--cr-blue);
}

@media (max-width: 980px) {
  .cr-registry-wrap {
    padding: 12px;
  }

  .cr-filter-row {
    grid-template-columns: 1fr;
  }

  .cr-filter-actions {
    flex-direction: row;
  }

  .cr-search-btn {
    min-height: 40px;
    font-size: 13px;
    padding: 8px 10px;
    flex: 1;
  }

  .cr-reset-btn {
    min-height: 40px;
    padding: 8px 10px;
    flex: 1;
  }

  .cr-announcement-card {
    padding: 12px;
  }

  .cr-announcement-top {
    flex-direction: column;
  }

  .cr-title {
    max-width: 100%;
    font-size: 17px;
  }

  .cr-status-wrap {
    min-width: 0;
    align-items: flex-start;
  }

  .cr-meta-row,
  .cr-bottom-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .cr-published {
    text-align: left;
    font-size: 15px;
  }
}
